/* ============================================
   MOUNT KAILASH SCHOOL — Brand Book palette
   Primary #3D715D • Midnight #193325 • Paper #F4EFEA • Stone #C8C9D1
   Typography (brand): Arboria — web stack unchanged (Cormorant / Crimson / Space Grotesk)
   CTAs: terracotta / gold accents unchanged for conversion
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Mount Kailash Brand Book — Color Palette */
    --brand-green: #3D715D;
    --brand-midnight: #193325;
    --brand-paper: #F4EFEA;
    --brand-stone: #C8C9D1;

    /* Light Mode — semantic (maps to brand) */
    --olive-drab: #3D715D;
    --terracotta: #A0522D; /* CTA accent — unchanged */
    --ochre: #C9A227;
    /* Accessible accent text on paper (meets contrast vs #F4EFEA) */
    --gold-accessible: #1d4a3d;
    --espresso: #193325;
    --raw-linen: #F4EFEA;
    --sage-mist: #C8C9D1;

    /* Theme-aware colors */
    --bg-primary: #F4EFEA;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #E8E5E1;
    --text-primary: #193325;
    --text-secondary: #2a5244;
    --text-muted: #5c6560;
    --border-color: rgba(25, 51, 37, 0.14);
    --overlay-bg: rgba(25, 51, 37, 0.62);
    --card-bg: #FFFFFF;
    --shadow-color: rgba(25, 51, 37, 0.12);
    
    --font-headline: 'Cormorant Garamond', serif;
    --font-body: 'Crimson Text', serif;
    --font-ui: 'Space Grotesk', sans-serif;
    
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 72px;
    --spacing-xxl: 120px;
    
    --transition-smooth: 300ms ease-out;
    --transition-slow: 600ms ease-out;
}

/* Dark Mode — brand midnight base, paper/stone text */
[data-theme="dark"] {
    --olive-drab: #5a9d84;
    --terracotta: #C77A52;
    --ochre: #E5C557;
    --gold-accessible: #d4e8df;
    --espresso: #F4EFEA;
    --raw-linen: #193325;
    --sage-mist: #9aa8a2;

    --bg-primary: #193325;
    --bg-secondary: #1f3d32;
    --bg-tertiary: #264a3d;
    --text-primary: #F4EFEA;
    --text-secondary: #C8C9D1;
    --text-muted: #9aa8a2;
    --border-color: rgba(244, 239, 234, 0.12);
    --overlay-bg: rgba(25, 51, 37, 0.85);
    --card-bg: #1f3d32;
    --shadow-color: rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(36px, 6vw, 72px);
}

h2 {
    font-size: clamp(28px, 4vw, 48px);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 18px 36px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--terracotta);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(160, 82, 45, 0.3);
}

[data-theme="dark"] .btn-primary {
    background-color: #C77A52;
    color: #FFFFFF;
}

[data-theme="dark"] .btn-primary:hover {
    background-color: #D68A62;
}

.btn-hero {
    background-color: var(--terracotta);
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.btn-hero:hover {
    background-color: #8B4513;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(160, 82, 45, 0.4);
}

/* Hero primary CTA — subtle continuous motion (terracotta unchanged) */
@keyframes heroCtaGlow {
    0%, 100% {
        box-shadow: 0 8px 22px rgba(160, 82, 45, 0.38);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 14px 36px rgba(160, 82, 45, 0.52);
        transform: translateY(-2px);
    }
}

.btn-hero.hero-cta-animated {
    animation: heroCtaGlow 2.6s ease-in-out infinite;
}

.btn-hero.hero-cta-animated:hover {
    animation: none;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(160, 82, 45, 0.4);
}

[data-theme="dark"] .btn-hero {
    background-color: #C77A52;
    color: #FFFFFF;
}

[data-theme="dark"] .btn-hero:hover {
    background-color: #D68A62;
}

.btn-cta-primary {
    background-color: var(--brand-paper);
    color: var(--brand-midnight);
    padding: 24px 56px;
    font-size: 16px;
}

.btn-cta-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-cta-primary {
    background-color: var(--brand-stone);
    color: var(--brand-midnight);
}

[data-theme="dark"] .btn-cta-primary:hover {
    background-color: var(--brand-paper);
}

.btn-cta-secondary {
    background-color: transparent;
    color: var(--brand-paper);
    border: 2px solid var(--brand-paper);
    padding: 22px 54px;
    font-size: 16px;
}

.btn-cta-secondary:hover {
    background-color: rgba(244, 239, 234, 0.1);
}

[data-theme="dark"] .btn-cta-secondary {
    color: var(--brand-paper);
    border-color: var(--brand-stone);
}

[data-theme="dark"] .btn-cta-secondary:hover {
    background-color: rgba(200, 201, 209, 0.12);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: var(--spacing-md);
}

.section-title-centered {
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 24px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    transition: color 0.3s ease;
}

/* ============================================
   STICKY HEADER
   ============================================ */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background-color: rgba(25, 51, 37, 0.96);
    backdrop-filter: blur(12px);
    padding: var(--spacing-sm) 0;
    z-index: 1000;
    transition: top var(--transition-smooth), background-color 0.3s ease;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

[data-theme="dark"] .sticky-header {
    background-color: rgba(25, 51, 37, 0.97);
    border-bottom: 1px solid rgba(200, 201, 209, 0.2);
}

.sticky-header.visible {
    top: 0;
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-paper);
    transition: color 0.3s ease;
}

[data-theme="dark"] .sticky-title {
    color: var(--brand-paper);
}

.sticky-meta {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-stone);
    transition: color 0.3s ease;
}

[data-theme="dark"] .sticky-meta {
    color: rgba(244, 239, 234, 0.75);
}

.spots-pulse {
    color: #BC8A5F;
    font-weight: 600;
    animation: spotsPulse 3s ease-in-out infinite;
}

@keyframes spotsPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

.sticky-cta-btn {
    white-space: nowrap;
    font-size: 13px !important;
    padding: 10px 20px !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    background: rgba(244, 239, 234, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.theme-toggle:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--ochre);
    transform: rotate(15deg) scale(1.1);
}

.theme-toggle:active {
    transform: rotate(15deg) scale(0.95);
}

.theme-icon {
    font-size: 20px;
    transition: transform 0.5s ease;
}

[data-theme="dark"] .theme-icon {
    transform: rotate(180deg);
}

/* Theme toggle animations */
@keyframes moonToSun {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.8); }
    100% { transform: rotate(360deg) scale(1); }
}

.theme-toggle.transitioning .theme-icon {
    animation: moonToSun 0.5s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100vh;
    max-height: 100vh;
}

.hero-left {
    background-color: var(--olive-drab);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .hero-left {
    background-color: #142b22;
}

.hero-content {
    max-width: 500px;
}

.hero-content-no-logo {
    padding-top: 0;
}

.hero-logo {
    margin-bottom: var(--spacing-lg);
}

.logo-img {
    max-width: 120px;
    height: auto;
    background: transparent !important;
    filter: brightness(1.05) contrast(1.15) saturate(1.1);
    transition: filter 0.3s ease;
    mix-blend-mode: lighten; /* black areas match hero olive background; teal stays visible */
}

.hero-logo {
    position: relative;
    isolation: isolate;
    display: inline-block;
}

.logo-img:hover {
    filter: brightness(1.1) contrast(1.2) saturate(1.3);
}

/* Enhanced appearance in dark mode */
[data-theme="dark"] .logo-img {
    filter: brightness(1.2) contrast(1.3) saturate(1.4);
    opacity: 0.95;
}

[data-theme="dark"] .logo-img:hover {
    filter: brightness(1.7) contrast(1.6) saturate(1.9) drop-shadow(0 4px 16px rgba(229, 197, 87, 0.6));
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 140px;
    }
}

.hero-title {
    font-size: clamp(48px, 7vw, 72px);
    color: var(--brand-paper);
    margin-bottom: var(--spacing-md);
    line-height: 1.0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

[data-theme="dark"] .hero-title {
    color: #FFFFFF;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244, 239, 234, 0.95);
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-xs);
    transition: color 0.3s ease;
}

[data-theme="dark"] .hero-subtitle {
    color: #D4D0C7;
}

/* Hero scarcity / application badge */
.hero-scarcity {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: var(--spacing-sm) 0 var(--spacing-md) 0;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(188, 138, 95, 0.15);
    border: 1px solid rgba(188, 138, 95, 0.5);
    color: #BC8A5F;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 14px;
    border-radius: 100px;
    width: fit-content;
}

.scarcity-badge svg {
    flex-shrink: 0;
}

.scarcity-spots {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(232, 228, 219, 0.75);
    padding-left: 4px;
}

.hero-apply-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(232, 228, 219, 0.6);
    font-style: italic;
    margin: var(--spacing-xs) 0 0 0;
}

.hero-meta {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: var(--spacing-sm);
    opacity: 0;
    transform: translateY(20px);
    padding: 12px 20px;
    background: linear-gradient(90deg, var(--ochre) 0%, var(--terracotta) 100%);
    color: var(--espresso);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.meta-icon {
    font-size: 16px;
    animation: iconPop 0.6s ease-out;
    animation-delay: 2.3s;
    animation-fill-mode: both;
}

@keyframes iconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    70% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.meta-text {
    display: inline-block;
}

/* Animated entry after 2 seconds */
.hero-meta.visible {
    animation: slideInHighlight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards,
        heroMetaAttention 3s ease-in-out 1s infinite;
}

@keyframes heroMetaAttention {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
    }
}

@keyframes slideInHighlight {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Shimmer highlight effect */
.hero-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shimmer 2s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Pulse glow effect */
.hero-meta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--ochre);
    border-radius: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
    animation: metaPulse 2s ease-out infinite;
    animation-delay: 2s;
}

@keyframes metaPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.hero-right {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero-media {
    width: 100%;
    height: 100%;
    min-height: inherit;
    position: relative;
    overflow: hidden;
    /* Shows if slides fail to load until assets exist */
    background: linear-gradient(145deg, var(--olive-drab) 0%, #2d3a24 50%, var(--olive-drab) 100%);
}

[data-theme="dark"] .hero-media.hero-reel {
    /* Keep the reel area looking like light-mode even when page is dark */
    background: #f6f3ec;
}

[data-theme="dark"] .hero-media.hero-reel .video-overlay {
    /* Lighter overlay so images read like light mode */
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.16) 100%
    );
}

.hero-reel {
    /* No layout shift while images load */
    aspect-ratio: 16 / 9;
}

.hero-reel__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-reel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-reel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-reel__picture,
.hero-reel__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

/* Ensure <picture> fills the slide */
.hero-reel__picture {
    position: absolute;
    inset: 0;
}

/* Controls (subtle, keyboard accessible) */
.hero-reel__control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.0;
}

.hero-reel:hover .hero-reel__control,
.hero-reel:focus-within .hero-reel__control {
    opacity: 1;
}

.hero-reel__control:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-reel__control:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

.hero-reel__control--prev {
    left: 14px;
}

.hero-reel__control--next {
    right: 14px;
}

.hero-reel__control span {
    font-size: 28px;
    line-height: 1;
    transform: translateY(-1px);
}

/* Reduced motion: no transitions and hide controls (static image) */
@media (prefers-reduced-motion: reduce) {
    .hero-reel__slide {
        transition: none;
    }
    .hero-reel__control {
        display: none;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 0;
    transform: scale(1);
    transform-origin: center 20%;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Ken Burns: zoom 1 → 1.05 over each slide display (~5s), restarted per slide in app.js */
.hero-slide.hero-slide-animate {
    animation: heroKenBurns 5s ease-out forwards;
}

@keyframes heroKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(25, 51, 37, 0.2) 0%, rgba(25, 51, 37, 0.6) 100%);
    transition: background 0.3s ease;
}

[data-theme="dark"] .video-overlay {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
}

/* Hero Quote Overlay — compact bottom-right card so carousel stays visible */
.hero-quote {
    position: absolute;
    bottom: 24px;
    right: 24px;
    left: auto;
    width: min(300px, calc(100% - 48px));
    max-width: calc(100% - 48px);
    z-index: 20;
    background: rgba(244, 239, 234, 0.92);
    backdrop-filter: blur(12px);
    padding: 14px 18px 16px;
    border-left: 3px solid var(--ochre);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    opacity: 1;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .hero-quote {
    background: rgba(25, 51, 37, 0.96);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-quote .quote-text {
    color: var(--brand-midnight);
}

[data-theme="dark"] .hero-quote .quote-text {
    color: var(--brand-paper);
}

.hero-quote .quote-author {
    color: var(--terracotta);
}

[data-theme="dark"] .hero-quote .quote-author {
    color: var(--ochre);
}

.quote-mark {
    font-family: var(--font-headline);
    font-size: 36px;
    line-height: 0.85;
    color: var(--ochre);
    opacity: 0.35;
    margin-bottom: 6px;
}

.quote-text {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 15px;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.quote-author {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.quote-decoration {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 26px;
    opacity: 0.18;
    transform: rotate(12deg);
    pointer-events: none;
}

/* Hero Statistics Panel - Now in left column below March cohort */
.hero-stats {
    margin-top: var(--spacing-md);
    padding: 20px 24px;
    background: rgba(25, 51, 37, 0.4);
    border: 1px solid rgba(212, 163, 115, 0.25);
    border-radius: 8px;
    max-width: 100%;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.hero-stats:hover {
    border-color: rgba(212, 163, 115, 0.45);
}

[data-theme="dark"] .hero-stats {
    background: rgba(0, 0, 0, 0.25);
    border-color: rgba(229, 197, 87, 0.2);
}

[data-theme="dark"] .hero-stats:hover {
    border-color: rgba(229, 197, 87, 0.4);
}

/* Quote inside hero stats panel */
.hero-stats-quote {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 163, 115, 0.25);
}

.hero-stats-quote-text {
    font-family: var(--font-headline);
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    color: var(--raw-linen);
    margin-bottom: 8px;
    opacity: 0.95;
}

.hero-stats-quote-author {
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ochre);
    opacity: 0.9;
}

[data-theme="dark"] .hero-stats-quote-text {
    color: var(--raw-linen);
}

[data-theme="dark"] .hero-stats-quote {
    border-top-color: rgba(229, 197, 87, 0.2);
}

@keyframes statsReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Removed animated border glow - too distracting */

.stat-featured {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(212, 163, 115, 0.25);
}

.stat-featured .stat-label {
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
    font-weight: 400;
}

[data-theme="dark"] .stat-featured .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

.stat-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.stars {
    font-size: 18px;
    color: var(--ochre);
    letter-spacing: 1px;
    opacity: 0.9;
}

.rating-number {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

[data-theme="dark"] .rating-number {
    color: rgba(255, 255, 255, 0.95);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 300;
    color: var(--ochre);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.95;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    opacity: 0.85;
    font-weight: 400;
}

[data-theme="dark"] .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--ochre), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: var(--spacing-xl);
    align-items: center;
}

.transformation-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.transformation-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.transform-item {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   AUTHORITY SECTION - ANIMATED MARQUEE
   ============================================ */
.authority {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .authority {
    /* Keep the marquee looking "light" even in dark mode */
    background-color: var(--bg-primary);
    border-top-color: var(--border-color);
    border-bottom-color: var(--border-color);
}

.authority-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

[data-theme="dark"] .authority-label {
    color: var(--text-secondary);
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

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

.logo-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
    transition: all var(--transition-smooth);
    background: transparent;
}

.logo-slide img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    background: transparent;
    /* normal blend — multiply/screen made white logo mats look like solid squares */
    mix-blend-mode: normal;
    filter: none;
    transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

[data-theme="dark"] .logo-slide img {
    mix-blend-mode: normal;
    opacity: 1;
}

.logo-slide:hover img {
    opacity: 1;
    filter: none;
    transform: scale(1.08);
    /* Soft glow improves contrast on transparent logos */
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.28))
        drop-shadow(0 2px 10px rgba(0, 0, 0, 0.12));
}

[data-theme="dark"] .logo-slide:hover img {
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.32))
        drop-shadow(0 2px 12px rgba(0, 0, 0, 0.38));
}

.logo-slide span {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: var(--text-primary);
    opacity: 0.7;
    transition: opacity var(--transition-smooth), color 0.3s ease;
}

[data-theme="dark"] .logo-slide span {
    color: var(--text-primary);
}

.logo-slide:hover span {
    opacity: 1;
}

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

/* ============================================
   MENTORS SECTION - ENHANCED WITH BOTANICAL BORDER
   ============================================ */
.mentors {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .mentors {
    background-color: #0f0e0d;
}

.mentors .container {
    position: relative;
}

.mentors .section-title-centered,
.mentors .section-subtitle {
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .mentors .section-title-centered,
[data-theme="dark"] .mentors .section-subtitle {
    color: var(--text-primary);
}

.mentors-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    padding: var(--spacing-lg) 0;
}

.mentor-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border: 2px solid var(--ochre);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .mentor-card-featured {
    background: linear-gradient(135deg, rgba(107, 138, 78, 0.1) 0%, rgba(229, 197, 87, 0.05) 100%);
}

/* Gentle Shimmer Effect on Hover */
.mentor-card-featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(201, 162, 39, 0.1) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.mentor-card-featured:hover::after {
    opacity: 1;
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.mentor-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.25);
    background: linear-gradient(135deg, rgba(61, 113, 93, 0.2) 0%, rgba(201, 162, 39, 0.12) 100%);
}

/* Smooth Highlight Effects for Featured Instructors */
.spotlight-pulse,
.spotlight-glow {
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-pulse:hover {
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.4);
    transform: translateY(-12px) scale(1.02);
}

.spotlight-glow:hover {
    box-shadow: 0 20px 60px rgba(184, 196, 176, 0.4);
    transform: translateY(-12px) scale(1.02);
}

.mentor-card-standard {
    background: linear-gradient(135deg, rgba(61, 113, 93, 0.15) 0%, rgba(184, 196, 176, 0.1) 100%);
    padding: var(--spacing-md);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .mentor-card-standard {
    background: linear-gradient(135deg, rgba(107, 138, 78, 0.2) 0%, rgba(122, 138, 115, 0.15) 100%);
    border-color: rgba(184, 196, 176, 0.2);
}

.mentor-card-standard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.6s ease;
}

.mentor-card-standard:hover::before {
    left: 100%;
}

.mentor-card-standard:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(61, 113, 93, 0.25) 0%, rgba(201, 162, 39, 0.15) 100%);
    border-color: var(--ochre);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.3);
}

[data-theme="dark"] .mentor-card-standard:hover {
    background: linear-gradient(135deg, rgba(107, 138, 78, 0.35) 0%, rgba(229, 197, 87, 0.2) 100%);
    box-shadow: 0 12px 32px rgba(229, 197, 87, 0.3);
}

.mentor-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all var(--transition-slow);
}

.mentor-card-featured:hover .mentor-photo,
.mentor-card-standard:hover .mentor-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.mentor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(25, 51, 37, 0.9) 0%, transparent 50%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-md);
    transition: opacity var(--transition-smooth);
}

.mentor-image-wrapper:hover .mentor-overlay {
    opacity: 1;
}

.btn-view-bio {
    background-color: var(--ochre);
    color: var(--espresso);
    padding: 12px 24px;
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-view-bio:hover {
    background-color: var(--terracotta);
    color: var(--raw-linen);
    transform: translateY(-2px);
}

.mentor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mentor-name {
    font-size: 28px;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

[data-theme="dark"] .mentor-name {
    color: var(--espresso);
}

.mentor-card-standard .mentor-name {
    font-size: 20px;
    margin-top: var(--spacing-sm);
}

[data-theme="dark"] .mentor-card-standard .mentor-name {
    color: var(--espresso);
    font-weight: 400;
}

.mentor-title {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-accessible);
    margin-bottom: var(--spacing-sm);
}

[data-theme="dark"] .mentor-title {
    color: var(--ochre);
    font-weight: 600;
}

.mentor-bio-short {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

[data-theme="dark"] .mentor-bio-short {
    color: var(--sage-mist);
    font-weight: 400;
}

.mentor-card-standard .mentor-bio-short {
    font-size: 14px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(61, 113, 93, 0.12) 0%, rgba(184, 196, 176, 0.08) 100%);
    border-left: 3px solid var(--olive-drab);
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
}

[data-theme="dark"] .mentor-card-standard .mentor-bio-short {
    color: var(--sage-mist);
    font-weight: 400;
    background: linear-gradient(135deg, rgba(107, 138, 78, 0.25) 0%, rgba(122, 138, 115, 0.18) 100%);
    border-left-color: var(--olive-drab);
}

.mentor-credentials {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.credential-badge {
    font-family: var(--font-ui);
    font-size: 11px;
    background-color: rgba(122, 90, 34, 0.1);
    color: var(--gold-accessible);
    padding: 6px 12px;
    border: 1px solid var(--gold-accessible);
    font-weight: 600;
}

[data-theme="dark"] .credential-badge {
    background-color: rgba(229, 197, 87, 0.3);
    color: var(--ochre);
    border-color: var(--ochre);
}

.credential-badge-small {
    font-family: var(--font-ui);
    font-size: 10px;
    background-color: rgba(184, 196, 176, 0.2);
    color: var(--text-secondary);
    padding: 4px 8px;
    margin-top: var(--spacing-xs);
    display: inline-block;
    font-weight: 500;
}

[data-theme="dark"] .credential-badge-small {
    background-color: rgba(184, 196, 176, 0.3);
    color: var(--sage-mist);
}

/* ============================================
   CURRICULUM - INTERACTIVE JOURNEY
   ============================================ */
.curriculum-interactive {
    padding: var(--spacing-xxl) 0;
    background-color: var(--raw-linen);
}

.journey-interactive {
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
}

/* Animated journey line track (full height) + fill (grows on scroll) */
.journey-line-track {
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(61, 113, 93, 0.2);
    border-radius: 2px;
    z-index: 0;
}

[data-theme="dark"] .journey-line-track {
    background: rgba(184, 196, 176, 0.15);
}

.journey-line-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--terracotta), var(--ochre));
    border-radius: 2px;
    transition: height 0.2s ease-out;
    z-index: 1;
}

[data-theme="dark"] .journey-line-fill {
    background: linear-gradient(to top, #C77A52, #E5C557);
}

.journey-stage {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(var(--stage-index) * 0.2s);
}

.journey-stage[data-stage="1"] { --stage-index: 1; }
.journey-stage[data-stage="2"] { --stage-index: 2; }
.journey-stage[data-stage="3"] { --stage-index: 3; }
.journey-stage[data-stage="4"] { --stage-index: 4; }
.journey-stage[data-stage="5"] { --stage-index: 5; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.stage-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--ochre);
    color: var(--brand-midnight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 600;
    border: 4px solid var(--card-bg);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.25);
    transition: box-shadow 0.35s ease, transform 0.35s ease, background-color 0.3s ease, opacity 0.35s ease;
    opacity: 0.65;
}

.journey-stage.stage-lit .stage-number {
    opacity: 1;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.45), 0 6px 24px rgba(201, 162, 39, 0.5);
    transform: scale(1.12);
}

[data-theme="dark"] .stage-number {
    background-color: rgba(229, 197, 87, 0.7);
    color: var(--brand-midnight);
    border-color: var(--brand-midnight);
}

[data-theme="dark"] .journey-stage.stage-lit .stage-number {
    background-color: #E5C557;
    box-shadow: 0 0 0 4px rgba(229, 197, 87, 0.35), 0 6px 20px rgba(229, 197, 87, 0.5);
}

.summit-marker .stage-number {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--ochre) 100%);
    width: 80px;
    height: 80px;
    font-size: 32px;
    opacity: 0.75;
}

.journey-stage.journey-summit.stage-lit .stage-number {
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.5), 0 8px 28px rgba(160, 82, 45, 0.55);
    transform: scale(1.1);
}

[data-theme="dark"] .journey-stage.journey-summit.stage-lit .stage-number {
    box-shadow: 0 0 0 6px rgba(229, 197, 87, 0.5), 0 8px 28px rgba(199, 122, 82, 0.55);
}

.stage-connector {
    width: 3px;
    flex: 1;
    margin: var(--spacing-sm) 0;
    background: transparent;
    visibility: hidden;
}

.stage-content {
    background-color: var(--card-bg);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--olive-drab);
    transition: all var(--transition-smooth);
}

[data-theme="dark"] .stage-content {
    background-color: rgba(42, 40, 38, 0.6);
}

.stage-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border-left-color: var(--terracotta);
}

.journey-summit .stage-content {
    border-left-color: var(--ochre);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, var(--card-bg) 50%);
}

[data-theme="dark"] .journey-summit .stage-content {
    background: linear-gradient(135deg, rgba(229, 197, 87, 0.1) 0%, rgba(42, 40, 38, 0.6) 50%);
}

.stage-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
    transition: transform 0.35s ease, filter 0.35s ease;
    opacity: 0.85;
}

.journey-stage.stage-lit .stage-icon {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.4));
}

[data-theme="dark"] .journey-stage.stage-lit .stage-icon {
    filter: drop-shadow(0 2px 8px rgba(229, 197, 87, 0.5));
}

.stage-title {
    font-family: var(--font-headline);
    font-size: 28px;
    color: var(--olive-drab);
    margin-bottom: var(--spacing-xs);
}

.stage-duration {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: var(--spacing-md);
}

.stage-modules {
    margin: var(--spacing-md) 0;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(61, 113, 93, 0.1);
}

.module-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.stage-quote {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: var(--brand-midnight);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) var(--spacing-md);
    border-left: 4px solid var(--ochre);
    background: rgba(201, 162, 39, 0.12);
    border-radius: 0 8px 8px 0;
}

[data-theme="dark"] .stage-quote {
    color: var(--brand-paper);
    background: rgba(229, 197, 87, 0.15);
    border-left-color: var(--ochre);
}

.btn-expand-stage {
    background-color: var(--olive-drab);
    color: var(--raw-linen);
    padding: 12px 24px;
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    margin-top: var(--spacing-sm);
    transition: all var(--transition-smooth);
}

.btn-expand-stage:hover {
    background-color: var(--terracotta);
    transform: translateX(4px);
}

.summit-btn {
    background-color: var(--terracotta);
    padding: 16px 32px;
    font-size: 13px;
    animation: summitCtaPulse 2.5s ease-in-out infinite;
}

.summit-btn:hover {
    background-color: var(--ochre);
    color: var(--espresso);
    animation: none;
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.45);
}

@keyframes summitCtaPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(160, 82, 45, 0.35); transform: scale(1); }
    50%   { box-shadow: 0 6px 28px rgba(201, 162, 39, 0.5); transform: scale(1.02); }
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: rgba(61, 113, 93, 0.12);
    border-top: 3px solid var(--ochre);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .journey-stats {
    background-color: rgba(25, 51, 37, 0.88);
    border-top-color: var(--ochre);
}

.journey-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.journey-stats .stat-number {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
    transition: color 0.3s ease;
}

.journey-stats .stat-label {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-top: var(--spacing-xs);
    transition: color 0.3s ease;
}

[data-theme="dark"] .journey-stats .stat-number {
    color: #E5C557;
}

[data-theme="dark"] .journey-stats .stat-label {
    color: var(--brand-stone);
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience {
    padding: var(--spacing-xxl) 0;
    background-color: var(--olive-drab);
    color: var(--brand-paper);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .experience {
    background-color: #142b22;
    color: var(--brand-paper);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.experience-card {
    background-color: rgba(244, 239, 234, 0.05);
    padding: var(--spacing-lg);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .experience-card {
    background-color: rgba(232, 228, 219, 0.08);
    border-color: rgba(229, 197, 87, 0.3);
}

.experience-featured {
    border: 2px solid var(--ochre);
}

.experience-title {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
}

.experience-duration {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ochre);
    margin-bottom: var(--spacing-md);
}

.experience-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.experience-list li {
    padding: var(--spacing-xs) 0;
    font-size: 16px;
}

.experience-investment {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--ochre);
    margin-top: var(--spacing-md);
}

.experience-total {
    text-align: center;
    font-family: var(--font-headline);
    font-size: 32px;
    color: var(--ochre);
    animation: totalValueHighlight 2.5s ease-in-out infinite;
}

@keyframes totalValueHighlight {
    0%, 100% { filter: brightness(1); text-shadow: 0 0 0 transparent; }
    50% { filter: brightness(1.15); text-shadow: 0 0 20px rgba(201, 162, 39, 0.4), 0 0 40px rgba(201, 162, 39, 0.2); }
}

/* ============================================
   OUTCOMES SECTION - YOUR PATH FORWARD
   ============================================ */
.outcomes {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    transition: background 0.3s ease;
}

[data-theme="dark"] .outcomes {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #1f1e1c 100%);
}

.outcomes .section-title-centered {
    margin-bottom: var(--spacing-md);
}

.outcomes .section-subtitle {
    margin-bottom: var(--spacing-xl);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.outcomes-column {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: 12px;
    border-left: 4px solid var(--olive-drab);
    box-shadow: 0 4px 24px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.outcomes-column:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-color);
    border-left-color: var(--ochre);
}

[data-theme="dark"] .outcomes-column {
    background: var(--bg-secondary);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.outcomes-heading {
    font-family: var(--font-headline);
    font-size: 26px;
    margin-bottom: var(--spacing-lg);
    color: var(--olive-drab);
    font-weight: 600;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-color);
    transition: color 0.3s ease;
}

[data-theme="dark"] .outcomes-heading {
    color: var(--ochre);
    border-bottom-color: rgba(229, 197, 87, 0.3);
}

.outcomes-list {
    list-style: none;
}

.outcomes-list li {
    padding: var(--spacing-md) 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease, border-color 0.3s ease;
    padding-left: 8px;
}

.outcomes-list li:last-child {
    border-bottom: none;
}

[data-theme="dark"] .outcomes-list li {
    color: var(--text-primary);
}

/* Income Tiers */
.income-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto var(--spacing-xl) auto;
}

.income-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: 0 4px 24px var(--shadow-color);
    border-top: 4px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.income-card.income-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.income-card--starter  { border-top-color: #7A9E6E; }
.income-card--established { border-top-color: var(--olive-drab); }
.income-card--master   { border-top-color: var(--ochre); }

.income-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-color);
}

.income-icon {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
}

.income-tier-label {
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.income-years {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.income-range {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 600;
    color: var(--olive-drab);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.income-card--master .income-range {
    color: var(--ochre);
}

[data-theme="dark"] .income-range {
    color: var(--ochre);
}

.income-range span {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
}

.income-description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.income-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.income-bullets li {
    font-size: 14px;
    color: var(--text-secondary);
}

.income-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.outcomes-grid--compact {
    margin-top: var(--spacing-xl);
}

[data-theme="dark"] .income-card {
    background: var(--bg-secondary);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .testimonials {
    background-color: #0f0e0d;
}

.testimonials .section-title-centered {
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .testimonial-card {
    background: rgba(42, 40, 38, 0.5);
}

.testimonial-quote {
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.testimonial-author {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
    color: var(--gold-accessible);
}

[data-theme="dark"] .testimonial-author {
    color: var(--ochre);
}

.testimonial-status {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.testimonials-note {
    text-align: center;
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 20px;
    color: var(--gold-accessible);
}

[data-theme="dark"] .testimonials-note {
    color: var(--ochre);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    border-left: 3px solid transparent;
    transition: border-left-color 0.25s ease, background 0.25s ease;
    border-radius: 0 6px 6px 0;
    overflow: hidden;
}

.faq-item.faq-open {
    border-left-color: var(--ochre);
    background: var(--bg-secondary);
}

[data-theme="dark"] .faq-item.faq-open {
    background: rgba(255,255,255,0.04);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: var(--spacing-md) var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    font-family: var(--font-headline);
    font-size: 22px;
    font-weight: 400;
    cursor: pointer;
    text-align: left;
    color: var(--text-secondary);
    transition: color var(--transition-smooth);
}

.faq-question:hover,
.faq-question:focus-visible {
    color: var(--terracotta);
    outline: none;
}

[data-theme="dark"] .faq-question:hover,
[data-theme="dark"] .faq-question:focus-visible {
    color: #C77A52;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--ochre);
    transition: transform 0.3s ease;
}

.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    padding: 0 var(--spacing-md);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-primary);
    transition: max-height 0.35s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer[hidden] {
    display: block !important;
    visibility: hidden;
}

.faq-item.faq-open .faq-answer {
    max-height: 400px;
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    opacity: 1;
    visibility: visible;
}

.faq-answer p strong {
    color: var(--olive-drab);
}

[data-theme="dark"] .faq-answer p strong {
    color: var(--ochre);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #2a2520;
}

.cta-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hands-holding-plant.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.6;
}

[data-theme="dark"] .cta-background-image {
    opacity: 0.6;
}

.cta-video {
    display: none; /* Video no longer used */
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(25, 51, 37, 0.75) 0%, rgba(25, 51, 37, 0.85) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

[data-theme="dark"] .cta-overlay {
    background: linear-gradient(to bottom, rgba(25, 51, 37, 0.75) 0%, rgba(25, 51, 37, 0.85) 100%);
}

[data-theme="dark"] .final-cta {
    background: #1a2e26;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-headline);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-highlight {
    color: #D4A373;
    font-style: italic;
}

[data-theme="dark"] .cta-title {
    color: #FFFFFF;
}

.cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

[data-theme="dark"] .cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.btn-cta-primary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 48px;
    background: var(--terracotta);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-cta-primary:hover {
    background: var(--olive-drab);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.4);
}

.btn-cta-secondary {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 48px;
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.download-icon {
    width: 16px;
    height: 16px;
}

.cta-meta {
    font-family: var(--font-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cta-icon {
    font-size: 14px;
}

.cta-divider {
    color: rgba(255, 255, 255, 0.4);
}

.cta-trust {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    font-size: 14px;
}

/* CTA Footer - vintage botanical pattern */
.cta-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    background-image: linear-gradient(to bottom, rgba(244, 239, 234, 0.92) 0%, rgba(232, 226, 214, 0.95) 100%),
        url('assets/images/footer-botanical-pattern.png');
    background-size: auto, 280px auto;
    background-position: center, 0 0;
    background-repeat: no-repeat, repeat;
}

[data-theme="dark"] .cta-footer {
    background-image: linear-gradient(to bottom, rgba(25, 51, 37, 0.9) 0%, rgba(31, 61, 50, 0.92) 100%),
        url('assets/images/footer-botanical-pattern.png');
    background-size: auto, 280px auto;
}

.footer-left {
    text-align: left;
}

.footer-title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 300;
    color: var(--brand-midnight);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.footer-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(25, 51, 37, 0.7);
    font-style: italic;
}

[data-theme="dark"] .footer-title {
    color: var(--brand-paper);
}

[data-theme="dark"] .footer-subtitle {
    color: rgba(232, 228, 219, 0.75);
}

.footer-right {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.footer-link {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(25, 51, 37, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--brand-midnight);
}

[data-theme="dark"] .footer-link {
    color: rgba(232, 228, 219, 0.8);
}

[data-theme="dark"] .footer-link:hover {
    color: var(--brand-paper);
}

/* ============================================
   FOOTER (OLD - KEEP FOR NOW)
   ============================================ */
.footer {
    display: none; /* Hidden - footer is now inside CTA section */
}

.cta-trust {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--sage-mist);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .footer {
    background-color: #0f0e0d;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--ochre);
}

[data-theme="dark"] .footer-links a:hover {
    color: #E5C557;
}

/* ============================================
   BIO MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 51, 37, 0.95);
    animation: fadeIn 0.3s ease-out;
}

[data-theme="dark"] .modal {
    background-color: rgba(10, 10, 10, 0.97);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    padding: var(--spacing-xl);
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease-out;
    box-shadow: 0 20px 60px var(--shadow-color);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="dark"] .modal-content {
    background-color: rgba(42, 40, 38, 0.98);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: var(--text-primary);
    cursor: pointer;
    transition: color var(--transition-smooth);
}

.modal-close:hover {
    color: var(--terracotta);
}

[data-theme="dark"] .modal-close:hover {
    color: #C77A52;
}

#bioContent h2 {
    font-family: var(--font-headline);
    font-size: 36px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

#bioContent h3 {
    font-family: var(--font-ui);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ochre);
    margin-bottom: var(--spacing-lg);
    transition: color 0.3s ease;
}

[data-theme="dark"] #bioContent h3 {
    color: #E5C557;
}

#bioContent p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

/* ============================================
   VIDEO TESTIMONIALS SECTION
   ============================================ */
.video-testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.video-testimonial-card {
    background-color: var(--card-bg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .video-testimonial-card {
    background-color: rgba(42, 40, 38, 0.8);
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px var(--shadow-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: var(--spacing-md);
}

.video-info h4 {
    font-family: var(--font-headline);
    font-size: 20px;
    color: var(--olive-drab);
    margin-bottom: var(--spacing-xs);
}

.video-fallback-link {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.2s ease;
}
.video-fallback-link:hover {
    color: var(--ochre);
    text-decoration: underline;
}

.video-author {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: var(--spacing-xs);
}

.video-external-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    margin-top: 6px;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.video-external-link:hover {
    opacity: 1;
    color: var(--olive-drab);
}

[data-theme="dark"] .video-external-link:hover {
    color: var(--ochre);
}

.video-location {
    font-size: 14px;
    color: var(--sage-mist);
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background-color: var(--olive-drab);
    margin-top: var(--spacing-xl);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .testimonial-stats {
    background-color: #142b22;
}

.stat-box {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-big {
    display: block;
    font-family: var(--font-headline);
    font-size: 56px;
    font-weight: 600;
    color: var(--ochre);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    transition: color 0.3s ease;
}

[data-theme="dark"] .stat-big {
    color: #E5C557;
}

.stat-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-paper);
    transition: color 0.3s ease;
}

[data-theme="dark"] .stat-label {
    color: var(--brand-stone);
}

/* ============================================
   SOCIAL PROOF NOTIFICATIONS
   ============================================ */
#socialProofContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1500;
    pointer-events: none;
}

.social-proof-notification {
    background: var(--card-bg);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--shadow-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    opacity: 0;
    border: 1px solid var(--border-color);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    transform: translateX(-100px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid var(--ochre);
}

.social-proof-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.social-proof-notification.hide {
    opacity: 0;
    transform: translateX(-100px);
}

.social-proof-notification:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: notificationIconBounce 0.6s ease-out;
}

@keyframes notificationIconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.notification-action {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.notification-time {
    font-size: 11px;
    color: var(--sage-mist);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1500;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
}

.whatsapp-widget:hover {
    background: #20BA5A;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Pulse animation for WhatsApp widget */
.whatsapp-widget::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50px;
    transform: translate(-50%, -50%);
    animation: whatsappPulse 2s ease-out infinite;
    opacity: 0;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        height: 100vh;
        max-height: 100vh;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: 100vh;
        max-height: 100vh;
    }
    
    .hero-left {
        min-height: auto;
        max-height: none;
    }
    
    .hero-right {
        min-height: 350px;
        max-height: none;
    }

    .hero-quote {
        bottom: 18px;
        right: 18px;
        left: auto;
        width: min(280px, calc(100% - 36px));
        max-width: calc(100% - 36px);
        padding: 12px 16px 14px;
    }
    
    .quote-text {
        font-size: 14px;
    }
    
    /* Hero stats in left column - compact on tablet */
    .hero-stats {
        margin-top: var(--spacing-sm);
        padding: 16px 20px;
    }
    
    .hero-stats .rating-number {
        font-size: 28px;
    }
    
    .hero-stats .stat-number {
        font-size: 32px;
    }
    
    .hero-stats .stats-grid {
        gap: 14px;
    }
    
    .transformation-grid,
    .experience-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .mentor-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .journey-stage {
        grid-template-columns: 60px 1fr;
    }
    
    .journey-line-track {
        left: 28px;
    }
    
    .outcomes-column {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Adjust social proof position on tablet */
    #socialProofContainer {
        bottom: 20px;
        left: 15px;
    }

    .social-proof-notification {
        max-width: 300px;
    }

    /* WhatsApp widget on tablet */
    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    /* Hero section */
    .hero-left {
        padding: var(--spacing-lg);
    }

    .logo-img {
        max-width: 120px;
    }

    .btn-hero {
        padding: 16px 32px;
        font-size: 14px;
    }

    .hero-meta {
        font-size: 11px;
        padding: 10px 16px;
        margin-top: var(--spacing-sm);
    }

    /* Reduce animation complexity on mobile */
    .hero-meta::before,
    .hero-meta::after {
        animation: none;
    }

    /* Hero quote on mobile — stay compact on carousel */
    .hero-quote {
        bottom: 14px;
        right: 14px;
        left: auto;
        width: min(260px, calc(100% - 28px));
        max-width: calc(100% - 28px);
        padding: 12px 14px;
    }
    
    .quote-text {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .quote-mark {
        font-size: 32px;
    }
    
    .quote-author {
        font-size: 11px;
    }

    .quote-decoration {
        font-size: 32px;
        bottom: 15px;
        right: 20px;
    }
    
    /* Hero stats in left column - compact on mobile */
    .hero-stats {
        margin-top: var(--spacing-sm);
        padding: 14px 18px;
    }
    
    .hero-stats .stat-rating {
        flex-direction: row;
        gap: 8px;
    }
    
    .hero-stats .stars {
        font-size: 16px;
    }
    
    .hero-stats .rating-number {
        font-size: 26px;
    }
    
    .hero-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .hero-stats .stat-number {
        font-size: 24px;
    }
    
    .hero-stats .stat-label {
        font-size: 9px;
    }

    /* Sections padding */
    .transformation,
    .mentors,
    .curriculum-interactive,
    .experience,
    .outcomes,
    .testimonials,
    .video-testimonials,
    .faq {
        padding: var(--spacing-xl) 0;
    }
    
    /* CTA Section Mobile */
    .final-cta {
        min-height: 90vh;
    }
    
    .cta-content {
        padding: var(--spacing-lg);
    }
    
    .cta-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: var(--spacing-sm);
    }
    
    .cta-subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: 0 var(--spacing-sm);
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 14px 32px;
        font-size: 12px;
        justify-content: center;
    }
    
    .cta-meta {
        font-size: 10px;
        flex-direction: column;
        gap: 4px;
    }
    
    .cta-divider {
        display: none;
    }
    
    .cta-trust {
        gap: var(--spacing-md);
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        font-size: 10px;
    }
    
    .cta-footer {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .footer-left {
        text-align: center;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-subtitle {
        font-size: 11px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .footer-link {
        font-size: 9px;
    }

    /* Mentors grid */
    .mentors-grid-enhanced {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .mentor-card-featured {
        grid-template-columns: 1fr;
        padding: var(--spacing-md);
    }

    .mentor-name {
        font-size: 22px;
    }

    /* Simplify effects on mobile for performance */
    .spotlight-pulse,
    .spotlight-glow {
        animation: none;
    }

    .spotlight-pulse::before,
    .spotlight-glow::before {
        display: none;
    }

    /* Video testimonials */
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .stat-big {
        font-size: 42px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-quote {
        font-size: 18px;
    }
    
    /* CTA buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    /* Journey stats */
    .journey-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .journey-line-track {
        left: 22px;
    }

    .journey-stats .stat-number {
        font-size: 36px;
    }

    /* Stage content */
    .stage-content {
        padding: var(--spacing-md);
    }

    .stage-title {
        font-size: 22px;
    }

    .module-item {
        font-size: 15px;
    }

    /* Modal */
    .modal-content {
        padding: var(--spacing-lg);
        max-width: 95%;
        max-height: 90vh;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 32px;
    }

    #bioContent h2 {
        font-size: 28px;
    }

    /* Sticky header */
    .sticky-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .sticky-text {
        align-items: center;
    }

    .btn-primary {
        width: 100%;
    }

    /* Authority logos */
    .logo-slide {
        min-width: 200px;
    }

    .logo-slide img {
        width: 60px;
        height: 60px;
    }

    /* FAQ */
    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 16px;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    :root {
        --spacing-lg: 32px;
        --spacing-xl: 48px;
        --spacing-xxl: 72px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title-centered {
        font-size: 28px;
    }

    .btn {
        padding: 16px 24px;
        font-size: 12px;
    }

    /* Hero quote on very small screens */
    .hero-quote {
        bottom: 12px;
        right: 12px;
        left: auto;
        width: min(240px, calc(100% - 24px));
        max-width: calc(100% - 24px);
        padding: 10px 12px;
    }

    .quote-text {
        font-size: 12px;
        line-height: 1.35;
    }

    .quote-mark {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .quote-author {
        font-size: 9px;
    }

    .quote-decoration {
        font-size: 22px;
        bottom: 6px;
        right: 8px;
    }

    .journey-stats {
        grid-template-columns: 1fr;
    }

    .credential-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .experience-card {
        padding: var(--spacing-md);
    }

    /* Social proof on small mobile */
    #socialProofContainer {
        bottom: 90px; /* Above WhatsApp widget */
        left: 10px;
    }

    .social-proof-notification {
        max-width: calc(100vw - 20px);
        padding: 12px 16px;
    }

    .notification-icon {
        font-size: 24px;
    }

    .notification-name {
        font-size: 13px;
    }

    .notification-action {
        font-size: 12px;
    }

    /* WhatsApp widget on small mobile */
    .whatsapp-widget {
        padding: 12px 16px;
        font-size: 13px;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .whatsapp-text {
        display: none; /* Hide text on very small screens */
    }

    .whatsapp-widget {
        border-radius: 50%; /* Make circular on mobile */
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

/* Landscape mobile optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }

    .hero-split {
        min-height: auto;
    }

    .hero-left {
        padding: var(--spacing-md);
    }

    .hero-right {
        min-height: 280px;
    }
}

/* Carousel image area: tighter min-height on small phones (portrait images crop cleanly) */
@media (max-width: 600px) {
    .hero-right {
        min-height: 280px;
    }
}

/* Desktop split: ensure hero media has a sensible minimum while column stays full viewport */
@media (min-width: 1025px) {
    .hero-media {
        min-height: 500px;
    }
}

/* ============================================
   TOP NAVIGATION BAR WITH AUTH
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Scrolled: header becomes transparent (frosted) */
.top-nav.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    background: #ffffff !important;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.nav-logo:hover {
    background: var(--bg-tertiary) !important;
}

.nav-logo-img {
    max-height: 40px;
    width: auto;
    background: transparent !important;
    filter: brightness(1.1) contrast(1.2) saturate(1.3) drop-shadow(0 2px 6px rgba(61, 113, 93, 0.3));
    transition: filter 0.3s ease;
}

[data-theme="dark"] .nav-logo {
    background: #ffffff !important;
}

[data-theme="dark"] .nav-logo:hover {
    background: var(--brand-stone) !important;
}

[data-theme="dark"] .nav-logo-img {
    filter: brightness(1.3) contrast(1.4) saturate(1.5) drop-shadow(0 2px 10px rgba(184, 196, 176, 0.4));
    opacity: 0.95;
}

.nav-logo-text {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-midnight);
    transition: color 0.3s ease;
}

/* Nav is white / transparent: dark text and buttons */
.top-nav .btn-login {
    color: var(--brand-midnight);
    border-color: rgba(0, 0, 0, 0.2);
}
.top-nav .btn-login:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.3);
}
.top-nav .theme-toggle {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}
.top-nav .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.25);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-auth {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a.btn-auth {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background: var(--bg-tertiary);
    border-color: var(--olive-drab);
}

.btn-register {
    background: var(--terracotta);
    color: var(--raw-linen);
}

a.btn-register,
a.btn-register:visited {
    color: var(--raw-linen);
}

[data-theme="dark"] a.btn-register,
[data-theme="dark"] a.btn-register:visited {
    color: var(--text-primary);
}

[data-theme="dark"] .btn-register {
    color: var(--text-primary);
}

.btn-register:hover {
    background: var(--olive-drab);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

/* User Menu (when logged in) */
.user-menu {
    position: relative;
}

.user-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.user-avatar:hover {
    background: var(--bg-tertiary);
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ochre);
}

.user-avatar span {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.user-avatar.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 20px var(--shadow-color);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 14px;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: var(--bg-tertiary);
}

.dropdown-icon {
    font-size: 16px;
    width: 20px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

/* ============================================
   AUTHENTICATION MODALS
   ============================================ */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

[data-theme="dark"] .auth-modal {
    background-color: rgba(0, 0, 0, 0.7);
}

.auth-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.auth-modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 10px 40px var(--shadow-color);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.auth-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.auth-modal-close:hover {
    color: var(--terracotta);
}

.auth-modal-title {
    font-family: var(--font-headline);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.auth-modal-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Google Sign-In Styling */
.google-signin-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.auth-divider span {
    padding: 0 16px;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Auth Form Styling */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input {
    font-family: var(--font-body);
    font-size: 16px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--olive-drab);
    box-shadow: 0 0 0 3px rgba(61, 113, 93, 0.1);
}

[data-theme="dark"] .form-group input:focus {
    border-color: var(--ochre);
    box-shadow: 0 0 0 3px rgba(229, 197, 87, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--terracotta);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--olive-drab);
    text-decoration: underline;
}

.btn-submit {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 32px;
    background: var(--terracotta);
    color: var(--raw-linen);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

[data-theme="dark"] .btn-submit {
    color: var(--text-primary);
}

.btn-submit:hover {
    background: var(--olive-drab);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

.auth-switch {
    text-align: center;
    margin-top: 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for auth */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }

    .nav-logo-text {
        display: none;
    }

    .auth-modal-content {
        padding: 24px;
        width: 95%;
    }

    .auth-modal-title {
        font-size: 24px;
    }

    .btn-auth {
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Adjust body padding for fixed nav */
body {
    padding-top: 65px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
}

/* ============================================
   INCOME TIERS RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .income-tiers {
        grid-template-columns: 1fr 1fr;
    }

    .income-card--master {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .income-tiers {
        grid-template-columns: 1fr;
    }

    .income-card--master {
        grid-column: auto;
    }

    .income-range {
        font-size: 28px;
    }
}

/* ============================================
   HERO SCARCITY RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-scarcity {
        margin: var(--spacing-xs) 0 var(--spacing-sm) 0;
    }

    .scarcity-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-apply-note {
        font-size: 12px;
    }
}

/* ============================================
   FAQ ACCORDION RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .faq-question {
        font-size: 19px;
        padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-sm) var(--spacing-sm);
    }

    .faq-item.faq-open .faq-answer {
        max-height: 600px;
    }
}

