:root {
    --saffron: #E8620A;
    --saffron-hover: #CF5608;
    --saffron-glow: rgba(232, 98, 10, 0.15);
    --saffron-pale: #FFF5ED;

    --navy: #0F1628;
    --navy-mid: #1A2240;
    --navy-surface: #222B4A;

    --gold: #C5A44A;
    --gold-light: #DCC06E;
    --gold-muted: rgba(197, 164, 74, 0.15);

    --parchment: #FAF6EF;
    --parchment-warm: #F5EDE0;
    --white: #FFFFFF;

    --text-primary: #1A1A2E;
    --text-secondary: #555566;
    --text-muted: #888899;
    --text-inverse: rgba(255,255,255,0.88);
    --text-inverse-muted: rgba(255,255,255,0.55);

    --border-warm: rgba(197, 164, 74, 0.18);
    --border-light: rgba(0,0,0,0.06);

    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-warm: 0 12px 48px rgba(232, 98, 10, 0.1);
    --shadow-lift: 0 20px 60px rgba(0,0,0,0.1);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    --section-pad: clamp(80px, 10vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--parchment);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
section { position: relative; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    border-radius: 1px;
}
.eyebrow--saffron { color: var(--saffron); }
.eyebrow--saffron::before { background: var(--saffron); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }
.eyebrow--white { color: var(--gold-light); }
.eyebrow--white::before { background: var(--gold-light); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
    letter-spacing: 0.2px;
}
.btn--primary {
    background: var(--saffron);
    color: var(--white);
    font-size: 15px;
    padding: 17px 38px;
    box-shadow: 0 8px 32px rgba(232, 98, 10, 0.35);
}
.btn--primary:hover {
    background: var(--saffron-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(232, 98, 10, 0.4);
}
.btn--primary-lg {
    font-size: 17px;
    padding: 20px 48px;
}
.btn--ghost {
    background: transparent;
    color: var(--saffron);
    font-size: 14px;
    padding: 14px 30px;
    border: 2px solid var(--saffron);
}
.btn--ghost:hover {
    background: var(--saffron);
    color: var(--white);
}
.btn--ghost-light {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
}
.btn--ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.photo-placeholder {
    background: linear-gradient(145deg, #E8DED2, #D4C8B8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.photo-placeholder-label {
    position: absolute;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 16px 0;
    transition: all 0.4s ease;
}
#header.scrolled {
    background: rgba(15, 22, 40, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
    padding: 10px 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
.header-brand span {
    color: var(--gold-light);
    font-style: italic;
}
.header-tagline {
    font-size: 11px;
    color: var(--text-inverse-muted);
    letter-spacing: 0.5px;
    display: none;
}
@media (min-width: 768px) { .header-tagline { display: block; } }
.header-cta { font-size: 13px; padding: 10px 22px; }

#hero {
    background: var(--navy);
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 98, 10, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(197, 164, 74, 0.05) 0%, transparent 50%);
}
.hero-geo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-55%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(197, 164, 74, 0.08);
    pointer-events: none;
}
.hero-geo::before {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(197, 164, 74, 0.06);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
}
@media (max-width: 900px) {
.hero-grid { grid-template-columns: 1fr; gap: 40px; }
.hero-geo { display: none; }
}

.hero-content { padding-bottom: 80px; position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 98, 10, 0.12);
    border: 1px solid rgba(232, 98, 10, 0.2);
    color: var(--saffron);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.12;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 500;
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-inverse-muted);
    max-width: 520px;
    margin-bottom: 16px;
    line-height: 1.65;
}

.hero-free-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 4px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.trust-item {
    display: flex;
    flex-direction: column;
}
.trust-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}
.trust-item span {
    font-size: 11px;
    color: var(--text-inverse-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero photo */
.hero-photo-col {
    position: relative;
    z-index: 2;
}
.hero-photo {
    width: 100%;
    aspect-ratio: 3.2/4;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(170deg, #3A3520, #2A2010);
    position: relative;
    overflow: hidden;
}
.hero-photo .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
.hero-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 28px 28px;

    background: linear-gradient(
    to top,
    rgba(15, 22, 40, 1) 0%,
    rgba(15, 22, 40, 0.98) 20%,
    rgba(15, 22, 40, 0.92) 40%,
    rgba(15, 22, 40, 0.75) 60%,
    rgba(15, 22, 40, 0.35) 80%,
    transparent 100%
    );
}
.hero-photo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}
.hero-photo-title {
    font-size: 13px;
    color: var(--gold-light);
    margin-top: 2px;
}
.hero-photo-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-inverse-muted);
    background: rgba(255,255,255,0.06);
    padding: 6px 14px;
    border-radius: 4px;
}

#proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 28px 0;
}
.proof-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}
.proof-item strong {
    color: var(--text-primary);
    font-weight: 600;
}
.proof-icon { font-size: 20px; }

#problem {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.problem-header {
    text-align: center;
    margin-bottom: 60px;
}
.problem-header h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    color: var(--navy);
    margin-bottom: 16px;
}
.problem-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    margin: 0 auto;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}
.problem-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    background: var(--parchment);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.problem-card .icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.quote-bridge {
    text-align: center;
    padding: 48px 40px;
    background: var(--navy);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.quote-bridge::before {
    content: '"';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    color: rgba(197, 164, 74, 0.06);
    top: -40px;
    left: 30px;
    line-height: 1;
}
.quote-bridge blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    line-height: 1.45;
}
.quote-bridge cite {
    font-style: normal;
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 1px;
}

#masterclass {
    padding: var(--section-pad) 0;
    background: var(--parchment-warm);
}
.mc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 800px) { .mc-grid { grid-template-columns: 1fr; gap: 40px; } }

.mc-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 20px;
}
.mc-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.75;
}
.mc-what-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0 32px;
}
.mc-what-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.mc-what-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--saffron-glow);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.mc-what-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.mc-what-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

.mc-visual {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}
.mc-photo {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, #2A2010, #3A3520);
    position: relative;
}
.mc-photo .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
.mc-details {
    background: var(--navy);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.mc-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mc-detail-item span {
    font-size: 11px;
    color: var(--text-inverse-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mc-detail-item strong {
    font-size: 16px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

#instructor {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.instr-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 800px) { .instr-grid { grid-template-columns: 1fr; } }

.instr-photo-stack {
    position: relative;
}
.instr-main-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(160deg, #3A3520, #2A2010);
    position: relative;
    overflow: hidden;
}
.instr-main-photo img {
    height: 100%;
    object-fit: cover;
    object-position: 35%;
}
.instr-main-photo .photo-placeholder-label { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
.instr-small-photo {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 4px solid var(--white);
    background: linear-gradient(160deg, #2A2010, #1A1008);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.instr-small-photo .photo-placeholder-label { font-size: 9px; padding: 4px 8px; bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
.instr-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: var(--saffron);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(232, 98, 10, 0.4);
    z-index: 3;
}

.instr-content h2 {
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
    margin-bottom: 20px;
}
.instr-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
}
.instr-content p em { color: var(--text-primary); }

.instr-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.cred {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--parchment);
    border: 1px solid var(--border-warm);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

#learn {
    padding: var(--section-pad) 0;
    background: var(--navy);
}
.learn-header {
    text-align: center;
    margin-bottom: 64px;
}
.learn-header h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
}
.learn-header p {
    font-size: 17px;
    color: var(--text-inverse-muted);
    max-width: 520px;
    margin: 0 auto;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.learn-card {
    padding: 36px 30px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197, 164, 74, 0.12);
    transition: all 0.35s ease;
    position: relative;
}
.learn-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
    border-color: rgba(197, 164, 74, 0.25);
}
.learn-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(197, 164, 74, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}
.learn-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.learn-card p {
    font-size: 14px;
    color: var(--text-inverse-muted);
    line-height: 1.7;
}
.learn-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    background: var(--gold-muted);
    padding: 5px 14px;
    border-radius: 20px;
}

#gallery {
    padding: var(--section-pad) 0;
    background: var(--parchment);
}
.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}
.gallery-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 12px;
}
.gallery-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 240px 200px;
    gap: 16px;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 180px);
    }
}
.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #E0D5C4, #C8BBA8);
    transition: transform 0.3s ease;
}
.gallery-item img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: bottom;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item .photo-placeholder-label {
    bottom: 12px;
    left: 12px;
    right: auto;
    transform: none;
    font-size: 10px;
}
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 24px 16px 14px;
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
}

#testimonials {
    padding: var(--section-pad) 0;
    background: var(--white);
}
.test-header {
    text-align: center;
    margin-bottom: 56px;
}
.test-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 12px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.test-card {
    background: var(--parchment);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.test-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.test-stars { color: var(--saffron); font-size: 14px; margin-bottom: 14px; }
.test-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.75;
    margin-bottom: 24px;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}
.test-avatar .photo-placeholder-label { font-size: 7px; padding: 2px 4px; position: static; transform: none; background: none; color: var(--gold-light); }
.test-avatar-initial {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
}
.test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.test-role { font-size: 12px; color: var(--text-muted); }

.video-test-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.video-test-item {
    border-radius: var(--radius-sm);
    aspect-ratio: 16/9;
    background: linear-gradient(160deg, #E0D5C4, #C8BBA8);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.video-test-item:hover { transform: scale(1.02); }
.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(15, 22, 40, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--white);
    margin-left: 4px;
}

#audience {
    padding: var(--section-pad) 0;
    background: var(--saffron-pale);
}
.aud-header {
    text-align: center;
    margin-bottom: 56px;
}
.aud-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    margin-bottom: 12px;
}

.aud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.aud-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-warm);
    transition: all 0.3s ease;
}
.aud-card:hover { box-shadow: var(--shadow-warm); transform: translateY(-4px); }
.aud-emoji { font-size: 34px; margin-bottom: 14px; }
.aud-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.aud-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

#register {
    padding: var(--section-pad) 0 calc(var(--section-pad) + 20px);
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}
#register::before, #register::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 164, 74, 0.06);
}
#register::before { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
#register::after { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.register-inner { position: relative; z-index: 2; }
#register h2 {
    font-size: clamp(30px, 4vw, 52px);
    color: var(--white);
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
#register p {
    font-size: 17px;
    color: var(--text-inverse-muted);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.register-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.register-note {
    font-size: 13px;
    color: var(--text-inverse-muted);
}
.register-note strong { color: var(--gold-light); }

#faq {
    padding: var(--section-pad) 0;
    background: var(--parchment);
}
.faq-header {
    text-align: center;
    margin-bottom: 48px;
}
.faq-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    gap: 16px;
    user-select: none;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--saffron); }
.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--saffron-pale);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 280px; }
.faq-a-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

#footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 36px 0;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-links a {
    font-size: 13px;
    color: var(--text-inverse-muted);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
#footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}
#footer a { color: var(--gold-light); }

#book{
    padding: var(--section-pad) 0;
    background: var(--parchment-warm);
}
.book-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}
@media(max-width:900px){
    .book-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}
.book-image{
    text-align:center;
}
.book-image img{
    max-width:100%;
    border-radius:20px;
    padding: 50px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.book-content h2{
    font-size:clamp(34px,4vw,54px);
    color:var(--navy);
    margin-bottom:20px;
}
.book-content .book-intro{
    font-size:18px;
    color:var(--text-secondary);
    line-height:1.8;
    margin-bottom:30px;
}
.book-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin:30px 0;
}
.book-testimonials{
    display:grid;
    gap:20px;
    margin-top: 50px;
}
.book-review{
    background:#fff;
    border-radius:16px;
    padding:28px;
    border:1px solid rgba(0,0,0,.06);
    box-shadow:var(--shadow-soft);
}
.book-stars{
    color:#f5a623;
    font-size:18px;
    margin-bottom:15px;
    letter-spacing:2px;
}
.book-review p{
    margin:0 0 18px;
    color:var(--text-secondary);
    line-height:1.8;
    font-size:15px;
}
.book-author{
    font-weight:700;
    color:var(--navy);
    margin-bottom:4px;
}
.book-designation{
    font-size:14px;
    color:var(--text-muted);
}
    #course { padding: var(--section-pad) 0; background: var(--navy); }
    .course-header { text-align: center; margin-bottom: 64px; }
    .course-header h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin-bottom: 16px; }
    .course-header p { font-size: 17px; color: var(--text-inverse-muted); max-width: 540px; margin: 0 auto; }

    .course-path { display: flex; flex-direction: column; gap: 24px; }

    .level-card { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(197,164,74,0.12); transition: all 0.35s ease; }
    .level-card:hover { transform: translateY(-4px); border-color: rgba(197,164,74,0.28); }

    .level-header { padding: 28px 36px; display: flex; align-items: center; gap: 24px; }
    .level-header-free { background: rgba(232,98,10,0.1); border-bottom: 1px solid rgba(232,98,10,0.2); }
    .level-header-l1 { background: rgba(197,164,74,0.08); border-bottom: 1px solid rgba(197,164,74,0.15); }
    .level-header-l2 { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.07); }
    .level-header-l3 { background: rgba(197,164,74,0.12); border-bottom: 1px solid rgba(197,164,74,0.2); }

    .level-badge-pill { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; flex-shrink: 0; }
    .badge-free { background: var(--saffron); color: var(--white); }
    .badge-l1 { background: rgba(197,164,74,0.2); color: var(--gold-light); border: 1px solid rgba(197,164,74,0.3); }
    .badge-l2 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.12); }
    .badge-l3 { background: linear-gradient(90deg, rgba(197,164,74,0.25), rgba(220,192,110,0.2)); color: var(--gold-light); border: 1px solid rgba(197,164,74,0.4); }

    .level-header-text { flex: 1; }
    .level-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .level-meta { font-size: 13px; color: var(--text-inverse-muted); }
    .level-price { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--white); text-align: right; flex-shrink: 0; }
    .level-price small { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--text-inverse-muted); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }

    .level-sessions { padding: 28px 36px; background: rgba(0,0,0,0.2); display: grid; gap: 16px; }
    .session-row { display: flex; gap: 20px; align-items: flex-start; padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); transition: all 0.25s ease; }
    .session-row:hover { background: rgba(255,255,255,0.06); border-color: rgba(197,164,74,0.15); }
    .session-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: rgba(197,164,74,0.2); line-height: 1; min-width: 36px; }
    .session-info { flex: 1; }
    .session-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
    .session-desc { font-size: 13px; color: var(--text-inverse-muted); line-height: 1.6; }
    .session-tag { display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); background: var(--gold-muted); padding: 3px 10px; border-radius: 10px; }
    .session-duration { font-size: 11px; color: var(--text-inverse-muted); text-align: right; white-space: nowrap; padding-top: 2px; }

    .level-cta { padding: 24px 36px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .level-cta-note { font-size: 13px; color: var(--text-inverse-muted); }