@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Custom properties ── */
:root {
    --bg:          #F7F3EC;
    --bg-alt:      #F0EBE1;
    --card:        #FFFFFF;
    --card-alt:    #E8F4F8;
    --text:        #2C2C2C;
    --heading:     #1A1A2E;
    --muted:       #6B6B6B;
    --teal:        #2E86AB;
    --teal-dark:   #256F8A;
    --green:       #2E7D32;
    --red:         #C62828;
    --gold:        #F59E0B;
    --radius-card: 20px;
    --shadow-card: 6px 6px 9px rgba(0, 0, 0, 0.12);
    --max-wide:    1100px;
    --max-text:    720px;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg);
    text-align: left;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    color: var(--heading);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 700; }

p { margin-bottom: 1rem; letter-spacing: 0.02em; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ── */
.container {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--max-text);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 72px 0;
}

.section--alt { background: var(--bg-alt); }
.section--white { background: var(--card); }
.section--teal-light { background: #E8F4F8; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    padding: 14px 32px;
    border-radius: 9999px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    min-height: 48px;
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(46, 134, 171, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

.btn--large {
    font-size: 19px;
    padding: 18px 40px;
}

.btn--demo {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    font-weight: 800;
}

.btn--demo:hover,
.btn--demo:focus-visible {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
    color: #fff;
}

.btn--centre { display: block; width: fit-content; margin: 0 auto; }

/* ── 3. DEMO SECTION ── */
#demo-section {
    padding: 6rem 0;
    text-align: center;
    background: #f0f7ff;
    border-bottom: 1px solid #e5e7eb;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.demo-btn-big {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #fff;
    padding: 24px 48px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 1.5rem;
}

.demo-btn-big:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.5);
    color: #fff;
}

/* ── 1. STICKY NAV ── */
#lp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--card);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#lp-nav .nav-inner {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0.85rem 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}

#lp-nav .nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

#lp-nav .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

#lp-nav .nav-links a {
    text-decoration: none;
    color: var(--heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

#lp-nav .nav-links a:hover,
#lp-nav .nav-links a:focus-visible {
    background: var(--bg-alt);
    color: var(--teal);
    outline: none;
}

#lp-nav .nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

#lp-nav .nav-ctas .btn {
    padding: 9px 20px;
    font-size: 0.9rem;
    min-height: 40px;
}

#lp-nav .nav-toggle {
    display: none;
    width: 40px;
    height: 38px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    flex-shrink: 0;
}

#lp-nav .nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#lp-nav .nav-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ── 2. HERO ── */
#hero {
    background: linear-gradient(160deg, #1A2E3D 0%, #1E4A6A 40%, #2E86AB 100%);
    padding: max(4vh, 40px) 0;
    text-align: center;
    position: relative;
    min-height: calc(100svh - 65px); /* Ensure it fills the screen at least */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

#hero .container { 
    position: relative; 
    z-index: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    flex: 1;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    margin-bottom: max(1vh, 8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

#hero h1 {
    color: #fff;
    max-width: 760px;
    margin: 0 0 max(1.5vh, 12px) 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-size: clamp(2rem, 4vw + 1vh, 3.5rem);
    line-height: 1.15;
}

#hero .hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 630px;
    margin: 0 0 max(2vh, 16px) 0;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-launch-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* ── 10B. GUARANTEE SECTION ── */
#guarantee-section {
    padding: 6rem 0;
    background: #fff;
}

.guarantee-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.guarantee-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
}

.guarantee-signature {
    font-weight: 700;
    color: var(--teal);
}

.hero-video-wrap {
    width: 100%;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 9;
    background: #0d1f2d;
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    transition: transform 0.3s ease;
}

.hero-video-wrap--portrait {
    aspect-ratio: 9 / 16;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video-wrap:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(0);
}



.hero-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
}

.hero-video-placeholder .play-icon {
    font-size: 3rem;
    opacity: 0.5;
}

#hero .hero-social-proof {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ── 2B. AGE GUIDE BAND ── */
#age-guide-section {
    background: var(--bg-alt);
    padding: 80px 0;
}

.age-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-wide);
    margin: 0 auto;
}

.age-detail-card {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
}

.age-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.age-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--heading);
}

.age-label {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 9999px;
    white-space: nowrap;
}

.age-label--solo {
    background: var(--green);
}

.age-detail-card p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* ── 3. TESTIMONIALS MARQUEE ── */
#marquee-section {
    background: var(--card);
    padding: 48px 0;
    overflow: hidden;
}

#marquee-section h2 {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2rem;
}

.marquee-outer {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.marquee-card {
    background: var(--bg);
    border: 1px solid #e8e0d5;
    border-radius: 14px;
    padding: 20px 24px;
    width: 300px;
    flex-shrink: 0;
}

.marquee-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
    line-height: 1;
}

.marquee-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.marquee-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

/* ── 4. PAIN POINTS ── */
#pain {
    background: var(--bg);
    padding: 72px 0;
}

#pain .section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

#pain .section-heading h2 {
    margin-bottom: 0;
}

.pain-list {
    list-style: none;
    max-width: var(--max-text);
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pain-list li {
    background: var(--card);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 1.1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pain-pivot {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal);
    max-width: var(--max-text);
    margin: 0 auto 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--card-alt);
    border-radius: var(--radius-card);
}

/* ── 5. JAMIE'S STORY ── */
#story {
    background: var(--card);
    padding: 72px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: start;
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.story-photo-wrap {
    position: sticky;
    top: 100px;
}

.story-photo {
    width: 100%;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: var(--bg-alt);
}

.story-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-card);
    background: var(--card-alt);
    border: 2px dashed #b8d4e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1.5rem;
}

.story-photo-placeholder .photo-icon { font-size: 3rem; opacity: 0.4; }

.story-text h2 { margin-bottom: 0.75rem; }
.story-text .story-sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.story-text p { margin-bottom: 1.25rem; }

.story-contact {
    margin-top: 1.75rem;
    background: var(--bg);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
}

.story-contact strong { display: block; margin-bottom: 0.4rem; color: var(--heading); }
.story-contact a { font-weight: 700; }

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

/* ── 6. WHAT THE COURSE IS ── */
#what {
    background: var(--bg);
    padding: 72px 0;
}

#what .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

#what .section-header h2 { margin-bottom: 1rem; }
#what .section-header p { color: var(--muted); font-size: 1rem; }

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--max-wide);
    margin: 0 auto 2.5rem;
    padding: 0 24px;
}

.workshop-card {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 12px 20px rgba(0, 0, 0, 0.14);
}

.workshop-icon {
    display: block;
    margin: 0 auto 1.25rem;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.workshop-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.workshop-card p  { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

#what .what-cta {
    text-align: center;
    margin-top: 0.5rem;
}

/* ── 7. EXTENDED TESTIMONIALS ── */
#testimonials {
    background: var(--section--alt);
    background: var(--bg-alt);
    padding: 72px 0;
}

#testimonials .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

#testimonials .section-header h2 { margin-bottom: 0.75rem; }
#testimonials .section-header p { color: var(--muted); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-card {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    flex: 1;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
    font-style: normal;
}

.testimonial-cite {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--heading);
}

.reviewer-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: capitalize;
}

.reviewer-pill--student  { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }
.reviewer-pill--parent   { background: rgba(34, 197, 94, 0.12);  color: #15803d; }
.reviewer-pill--both     { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }

/* ── 8. INSIDE THE COURSE ── */
#inside {
    background: var(--card);
    padding: 72px 0;
}

#inside .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

#inside .section-header h2 { margin-bottom: 0.75rem; }
#inside .section-header p  { color: var(--muted); }

.inside-workshops {
    max-width: var(--max-wide);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.inside-workshop {
    background: var(--bg);
    border-radius: var(--radius-card);
    padding: 2.25rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.inside-workshop-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.inside-workshop-header .ws-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.inside-workshop-header h3 {
    font-size: 1.3rem;
    color: var(--heading);
    margin: 0;
}

.ws-skill {
    font-size: 0.95rem;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-left: calc(36px + 1rem);
}

.ws-overview {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1rem;
}

.ws-tools {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0;
}

.inside-also {
    background: var(--card-alt);
    border-radius: var(--radius-card);
    padding: 2rem 2rem;
    margin-top: 1rem;
}

.inside-also h3 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.inside-also ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.inside-also ul li {
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.55;
}

.inside-also ul li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.55;
}

/* ── 9. WHO IS IT FOR ── */
#who {
    background: var(--bg);
    padding: 72px 0;
}

#who .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

#who .section-header h2 { margin-bottom: 0.75rem; }
#who .section-header p  { color: var(--muted); }

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.who-col {
    background: var(--card);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-card);
}

.who-col h3 {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg);
}

.who-col--yes h3 { color: var(--green); border-color: rgba(46, 125, 50, 0.2); }
.who-col--no  h3 { color: var(--red);   border-color: rgba(198, 40, 40, 0.2); }

.who-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.who-list li {
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.55;
}

.who-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.55;
}

.who-col--yes .who-list li::before { content: '✓'; color: var(--green); font-weight: 700; }
.who-col--no  .who-list li::before { content: '✗'; color: var(--red);   font-weight: 700; }

/* ── 10. PRICING ── */
#pricing {
    background: var(--bg-alt);
    padding: 72px 0;
}

#pricing .section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--card);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    max-width: 520px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 2.25rem;
    text-align: center;
    border: 2px solid rgba(46, 134, 171, 0.15);
}

.pricing-card-logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 0.2rem;
}

.pricing-card-subtitle {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-includes li {
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.97rem;
    line-height: 1.5;
}

.pricing-includes li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 0.4rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1;
}

.pricing-term {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.pricing-guarantee {
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 480px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    text-align: center;
}

/* ── 11. FAQ ── */
#faq {
    background: var(--card);
    padding: 72px 0;
}

#faq .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

#faq .section-header h2 { margin-bottom: 0.75rem; }
#faq .section-header p  { color: var(--muted); font-size: 0.97rem; }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-list details {
    background: var(--bg);
    border: 1px solid #e8e0d5;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: background 0.2s ease;
}

.faq-list details[open] { background: var(--card); border-color: var(--teal); }

.faq-list summary {
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
    color: var(--heading);
    user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--teal);
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    content: '−';
}

.faq-list details .faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e0d5;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text);
}

/* ── 12. FINAL CTA ── */
#closing {
    background: linear-gradient(160deg, #1A2E3D 0%, #1E4A6A 40%, #2E86AB 100%);
    padding: 80px 0;
    text-align: center;
}

#closing h2 {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.closing-body {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.closing-body p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* ── 13. FLOATING CTA ── */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    background: var(--teal);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(46, 134, 171, 0.55);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    background: var(--teal-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(46, 134, 171, 0.65);
}

/* ── FOOTER ── */
#lp-footer {
    background: var(--heading);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.7;
}

#lp-footer a { color: rgba(255, 255, 255, 0.85); }
#lp-footer strong { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-main { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text-col { align-items: center; }
    #hero h1 { margin: 0 auto max(1.5vh, 12px); font-size: clamp(2rem, 6vw, 3rem); }
    #hero .hero-sub { margin: 0 auto max(2.5vh, 20px); }
    .hero-video-wrap { transform: none; width: 100%; max-width: 280px; aspect-ratio: 9/16; margin: 0 auto; }
    .hero-video-wrap--portrait { max-height: 40vh; }
    .hero-video-wrap:hover { transform: none; }

    .workshop-grid { grid-template-columns: 1fr; max-width: 480px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .who-grid { grid-template-columns: 1fr; max-width: 480px; }
    .story-grid { grid-template-columns: 1fr; }
    .story-photo-wrap { position: static; max-width: 320px; }
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
    #hero   { padding: max(2vh, 16px) 0; }
    #hero .container { gap: max(1.5vh, 12px); }
    
    .hero-main { gap: 1.5rem; }
    #hero h1 { font-size: clamp(1.6rem, 7vw, 2.3rem); margin: 0 auto 12px; }
    #hero .hero-sub { font-size: 0.95rem; line-height: 1.4; margin: 0 auto 16px; }
    
    .hero-video-wrap { width: 100%; max-width: 260px; aspect-ratio: 9/16; max-height: none; margin: 0 auto; }
    #hero .btn { width: 100%; max-width: 320px; padding: 12px 24px; font-size: 1rem; }
    #hero .hero-social-proof { font-size: 0.8rem; line-height: 1.3; margin-top: 4px; }
    
    /* Ensure hero can scroll if content is tall on mobile */
    #hero { height: auto; min-height: calc(100svh - 65px); padding: 40px 0; }
    #hero .container { justify-content: flex-start; }

    #age-guide-section { padding: 48px 0; }
    .age-guide-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .age-detail-card { padding: 1.5rem; }

    #lp-nav .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--card);
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        display: none;
        flex-direction: column;
        padding: 0.75rem;
        z-index: 100;
        align-items: stretch;
        gap: 0.25rem;
    }

    #lp-nav .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
    }

    #lp-nav.open .nav-links { display: flex; }

    #lp-nav .nav-ctas { display: none; }
    #lp-nav .nav-toggle { display: inline-flex; }

    #lp-nav.open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #lp-nav.open .nav-toggle .bar:nth-child(2) { opacity: 0; }
    #lp-nav.open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-amount { font-size: 2.75rem; }

    .inside-workshop { padding: 1.75rem 1.25rem; }
    .ws-skill { padding-left: 0; }

    .floating-cta { bottom: 1rem; right: 1rem; font-size: 0.9rem; padding: 12px 22px; }
}

@media (max-width: 480px) {
    .container, .container--narrow { padding: 0 16px; }
    .marquee-card { width: 260px; }
    .inside-also { padding: 1.5rem 1.25rem; }
    .who-col { padding: 1.5rem 1.25rem; }
    .testimonial-card { padding: 1.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    html { scroll-behavior: auto; }
}

@media print {
    .floating-cta, #lp-nav .nav-ctas, #lp-nav .nav-toggle { display: none !important; }
}

/* ── 12. OTHER COURSES SECTION ── */
#other-courses {
    padding: 6rem 0;
    background: #f8fafc;
}

.other-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.other-course-card {
    background: #fff;
    padding: 4rem 2rem 3rem 2rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.other-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.other-course-card.featured {
    border-color: var(--teal);
    position: relative;
    box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
}

.other-course-badge {
    position: absolute;
    top: -12px;
    background: var(--teal);
    color: #fff;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.other-course-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 0.5rem;
}

.other-course-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 1rem;
}

.other-course-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.5;
    flex-grow: 1;
}

.other-course-link {
    font-weight: 700;
    color: var(--teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.other-course-link:hover {
    gap: 12px;
}

@media (max-width: 768px) {
    .other-courses-grid { grid-template-columns: 1fr; max-width: 420px; }
    .other-course-card { padding: 2.5rem 1.5rem; }
}
