/* ═══════════════════════════════════════════════════════════════
   TUSP Free Class — style.css (v5.1 — Final Permanent Fix)
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --navy:        #00132D;
    --navy-mid:    #0d1c32;
    --navy-soft:   #162840;
    --navy-light:  #1e3354;
    --gold:        #fdc425;
    --gold-dark:   #8a6500;
    --gold-bg:     rgba(253,196,37,0.1);
    --gold-border: rgba(253,196,37,0.3);
    --surface:     #f9f9ff;
    --surface-low: #f0f3ff;
    --white:       #ffffff;
    --text:        #111c2d;
    --text-muted:  #44474d;
    --outline:     #d0d4dd;
    --green:       #15803d;
    --green-bg:    #f0fdf4;
    --green-border:#bbf7d0;
    --red:         #b91c1c;
    --red-bg:      #fff1f2;
    --red-border:  #fecaca;

    --font-head: 'Sora', sans-serif;
    --font-body: 'Noto Sans', sans-serif;

    --sp-xs:  4px;  --sp-sm:  12px;
    --sp-md:  24px; --sp-lg:  56px;
    --sp-xl:  96px;
    --gutter: 24px; --max-w: 1120px;

    --r-sm: 6px;  --r-md: 12px;
    --r-lg: 18px; --r-xl: 28px; --r-full: 9999px;

    --shadow-sm:   0 1px 4px rgba(0,19,45,.06), 0 2px 8px rgba(0,19,45,.04);
    --shadow-md:   0 4px 16px rgba(0,19,45,.1),  0 1px 4px rgba(0,19,45,.06);
    --shadow-lg:   0 12px 40px rgba(0,19,45,.18), 0 4px 12px rgba(0,19,45,.08);
    --shadow-gold: 0 4px 24px rgba(253,196,37,.3);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    margin-top: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ── Buttons ─────────────────────────────────────────────────*/
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700;
    font-size: 1rem; line-height: 1;
    padding: 15px 30px; border-radius: var(--r-md);
    border: 2px solid transparent; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space: nowrap; text-align: center;
}
.btn-primary {
    background: var(--navy); color: #fff; border-color: var(--navy);
}
.btn-primary:hover {
    background: #0a2040; transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-secondary:hover {
    background: #f5b800; transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}
.btn-ghost {
    background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-ghost:hover { background: var(--surface-low); transform: translateY(-2px); }

/* ── Labels & Headlines ─────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-head); font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold-dark); background: var(--gold-bg);
    padding: 4px 12px; border-radius: var(--r-full);
    margin-bottom: 16px;
}
.section-headline {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700; line-height: 1.25;
    color: var(--text); margin-bottom: var(--sp-md);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(1.5); }
}
@keyframes fadeDown {
    from { opacity:0; transform:translateY(-14px); }
    to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeUp {
    from { opacity:0; transform:translateY(20px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════════ */
.announce-bar {
    position: relative;
    background: var(--navy); color: #fff;
    padding: 12px var(--gutter);
    border-bottom: 1px solid rgba(253,196,37,.2);
}
.announce-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.announce-text {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: .875rem; font-weight: 600;
    letter-spacing: .01em;
}
.announce-pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
    flex-shrink: 0; animation: pulse 1.6s ease-in-out infinite;
}
.announce-limited {
    color: var(--gold); font-weight: 800;
    animation: pulse 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
    background: var(--navy);
    padding: var(--sp-xl) 0;
    margin-top: 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold-bg); border: 1px solid var(--gold-border);
    color: var(--gold); font-family: var(--font-head);
    font-size: .75rem; font-weight: 700; letter-spacing: .08em;
    padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 20px;
    animation: fadeDown .6s ease both;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: #ef4444;
    animation: pulse 1.6s ease infinite;
}

.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    font-weight: 800; line-height: 1.18; letter-spacing: -.02em;
    color: #fff; margin-bottom: 20px;
    animation: fadeDown .6s .1s ease both;
}
.hero-highlight { color: var(--gold); display: block; }

.hero-sub {
    font-size: clamp(.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,.75);
    margin-bottom: 20px; line-height: 1.6;
    animation: fadeDown .6s .2s ease both;
}

.urgency-strip {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    font-size: .85rem; color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    animation: fadeDown .6s .25s ease both;
}
.us-dot { color: var(--gold); opacity: .7; }

/* Hero CTA */
.btn-hero {
    font-size: 1.1rem !important;
    padding: 18px 40px !important;
    box-shadow: 0 4px 20px rgba(0,19,45,.4);
    animation: fadeDown .6s .3s ease both;
}
.btn-hero:hover {
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(253,196,37,.15) !important;
}

.hero-microtrust {
    font-size: .8rem; color: rgba(255,255,255,.45);
    margin-top: 10px;
    animation: fadeDown .6s .35s ease both;
}
.hero-social-proof {
    font-size: .85rem; color: rgba(255,255,255,.55);
    margin-top: 6px; font-style: italic;
    animation: fadeDown .6s .38s ease both;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

/* Hero timer */
.countdown-wrap {
    margin-top: 28px;
    animation: fadeDown .6s .42s ease both;
}
.timer-box {
    display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(253,196,37,.25); border-radius: var(--r-lg);
    padding: 14px 24px; text-align: center;
}
.timer-label {
    font-size: .8rem; color: rgba(255,255,255,.6);
    font-family: var(--font-body);
}
.timer-digits {
    font-family: var(--font-head);
    font-size: 1.8rem; font-weight: 800; letter-spacing: .06em;
    color: var(--gold); line-height: 1;
}

/* Hero image */
.hero-visual {
    position: relative; z-index: 1;
    animation: fadeDown .6s .15s ease both;
}
.hero-img-wrap { position: relative; }
.hero-photo-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.55);
    aspect-ratio: 4/5;
    max-width: 460px;
}
.hero-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    filter: brightness(.93) saturate(.9);
    transition: transform .4s ease;
}
.hero-photo-frame:hover .hero-photo { transform: scale(1.03); }
.hero-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,19,45,.06) 0%, rgba(0,19,45,0) 40%, rgba(0,19,45,.38) 100%);
    pointer-events: none;
}
.hero-img-badge {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
    background: rgba(13,28,50,.9); backdrop-filter: blur(8px);
    border: 1px solid rgba(253,196,37,.35); border-radius: var(--r-full);
    padding: 6px 14px; font-size: .8rem; color: #fff;
    max-width: calc(100% - 24px);
    overflow: hidden; text-overflow: ellipsis;
}


/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════════════════════════ */
.proof-section { padding: var(--sp-xl) 0; background: var(--navy); margin-top: 0; }
.proof-header { text-align: center; margin-bottom: var(--sp-lg); }
.proof-number {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; color: var(--gold); line-height: 1;
}
.proof-sub { color: rgba(255,255,255,.6); font-size: 1rem; margin-top: 6px; }

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.proof-card {
    background: var(--navy-soft);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: transform .2s ease, box-shadow .2s ease;
}
.proof-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proof-card--video { border-color: var(--gold-border); }

.proof-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.2rem; font-weight: 700;
    color: #fff; margin-bottom: 14px;
}
.proof-avatar--1 { background: linear-gradient(135deg, #c68642, #8a5a2a); }
.proof-avatar--2 { background: linear-gradient(135deg, #a06030, #6a3010); }
.proof-avatar--3 { background: linear-gradient(135deg, #8a5030, #5a3020); }
.proof-avatar--4 { background: linear-gradient(135deg, #c07040, #804020); }

.proof-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: .05em; }
.proof-quote {
    font-size: .975rem; color: rgba(255,255,255,.88);
    line-height: 1.65; margin-bottom: 14px; font-style: italic;
}
.proof-name {
    font-family: var(--font-head); font-size: .82rem; font-weight: 700;
    color: rgba(255,255,255,.55);
}
.proof-name span { font-weight: 400; }

/* Video CTA */
.proof-play-wrap {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 16px; cursor: pointer;
    background: rgba(253,196,37,.12);
    border: 1px solid rgba(253,196,37,.3);
    border-radius: var(--r-full);
    padding: 8px 14px;
    max-width: 100%;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.proof-play-wrap:hover {
    background: rgba(253,196,37,.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(253,196,37,.15);
}
.proof-play-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gold); color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .15s;
}
.proof-play-wrap:hover .proof-play-btn { transform: scale(1.08); }
.proof-play-label {
    font-family: var(--font-head); font-size: .82rem; font-weight: 700;
    color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════
   PAIN AMPLIFICATION
═══════════════════════════════════════════════════════════════ */
.pain-section { padding: var(--sp-xl) 0; background: var(--surface); text-align: center; }

.pain-headline {
    font-size: clamp(1.55rem, 3.2vw, 2.2rem) !important;
    font-weight: 800 !important;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px; margin-bottom: 48px;
}
.pain-card {
    background: var(--white);
    border: 1px solid var(--outline);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
    text-align: left;
}
.pain-card:hover { transform: scale(1.03) translateY(-3px); box-shadow: var(--shadow-lg); }
.pain-img-wrap {
    width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative;
}
.pain-img-wrap img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    display: block;
    filter: brightness(.82) saturate(.85);
    transition: filter .3s ease;
}
.pain-card:hover .pain-img-wrap img { filter: brightness(.74) saturate(.8); }
.pain-card-body {
    padding: 18px 20px 20px;
    display: flex; align-items: flex-start; gap: 10px;
}
.pain-emoji { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pain-card-body p {
    font-size: .95rem; color: var(--text);
    font-style: italic; line-height: 1.5; font-weight: 500;
}

.pain-truth {
    background: var(--navy); border-radius: var(--r-xl);
    padding: 48px var(--sp-md); margin-bottom: 48px;
}
.pain-truth p:first-child {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255,255,255,.75); line-height: 1.5;
}
.pain-key-line {
    display: flex; justify-content: center; margin-top: 16px;
}
.pain-key-text {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 1.1em;
    font-weight: 700;
    color: #FFC107;
    padding: 2px 0;
}


/* ═══════════════════════════════════════════════════════════════
   MECHANISM
═══════════════════════════════════════════════════════════════ */
.mechanism-section { padding: var(--sp-xl) 0; background: var(--surface-low); }
.mech-why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px; margin-bottom: 48px;
}
.mech-why-card {
    background: var(--white); border: 1px solid var(--outline);
    border-radius: var(--r-lg); padding: 24px;
    box-shadow: var(--shadow-sm); text-align: center;
    transition: transform .2s, box-shadow .2s;
}
.mech-why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mech-why-icon { font-size: 2rem; margin-bottom: 12px; }
.mech-why-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.55; }

.mech-solution {
    background: var(--navy); border-radius: var(--r-xl);
    padding: 48px; border: 1px solid var(--gold-border);
    max-width: 860px; margin: 0 auto;
}
.mech-system-stmt {
    font-family: var(--font-head);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 700; color: rgba(255,255,255,.82);
    text-align: center; margin-bottom: 28px;
    padding: 16px 24px;
    background: rgba(255,255,255,.04);
    border-radius: var(--r-lg);
    border: 1px solid rgba(253,196,37,.15);
}
.mech-system-stmt span { color: var(--gold); font-weight: 800; }
.mech-solution-label {
    display: inline-block; background: var(--gold); color: var(--navy);
    font-family: var(--font-head); font-size: .75rem; font-weight: 800;
    letter-spacing: .08em; padding: 4px 12px; border-radius: var(--r-full);
    margin-bottom: 12px;
}
.mech-solution h3 {
    font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
    color: #fff; margin-bottom: 28px;
}
.mech-steps { display: flex; flex-direction: column; gap: 20px; }
.mech-step {
    display: flex; align-items: flex-start; gap: 20px;
    background: rgba(255,255,255,.05); border-radius: var(--r-lg);
    padding: 20px;
    transition: background .2s;
}
.mech-step:hover { background: rgba(255,255,255,.08); }
.mech-step-num {
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
    color: var(--gold); min-width: 40px; line-height: 1;
}
.mech-step strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 4px; }
.mech-step p { font-size: .88rem; color: rgba(255,255,255,.6); }


/* ═══════════════════════════════════════════════════════════════
   TRANSFORMATION
═══════════════════════════════════════════════════════════════ */
.transform-section { padding: var(--sp-xl) 0 calc(var(--sp-xl) + 16px); background: var(--surface); text-align: center; }
.transform-grid {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: 20px; align-items: center; margin-bottom: 40px;
}
.transform-card { border-radius: var(--r-lg); padding: 24px; text-align: left; }
.transform-before { background: var(--red-bg); border: 2px solid var(--red-border); }
.transform-after  { background: var(--green-bg); border: 2px solid var(--green-border); }
.transform-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.transform-icon { font-size: 1.5rem; }
.transform-header h3 {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text);
}
.transform-list li {
    font-size: .9rem; color: var(--text-muted);
    padding: 8px 0 8px 22px; position: relative;
    border-bottom: 1px solid rgba(0,0,0,.06); line-height: 1.45;
}
.transform-list li:last-child { border-bottom: none; }
.transform-before .transform-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.transform-after  .transform-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.transform-arrow { font-size: 2rem; color: var(--gold-dark); font-weight: 800; padding: 0 4px; }

/* Confidence photo */
.transform-photo-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    max-height: 440px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0;
}
.transform-photo {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    filter: brightness(1.04) saturate(1.05);
}
.transform-photo-overlay-text { display: none; }
.transform-photo-badge { display: none; }
.transform-cta { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════════════════════
   WHAT YOU'LL GET
═══════════════════════════════════════════════════════════════ */
.get-section { padding: var(--sp-xl) 0; background: var(--surface-low); text-align: center; }
.get-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px; text-align: left; margin-bottom: 48px;
}
.get-card {
    background: var(--white); border: 1px solid var(--outline);
    border-radius: var(--r-lg); padding: 24px;
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.get-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.get-card--highlight {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff 60%, rgba(253,196,37,.06));
}
.get-icon { font-size: 2rem; margin-bottom: 12px; }
.get-card h3 {
    font-family: var(--font-head); font-size: .95rem; font-weight: 700;
    color: var(--text); margin-bottom: 8px; line-height: 1.4;
}
.get-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }


/* ═══════════════════════════════════════════════════════════════
   LIVE CLASS SECTION
═══════════════════════════════════════════════════════════════ */
.class-section { padding: var(--sp-xl) 0; background: var(--navy); }
.class-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.class-text .section-label { color: var(--gold); background: rgba(253,196,37,.12); }
.class-text .section-headline { color: #fff; }
.class-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.class-point {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(255,255,255,.05); border-radius: var(--r-lg);
    padding: 18px;
    transition: background .2s;
}
.class-point:hover { background: rgba(255,255,255,.08); }
.cp-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.class-point strong { display: block; color: #fff; font-size: .93rem; margin-bottom: 4px; }
.class-point p { font-size: .875rem; color: rgba(255,255,255,.6); }

/* Mockup image */
.class-visual {}
.class-img-label {
    font-family: var(--font-head); font-size: .8rem; font-weight: 700;
    color: rgba(255,255,255,.65); text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 14px; text-align: center;
}
.class-mockup-frame {
    border-radius: var(--r-xl); overflow: hidden;
    box-shadow: 0 20px 56px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.08);
}
.class-mockup-img {
    width: 100%; display: block;
    object-fit: cover; object-position: center top;
    aspect-ratio: 4/3;
}


/* ═══════════════════════════════════════════════════════════════
   IS THIS FOR YOU
═══════════════════════════════════════════════════════════════ */
.fit-section { padding: var(--sp-xl) 0; background: var(--surface); text-align: center; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.fit-card { border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.fit-card--yes { background: var(--green-bg); border: 2px solid var(--green-border); }
.fit-card--no  { background: var(--red-bg);   border: 2px solid var(--red-border); }
.fit-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.fit-icon { font-size: 1.4rem; }
.fit-card-header h3 {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text);
}
.fit-list li {
    font-size: .9rem; color: var(--text-muted);
    padding: 8px 0 8px 22px; border-bottom: 1px solid rgba(0,0,0,.06);
    position: relative; line-height: 1.45;
}
.fit-list li:last-child { border-bottom: none; }
.fit-card--yes .fit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.fit-card--no  .fit-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red);   font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════
   SCARCITY STRIP
═══════════════════════════════════════════════════════════════ */
.scarcity-strip { background: var(--gold); padding: 22px var(--gutter); }
.scarcity-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 24px; flex-wrap: wrap;
}
.scarcity-item { display: flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--navy); font-weight: 500; }
.scarcity-div { width: 1px; height: 20px; background: rgba(0,19,45,.2); }
.scarcity-strip .btn {
    background: var(--navy); color: #fff; border-color: var(--navy); padding: 12px 24px;
}
.scarcity-strip .btn:hover { background: #0a2040; }

/* Timer above form */
.timer-strip { background: var(--navy); padding: 20px var(--gutter); }
.timer-box--strip {
    display: flex; flex-direction: row; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    background: rgba(253,196,37,.06);
    border: 1px solid rgba(253,196,37,.3);
    border-radius: var(--r-lg);
    max-width: 560px; margin: 0 auto;
    padding: 14px 24px;
}
.timer-box--strip .timer-label { font-size: .875rem; color: rgba(255,255,255,.72); }
.timer-box--strip .timer-digits { font-size: 1.5rem; color: var(--gold); font-family: var(--font-head); font-weight: 800; }


/* ═══════════════════════════════════════════════════════════════
   AUTHORITY SECTION
═══════════════════════════════════════════════════════════════ */
.authority-section { padding: var(--sp-xl) 0; background: var(--surface-low); }
.authority-card {
    display: flex; align-items: flex-start; gap: 40px;
    background: var(--white); border-radius: var(--r-xl);
    padding: 40px; box-shadow: var(--shadow-md);
    border: 1px solid var(--outline); max-width: 760px; margin: 0 auto;
}
.authority-photo { flex-shrink: 0; }
.authority-avatar {
    width: 88px; height: 88px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 2rem; font-weight: 800;
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,19,45,.2);
}
.authority-content .section-label { margin-bottom: 10px; }
.authority-name {
    font-family: var(--font-head); font-size: 1.35rem; font-weight: 800;
    color: var(--text); margin-bottom: 6px;
}
.authority-tagline {
    font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic;
}
.authority-bullets { display: flex; flex-direction: column; gap: 12px; }
.ab-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: var(--text);
}
.ab-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }


/* ═══════════════════════════════════════════════════════════════
   FORM SECTION
═══════════════════════════════════════════════════════════════ */
.form-section { padding: var(--sp-xl) 0; background: var(--navy-mid); }
.form-intro { text-align: center; margin-bottom: 48px; }
.form-intro-emotional {
    font-family: var(--font-head); font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600; color: rgba(255,255,255,.6);
    margin-bottom: 14px; font-style: italic;
}
.form-intro-headline {
    font-family: var(--font-head);
    font-size: clamp(1.3rem, 2.8vw, 1.75rem);
    font-weight: 700; color: #fff; margin-bottom: 20px;
}
.form-benefits {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 20px;
    font-size: .9rem; color: rgba(255,255,255,.72);
}

.form-wrap {
    background: var(--white); border-radius: var(--r-xl);
    padding: 44px 40px;
    max-width: 520px; margin: 0 auto;
    box-shadow: 0 24px 72px rgba(0,0,0,.3);
}
.form-header { text-align: center; margin-bottom: 28px; }
.form-badge {
    display: inline-block; background: var(--gold-bg); color: var(--gold-dark);
    font-family: var(--font-head); font-size: .75rem; font-weight: 800;
    letter-spacing: .1em; padding: 5px 14px; border-radius: var(--r-full);
    margin-bottom: 12px;
}
.form-headline {
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
    color: var(--text); margin-bottom: 6px;
}
.form-sub { font-size: .9rem; color: var(--text-muted); }

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-family: var(--font-head); font-size: .875rem;
    font-weight: 600; color: var(--text); margin-bottom: 8px;
}
.req { color: var(--red); }
.form-group input {
    width: 100%; padding: 13px 16px;
    border: 2px solid var(--outline); border-radius: var(--r-md);
    font-family: var(--font-body); font-size: 1rem; color: var(--text);
    background: #fff; outline: none;
    transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none;
}
.form-group input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,19,45,.1);
}
.form-group input.invalid { border-color: var(--red); }
.phone-wrap { display: flex; align-items: stretch; }
.phone-prefix {
    display: flex; align-items: center; padding: 0 14px;
    background: var(--surface-low); border: 2px solid var(--outline);
    border-right: none; border-radius: var(--r-md) 0 0 var(--r-md);
    font-size: .9rem; font-weight: 600; color: var(--text-muted); white-space: nowrap;
}
.phone-wrap input { border-radius: 0 var(--r-md) var(--r-md) 0; }
.field-error { display: block; font-size: .8rem; color: var(--red); margin-top: 5px; min-height: 16px; }

.btn-submit {
    width: 100%; justify-content: center;
    font-size: 1.05rem; padding: 16px 20px; margin-top: 8px;
}
.form-disclaimer {
    text-align: center; font-size: .82rem; color: var(--text-muted); margin-top: 12px;
}
.form-error-msg {
    background: #fff0f0; border: 1px solid var(--red); border-radius: var(--r-md);
    padding: 10px 14px; font-size: .9rem; color: var(--red); margin-bottom: 20px;
}
.risk-reversal {
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 8px;
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid var(--outline);
    font-size: .82rem; color: var(--text-muted);
}

/* Success state */
.success-state { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3.5rem; margin-bottom: 20px; animation: pop .5s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pop { from{transform:scale(.4);opacity:0} to{transform:scale(1);opacity:1} }
.success-state h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.success-msg { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; }
.success-detail {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--surface-low); border-radius: var(--r-lg);
    padding: 20px; margin-bottom: 20px; text-align: left;
}
.success-wa-icon { font-size: 1.5rem; flex-shrink: 0; }
.success-detail p { font-size: .95rem; color: var(--text); }
.success-batch { margin-bottom: 20px; }
.success-batch-inner {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--gold-bg); border: 1px solid var(--gold-border);
    border-radius: var(--r-lg); padding: 20px; text-align: left;
}
.success-batch-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.success-batch-title { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: 4px; }
.success-batch-sub { font-size: .85rem; color: var(--text-muted); margin-bottom: 12px; }
.success-blog { border-top: 1px solid var(--outline); padding-top: 20px; }
.success-blog p { font-size: .9rem; color: var(--text-muted); margin-bottom: 12px; }


/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-section { padding: var(--sp-xl) 0; background: var(--surface-low); }
.faq-list { max-width: 700px; margin: 0 auto 48px; }

.faq-item {
    border: 1px solid var(--outline); border-radius: var(--r-lg);
    margin-bottom: 10px; background: var(--white); overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--navy); }

.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 18px 20px; cursor: pointer;
    font-family: var(--font-head); font-size: .95rem; font-weight: 600;
    color: var(--text); list-style: none;
    transition: background .15s; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }
.faq-q:hover { background: var(--surface-low); }

/* Chevron — hide HTML entity, show CSS pseudo-element only */
.faq-chevron { display: none; }
.faq-q { position: relative; }
.faq-q::after {
    content: '';
    display: inline-flex; flex-shrink: 0;
    width: 26px; height: 26px; min-width: 26px;
    border-radius: 50%;
    background-color: rgba(253,196,37,.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fdc425' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px 15px;
    transition: transform .3s ease, background-color .2s ease;
    margin-left: auto;
}
.faq-item[open] .faq-q::after { transform: rotate(180deg); background-color: rgba(253,196,37,.22); }
.faq-q:hover::after { background-color: rgba(253,196,37,.2); }

.faq-a {
    padding: 0 20px 18px; padding-top: 14px;
    font-size: .9rem; color: var(--text-muted); line-height: 1.65;
    border-top: 1px solid var(--outline);
}

.faq-contact { text-align: center; font-size: .9rem; color: var(--text-muted); }
.faq-contact a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }


/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy-mid); color: rgba(255,255,255,.5); padding: var(--sp-lg) 0; text-align: center; }
.footer-brand { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 6px; }
.footer-contact { font-size: .85rem; margin-bottom: 6px; }
.footer-contact a { color: var(--gold); }
.footer-legal { font-size: .75rem; margin-bottom: 4px; }
.footer-copy { font-size: .75rem; }


/* ═══════════════════════════════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    opacity: 0; transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    max-width: calc(100vw - 48px);
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(0,19,45,.4);
    font-size: .95rem; padding: 14px 26px;
}


/* ═══════════════════════════════════════════════════════════════
   GENERAL CLEANUP & RESPONSIVE
═══════════════════════════════════════════════════════════════ */
section {
    margin-bottom: 60px !important;
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    section { margin-bottom: 40px !important; }
}
.container { max-width: 1140px; margin: 0 auto; }
img { max-width: 100%; height: auto; }

/* RESPONSIVE — TABLET */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .hero-visual { order: -1; }
    .hero-photo-frame { max-width: 380px; margin: 0 auto; aspect-ratio: 3/2; }
    .urgency-strip { justify-content: center; }
    .pain-truth { text-align: center; }
    .pain-key-line { justify-content: center; }
    .hero-microtrust, .hero-social-proof { text-align: center; }
    .btn-hero { display: flex; margin: 0 auto; width: fit-content; }
    .countdown-wrap { display: flex; flex-direction: column; align-items: center; }
    .timer-box { width: 100%; max-width: 340px; }
    .class-grid { grid-template-columns: 1fr; gap: 40px; }
    .class-mockup-frame { max-width: 520px; margin: 0 auto; }
    .transform-grid { grid-template-columns: 1fr; gap: 16px; }
    .transform-arrow { display: none; }
    .fit-grid { grid-template-columns: 1fr; }
    .sticky-cta { bottom: 20px; right: 20px; }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 600px) {
    :root { --sp-xl: 60px; --gutter: 18px; }
    .hero { padding-top: var(--sp-xl); padding-bottom: 52px; }
    .section-headline { font-size: 1.3rem; }
    .hero-headline    { font-size: 1.5rem; }
    .announce-text    { font-size: .8rem; }
    .hero-photo-frame { aspect-ratio: 4/3; max-width: 100%; }
    .btn-hero {
        font-size: 1rem !important; padding: 16px 24px !important;
        width: 100% !important; justify-content: center; margin: 0 auto;
    }
    .hero-img-badge { font-size: .72rem; padding: 5px 12px; gap: 4px; }
    .pain-grid { grid-template-columns: 1fr; }
    .pain-img-wrap { aspect-ratio: 16/9; }
    .pain-truth { padding: 28px 20px; border-radius: var(--r-lg); }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-card { padding: 20px; }
    .mech-solution { padding: 24px 18px; border-radius: var(--r-lg); }
    .mech-why-grid { grid-template-columns: 1fr; }
    .transform-photo-wrap { max-height: 280px; border-radius: var(--r-lg); }
    .transform-cta .btn { width: 100%; justify-content: center; }
    .get-grid { grid-template-columns: 1fr; }
    .class-grid { gap: 24px; }
    .class-mockup-img { aspect-ratio: 16/10; }
    .class-mockup-frame { border-radius: var(--r-lg); max-height: 260px; overflow: hidden; }
    .scarcity-inner { flex-direction: column; gap: 12px; align-items: stretch; }
    .scarcity-div { display: none; }
    .scarcity-strip .btn { width: 100%; justify-content: center; }
    .timer-box--strip { flex-direction: column; gap: 8px; padding: 14px 18px; }
    .timer-box--strip .timer-digits { font-size: 1.35rem; }
    .timer-strip { padding: 16px var(--gutter); }
    .form-wrap { padding: 24px 18px; border-radius: var(--r-lg); }
    .form-headline { font-size: 1.25rem; }
    .form-group input { font-size: 16px; }
    .risk-reversal { flex-direction: column; align-items: center; gap: 6px; }
    .form-benefits { gap: 8px 12px; font-size: .85rem; }
    .sticky-cta { bottom: 14px; right: 14px; left: 14px; max-width: none; }
    .sticky-cta .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 14px 20px; }
    .faq-q { font-size: .88rem; padding: 14px 16px; }
    .faq-a  { font-size: .88rem; }
}

@media (max-width: 375px) {
    :root { --gutter: 14px; }
    .hero-headline    { font-size: 1.3rem; }
    .section-headline { font-size: 1.15rem; }
    .mech-system-stmt { font-size: .95rem; }
    .timer-digits     { font-size: 1.35rem; }
    .form-wrap        { padding: 20px 14px; }
    .hero-img-badge   { font-size: .68rem; padding: 4px 10px; }
    .btn-hero { font-size: .9rem !important; padding: 14px 18px !important; }
    .scarcity-inner { padding: 0 4px; }
}


/* ═══════════════════════════════════════════════════════════════
   CRITICAL FIXES (PLACED AT END TO OVERRIDE ALL OTHER RULES)
   - Gap between Hero and Proof Section removed
   - "Watch her story" button hidden
═══════════════════════════════════════════════════════════════ */

/* 1. Remove spacing below Hero */
.hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* 2. Remove spacing above Proof Section */
.proof-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 3. Hide "Watch her story" button */
.proof-play-wrap {
    display: none !important;
}