/* ═══════════════════════════════════════════════════
   Burnoutportaal.nl — Mobile-First Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
    --cream: #F5F0E8;
    --warm-white: #FDFBF7;
    --white: #FFFFFF;
    --charcoal: #1C1C1E;
    --mid: #4A4A52;
    --muted: #8A8A94;
    --light: #C0BAB0;
    --accent: #C8794A;
    --accent-light: #E8C4A8;
    --accent-dark: #9E5A30;
    --green: #4A7C6A;
    --green-light: #E8F5EE;
    --red: #B84A3A;
    --red-light: #FCE8E5;
    --border: #E0D8CC;
    --bg: #F9F6F1;
    --shadow-sm: 0 1px 3px rgba(28,28,30,0.06);
    --shadow: 0 4px 16px rgba(28,28,30,0.08);
    --shadow-lg: 0 12px 48px rgba(28,28,30,0.12);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-full: 999px;
    --transition: 0.2s ease;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── NAVIGATION ──────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253,251,247,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
    max-width: 1380px;
    padding: 0 32px;
}

.nav__menu-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: none;
    border: 1.5px solid var(--border);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}
.nav__menu-trigger:hover {
    border-color: var(--accent);
    background: rgba(200,121,74,0.04);
}
.nav__menu-trigger svg { color: var(--charcoal); }

.nav__slideout {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
}
.nav__slideout.open { right: 0; }
.nav__slideout-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav__slideout-overlay.open {
    display: block;
    opacity: 1;
}
.nav__slideout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.nav__slideout-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}
.nav__slideout-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--mid);
}
.nav__slideout-body {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}
.nav__slideout-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--mid);
    border-radius: 10px;
    transition: all var(--transition);
    text-decoration: none;
}
.nav__slideout-link:hover {
    background: var(--cream);
    color: var(--charcoal);
}
.nav__slideout-link--accent {
    color: var(--accent);
    font-weight: 600;
}
.nav__slideout-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.nav__logo {
    font-family: var(--font);
    font-weight: 700;
    font-size: 18px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    white-space: nowrap;
}

.nav__logo-icon {
    color: var(--accent);
    font-size: 10px;
}

.nav__logo-nl {
    color: var(--accent);
}

.nav__center {
    display: none;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav__actions {
    display: none;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    transition: color var(--transition);
}

.nav__link:hover {
    color: var(--charcoal);
}

.nav__btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    transition: all var(--transition);
}

.nav__btn:hover {
    background: var(--accent);
    color: var(--white);
}

.nav__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--charcoal);
    margin-left: auto;
}

.nav__mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}

.nav__mobile.active {
    display: flex;
}

.nav__mobile-link {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--mid);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav__mobile-link:hover {
    background: var(--cream);
    color: var(--charcoal);
}

.nav__mobile-link--btn {
    color: var(--accent);
    font-weight: 600;
}

/* ─── HERO SECTION ────────────────────────────────── */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,121,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero__title em {
    font-style: italic;
    color: var(--accent);
}

.hero__subtitle {
    font-size: 17px;
    color: var(--mid);
    font-weight: 400;
    line-height: 1.65;
    max-width: 520px;
    margin: 0 auto 32px;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}

.hero__cta:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero__cta svg {
    transition: transform var(--transition);
}

.hero__cta:hover svg {
    transform: translateX(3px);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
}

.hero__stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
}

/* ─── BURNOUT TEST ────────────────────────────────── */
.test-section {
    padding: 60px 0;
}

.section__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: center;
}

.section__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 12px;
}

.section__subtitle {
    font-size: 16px;
    color: var(--mid);
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.test-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.test__progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.test__progress-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.test__progress-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.test__progress-bar {
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 32px;
    overflow: hidden;
}

.test__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 3px;
    transition: width 0.4s ease;
}

.test__question-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.test__question-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.test__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.test__option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 15px;
    color: var(--mid);
    font-family: var(--font);
    font-weight: 400;
    transition: all 0.15s ease;
    text-align: left;
    width: 100%;
}

.test__option:hover {
    border-color: var(--accent-light);
    color: var(--charcoal);
    transform: translateX(2px);
}

.test__option.selected {
    border-color: var(--accent);
    background: rgba(200,121,74,0.04);
    color: var(--charcoal);
}

.test__option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.test__option.selected .test__option-radio {
    border-color: var(--accent);
    background: var(--accent);
}

.test__option.selected .test__option-radio::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
}

.test__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.test__nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 14px;
    font-family: var(--font);
    cursor: pointer;
    padding: 8px 0;
    transition: color var(--transition);
}

.test__nav-back:hover { color: var(--charcoal); }

.test__nav-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}

.test__nav-next:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.test__nav-next:disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
    transform: none;
}

/* ─── TEST INTRO / LEAD FORM ─────────────────────── */
.test__intro {
    text-align: center;
    padding: 20px 0;
}

.test__intro-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200,121,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.test__lead-form {
    max-width: 400px;
    margin: 0 auto;
}

.form__group {
    margin-bottom: 16px;
}

.form__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--charcoal);
    font-family: var(--font);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input::placeholder { color: var(--light); }
.form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,121,74,0.1);
}

.form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 16px;
}

/* ─── RESULTS ─────────────────────────────────────── */
.results {
    padding: 60px 0;
}

.result-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}

.result-card__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-card__label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.risk-banner {
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.risk-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.risk-banner--low { background: linear-gradient(135deg, #2D6A56, #4A7C6A); color: var(--white); }
.risk-banner--medium { background: linear-gradient(135deg, #B8721A, #D4873A); color: var(--white); }
.risk-banner--high { background: linear-gradient(135deg, #8B2A1E, #B84A3A); color: var(--white); }

.risk-banner__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.risk-banner__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.risk-banner__subtitle {
    font-size: 15px;
    opacity: 0.8;
    font-weight: 300;
}

.risk-banner__score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 5px 15px;
    font-size: 13px;
    margin-top: 14px;
}

/* ─── COACH CARDS ─────────────────────────────────── */
.coaches-section {
    padding: 60px 0;
}

.coach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.coach-card {
    background: var(--warm-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.coach-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.coach-card__photo-wrap {
    position: relative;
    overflow: hidden;
}

.coach-card__photo {
    width: 100%;
    aspect-ratio: 3 / 3.2;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.coach-card__badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.coach-card__badge-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.coach-card__badge-role {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 1px;
}

.coach-card__badge-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #fff;
    margin-top: 4px;
}

.coach-card__badge-rating span {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

.coach-card__video-wrap {
    position: relative;
    overflow: hidden;
}

.coach-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0,0,0,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.coach-card__play:hover {
    background: rgba(0,0,0,0.65);
    transform: translate(-50%, -50%) scale(1.1);
}

.coach-card__play svg {
    margin-left: 4px;
}

.coach-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.coach-card__name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 2px;
}

.coach-card__role {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}

.coach-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 12px;
}

.coach-card__rating span {
    color: var(--muted);
    font-weight: 300;
}


.coach-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.coach-card__tag {
    font-size: 11px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--mid);
    border-radius: var(--radius-full);
    padding: 3px 10px;
}

.coach-card__bio {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 10px;
    flex: 1;
}

.coach-card__meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--muted);
}

.coach-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.coach-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.btn-outline {
    flex: 1;
    padding: 11px 8px;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    color: var(--mid);
    transition: all var(--transition);
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--accent-light);
    color: var(--charcoal);
}

.btn-primary {
    flex: 1;
    padding: 11px 8px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

/* ─── SOCIAL PROOF ────────────────────────────────── */
.social-proof {
    padding: 60px 0;
    background: var(--warm-white);
}

.social-proof__counter {
    text-align: center;
    margin-bottom: 40px;
}

.social-proof__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.social-proof__label {
    font-size: 15px;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-card__stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 12px;
}

.review-card__text {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 14px;
    font-style: italic;
}

.review-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.review-card__role {
    font-size: 12px;
    color: var(--muted);
}

/* ─── HOE HET WERKT ──────────────────────────────── */
.how-it-works {
    padding: 60px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-card__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200,121,74,0.08);
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
    font-weight: 400;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq {
    padding: 60px 0;
    background: var(--warm-white);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    font-family: var(--font);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq__question:hover {
    color: var(--accent);
}

.faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
    background: rgba(200,121,74,0.1);
    color: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer-inner {
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    font-weight: 400;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer__logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer__title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 14px;
}

.footer__link {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 4px 0;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
    color: rgba(255,255,255,0.4);
}

/* ─── UTILITY CLASSES ─────────────────────────────── */
.hidden { display: none !important; }
.text-center { text-align: center; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--transition);
}

.btn:hover {
    background: var(--accent-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn--wide { width: 100%; justify-content: center; }
.btn--accent { background: var(--accent); }
.btn--accent:hover { background: var(--accent-dark); color: #ffffff !important; }

/* ─── TOAST ───────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ─── LOADING / SPINNER ───────────────────────────── */
.loading {
    text-align: center;
    padding: 80px 0;
}

.spinner {
    width: 44px;
    height: 44px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── CONFIRM ─────────────────────────────────────── */
.confirm {
    text-align: center;
    padding: 60px 0;
}

.confirm__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-light);
    border: 1px solid rgba(74,124,106,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirm__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.confirm__text {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
}

.confirm__box {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    max-width: 420px;
    margin: 0 auto 20px;
}

.confirm__box-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.confirm__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.confirm__row:last-child { border: none; }
.confirm__row-key { color: var(--muted); }
.confirm__row-val { color: var(--charcoal); font-weight: 600; }

/* ─── DIMENSIONS GRID ─────────────────────────────── */
.dim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.dim-item {
    background: var(--cream);
    border-radius: 10px;
    padding: 14px;
}

.dim-item__name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.dim-item__bar {
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.dim-item__fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.dim-item__pct {
    font-size: 12px;
    color: var(--muted);
}

/* ─── TEST BADGES ─────────────────────────────────── */
.test__intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.test__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
}

.test__badge svg {
    color: var(--green);
}

/* ─── GAUGE ───────────────────────────────────────── */
.gauge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
}

.gauge__svg {
    width: 200px;
    height: 120px;
}

.gauge__score {
    font-size: 2.4rem;
    font-weight: 800;
    margin-top: -10px;
}

.gauge__label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

/* ─── FOOTER COMPANY INFO ─────────────────────────── */
.footer__company {
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
}

.footer__company strong {
    color: var(--mid);
    font-weight: 600;
}

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal {
    padding: 100px 0 60px;
}

.legal__header {
    margin-bottom: 40px;
}

.legal__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.legal__updated {
    font-size: 13px;
    color: var(--muted);
}

.legal__content {
    max-width: 780px;
}

.legal__content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 32px 0 12px;
}

.legal__content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 24px 0 8px;
}

.legal__content p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal__content ul, .legal__content ol {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 24px;
}

.legal__content li {
    margin-bottom: 6px;
}

.legal__content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.legal__content table th,
.legal__content table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--border);
    color: var(--mid);
}

.legal__content table th {
    background: var(--cream);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (≥600px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 600px) {
    .hero__title { font-size: 2.8rem; }
    .section__title { font-size: 2.2rem; }

    .coach-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .dim-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥900px)
   ═══════════════════════════════════════════════════ */
@media (min-width: 900px) {
    .nav__center { display: flex; }
    .nav__actions { display: flex; }
    .nav__hamburger { display: none; }
    .nav__mobile { display: none !important; }
    .nav__menu-trigger { display: flex; }

    .hero { padding: 140px 0 80px; }
    .hero__title { font-size: 3.4rem; }
    .hero__subtitle { font-size: 18px; }

    .test-section, .coaches-section, .how-it-works, .results { padding: 80px 0; }
    .social-proof, .faq { padding: 80px 0; }

    .coach-grid { grid-template-columns: repeat(2, 1fr); }

    .reviews-grid { grid-template-columns: repeat(3, 1fr); }

    .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

    .container { padding: 0 40px; }
}
