/* ═══════════════════════════════════════════════════════════
   LIGHTHOUSE ACADEMY — DESIGN SYSTEM
   Dark cinematic theme with warm gold accents
   ═══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
    /* Core Dark Palette */
    --bg-deep: #0a0e17;
    --bg-dark: #0f1422;
    --bg-card: #151b2e;
    --bg-card-hover: #1a2238;
    --bg-glass: rgba(21, 27, 46, 0.7);

    /* Warm Gold Accent */
    --gold: #d4a44a;
    --gold-light: #e8c97a;
    --gold-glow: rgba(212, 164, 74, 0.3);
    --gold-subtle: rgba(212, 164, 74, 0.08);

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: #a8a29e;
    --text-muted: #6b6560;
    --text-accent: var(--gold-light);

    /* Functional */
    --success: #34d399;
    --urgent: #ef4444;
    --border: rgba(212, 164, 74, 0.15);
    --border-hover: rgba(212, 164, 74, 0.35);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--gold-glow);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: clamp(4rem, 8vw, 8rem);
    --container-max: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--gold);
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.section-label {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.section-label::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
    color: var(--bg-deep);
}

.btn-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: var(--shadow-md);
    }

    50% {
        box-shadow: var(--shadow-glow), var(--shadow-lg);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--bg-deep);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--gold-light);
    border-color: var(--border-hover);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    font-size: 0.85em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1: NAVIGATION
   ═══════════════════════════════════════════════════════════ */
#nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

#nav-header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo:hover {
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: logo-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

@keyframes logo-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(212, 164, 74, 0.2));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(212, 164, 74, 0.5));
        transform: scale(1.05);
    }
}

.logo-accent {
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--gold), #c4913a) !important;
    color: var(--bg-deep) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta-btn:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2: HERO
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 164, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 164, 74, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-deep) 0%, #0d1220 50%, var(--bg-dark) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 40%, rgba(212, 164, 74, 0.03) 50%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem clamp(1rem, 4vw, 3rem);
    max-width: 850px;
}

.hero-scripture {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.hero-scripture span {
    color: var(--text-muted);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.4;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Hero fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up 0.8s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3: PAIN POINTS
   ═══════════════════════════════════════════════════════════ */
.painpoints-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
    position: relative;
}

.painpoints-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.painpoints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    animation-delay: var(--delay, 0s);
}

.pain-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--bg-card-hover);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2);
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.pain-card strong {
    color: var(--text-primary);
}

.painpoints-transition {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    color: var(--gold-light);
    font-style: italic;
}

.painpoints-transition em {
    color: var(--gold);
    font-weight: 600;
}

/* Crisis Notice */
.crisis-notice {
    max-width: var(--container-max);
    margin: 2rem auto 0;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
}

.crisis-notice p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.7;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.crisis-notice a {
    color: var(--text-secondary);
    text-decoration: underline;
    font-weight: 600;
}

.crisis-notice a:hover {
    color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4: TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.stories-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 164, 74, 0.04) 0%, transparent 60%),
        var(--bg-deep);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimony-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    animation-delay: var(--delay, 0s);
}

.testimony-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.testimony-card:hover::before {
    opacity: 1;
}

.testimony-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimony-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.testimony-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.testimony-before {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(239, 68, 68, 0.3);
}

.testimony-after {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(52, 211, 153, 0.4);
}

.testimony-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), opacity 0.3s var(--ease);
    opacity: 0;
}

.testimony-expanded.open {
    max-height: 300px;
    opacity: 1;
}

.testimony-expanded p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.5rem 0 1rem;
    line-height: 1.7;
}

.testimony-toggle {
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    padding: 0;
}

.testimony-toggle:hover {
    color: var(--gold);
}

/* Video Teaser */
.video-teaser {
    margin: 3rem 0;
}

.video-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background:
        radial-gradient(circle at center, rgba(212, 164, 74, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #1a1a2e, #0d1220);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.video-thumbnail:hover {
    background-color: rgba(212, 164, 74, 0.05);
}

.play-btn-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes ring-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    padding-left: 4px;
    box-shadow: var(--shadow-glow);
}

.video-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

.video-teaser-text {
    padding: 2.5rem 2.5rem 2.5rem 0;
}

.video-teaser-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.video-teaser-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Pull Quote */
.pull-quote {
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-primary);
    line-height: 1.5;
    font-style: italic;
}

.pull-quote em {
    color: var(--gold-light);
    font-weight: 600;
}

.pull-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5: THE JOURNEY
   ═══════════════════════════════════════════════════════════ */
.journey-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
    position: relative;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.journey-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light), var(--gold));
    opacity: 0.3;
}

.journey-phase {
    position: relative;
    padding-left: 80px;
    padding-bottom: 3rem;
    animation-delay: var(--delay, 0s);
}

.journey-phase:last-child {
    padding-bottom: 0;
}

.phase-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 0 4px var(--bg-dark), var(--shadow-glow);
    z-index: 2;
}

.phase-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s var(--ease);
}

.phase-content:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.phase-duration {
    display: inline-block;
    background: var(--gold-subtle);
    color: var(--gold-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.phase-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.phase-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.phase-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.phase-highlights li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.phase-highlights li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 3px;
}

.journey-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.detail-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.detail-card.urgent {
    border-color: rgba(239, 68, 68, 0.3);
    animation: urgent-pulse 2s ease-in-out infinite;
}

@keyframes urgent-pulse {

    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
    }
}

.detail-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.detail-card strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.detail-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6: WHAT YOU'LL GAIN
   ═══════════════════════════════════════════════════════════ */
.growth-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 164, 74, 0.03) 0%, transparent 50%),
        var(--bg-deep);
}

.growth-clusters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.cluster-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    animation-delay: var(--delay, 0s);
}

.cluster-card:hover {
    border-color: var(--border-hover);
}

.cluster-card.open {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.cluster-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
}

.cluster-icon {
    font-size: 1.8rem;
}

.cluster-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    flex: 1;
}

.cluster-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--gold-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.cluster-card.open .cluster-toggle {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--bg-deep);
    border-color: var(--gold);
}

.cluster-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.cluster-card.open .cluster-body {
    max-height: 400px;
}

.cluster-body ul {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cluster-body li {
    color: var(--text-secondary);
    font-size: 0.92rem;
    padding-left: 1.4rem;
    position: relative;
}

.cluster-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7: SOCIAL PROOF
   ═══════════════════════════════════════════════════════════ */
.proof-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    display: inline;
}

.stat-plus,
.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-light);
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.proof-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.proof-quote {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    animation-delay: var(--delay, 0s);
}

.proof-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}

.proof-quote p {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

.proof-quote strong {
    color: var(--text-primary);
}

.proof-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-style: normal;
    font-size: 0.85rem;
}

.proof-cta {
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7.5: MEET YOUR GUIDE
   ═══════════════════════════════════════════════════════════ */
.guide-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 164, 74, 0.04) 0%, transparent 60%),
        var(--bg-deep);
}

.guide-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guide-video {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.guide-bio h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guide-title {
    color: var(--gold-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.guide-role {
    color: var(--text-secondary);
    font-weight: 400;
}

.guide-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   ASSESSMENT QUIZ
   ═══════════════════════════════════════════════════════════ */
.assessment-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.assessment-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.assessment-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.assessment-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    transition: width 0.5s var(--ease);
}

.assessment-question {
    display: none;
    text-align: center;
    animation: fadeSlideIn 0.4s var(--ease);
}

.assessment-question.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.question-number {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.assessment-question h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-style: italic;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
}

.scale-labels span {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scale-options {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.scale-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-deep);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.scale-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--gold-glow);
}

.scale-btn.selected {
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    border-color: var(--gold);
    transform: scale(1.15);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Assessment Results */
.assessment-result {
    text-align: center;
    animation: fadeSlideIn 0.6s var(--ease);
}

.result-score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px var(--gold-glow);
    animation: pop-in 0.5s var(--ease-bounce);
}

.result-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.result-score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.assessment-result h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.assessment-result>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.result-cta {
    background: rgba(212, 164, 74, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.result-cta-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.assessment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.assessment-form .form-group {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 8: LEAD CAPTURE / CTA
   ═══════════════════════════════════════════════════════════ */
.cta-section {
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(212, 164, 74, 0.06) 0%, transparent 60%),
        var(--bg-deep);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: start;
}

.cta-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #c4913a);
    color: var(--bg-deep);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 300;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-privacy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Thank You State */
.thankyou-state {
    text-align: center;
    padding: 1rem 0;
}

.thankyou-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pop-in 0.5s var(--ease-bounce);
}

@keyframes pop-in {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.thankyou-state h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.thankyou-state>p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Countdown Timer */
.countdown-wrapper {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(212, 164, 74, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.countdown-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.countdown-text {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
    opacity: 0.5;
    margin-bottom: 1.2rem;
}

.thankyou-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Video Unlock */
.video-unlock {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.video-unlock h4 {
    font-family: var(--font-display);
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.video-embed {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-deep);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Direct Register Card */
.cta-direct {
    animation-delay: var(--delay, 0s);
}

.direct-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.direct-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.direct-card>p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cohort-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--urgent);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: urgent-pulse 2s ease-in-out infinite;
}

.direct-benefits {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.direct-benefits li {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 9: FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    animation-delay: var(--delay, 0s);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s var(--ease);
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-icon {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 10: FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-cta h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--delay, 0s);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING PARTICLE (hero decoration)
   ═══════════════════════════════════════════════════════════ */
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: 0.6;
        transform: translateY(-20vh) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.5);
    }
}

/* ═══════════════════════════════════════════════════════════
   REAL PEOPLE NOTE
   ═══════════════════════════════════════════════════════════ */
.real-people-note {
    color: var(--gold-light) !important;
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gold-subtle);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

/* ═══════════════════════════════════════════════════════════
   LIVE MEETING INVITE
   ═══════════════════════════════════════════════════════════ */
.live-meeting-invite {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(52, 211, 153, 0.04);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 12px;
    text-align: center;
}

.meeting-badge {
    display: inline-block;
    background: rgba(52, 211, 153, 0.1);
    color: var(--success);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.live-meeting-invite h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.live-meeting-invite>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.meeting-note {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 0.75rem !important;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s var(--ease);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .painpoints-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-teaser-content {
        grid-template-columns: 1fr;
    }

    .video-teaser-text {
        padding: 2rem;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .proof-quotes {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .assessment-form-row {
        grid-template-columns: 1fr;
    }

    .scale-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cta-form-wrapper {
        padding: 1.5rem;
    }

    .direct-card {
        padding: 1.5rem;
    }

    .phase-content {
        padding: 1.5rem;
    }

    .pain-card {
        padding: 1.5rem;
    }
}