* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            color: #E8E8E3;
            line-height: 1.7;
            overflow-x: hidden;
            background: #0A1628;
        }
        img { max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; }

        :root {
            --navy-dark: #0A1628;
            --navy: #111D35;
            --navy-mid: #1A2A4A;
            --gold: #D4A843;
            --gold-light: #E8C76A;
            --gold-glow: rgba(212, 168, 67, 0.2);
            --gold-border: rgba(212, 168, 67, 0.15);
            --white: #FFFFFF;
            --off-white: #F8F8F5;
            --text-muted: #5a6580;
            --faint: rgba(255, 255, 255, 0.55);
        }

        .heading-font { font-family: 'Playfair Display', serif; }
        h1, h2, h3 { line-height: 1.2; }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 14px 0;
            border-bottom: 1px solid var(--gold-border);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--white);
        }
        .nav-logo span { color: var(--gold); }
        .nav-cta {
            background: var(--gold);
            color: var(--navy-dark);
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.8rem;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }
        .nav-cta:hover { background: var(--gold-light); }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            background: var(--navy-dark);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 800px;
            background: radial-gradient(ellipse at center, rgba(212,168,67,0.04) 0%, transparent 60%);
            pointer-events: none;
        }
        .hero-content {
            text-align: center;
            padding: 80px 24px 20px;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(212,168,67,0.1);
            color: var(--gold);
            padding: 5px 16px;
            border-radius: 3px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(212,168,67,0.2);
        }
        .hero-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 7vw, 4.5rem);
            font-weight: 900;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 14px;
            line-height: 1.05;
        }
        .hero-title .gold { color: var(--gold); }
        .hero-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.2rem);
            color: var(--faint);
            margin-bottom: 6px;
            font-weight: 300;
            line-height: 1.6;
        }
        .hero-subtitle strong {
            color: var(--white);
            font-weight: 600;
        }

        /* CTA Button with Pulse */
        .hero-cta-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--navy-dark);
            padding: 16px 40px;
            border-radius: 5px;
            font-size: 1.05rem;
            font-weight: 800;
            margin: 20px 0;
            transition: all 0.3s;
            box-shadow: var(--gold-glow);
            letter-spacing: 0.5px;
            animation: pulse-gold 2.5s infinite;
        }
        .hero-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212,168,67,0.4);
        }
        @keyframes pulse-gold {
            0% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
            70% { box-shadow: 0 0 0 12px rgba(212,168,67,0); }
            100% { box-shadow: 0 0 0 0 rgba(212,168,67,0); }
        }
        .hero-cta-btn .strike {
            text-decoration: line-through;
            opacity: 0.5;
            font-weight: 400;
            margin-left: 8px;
            font-size: 0.85rem;
        }

        /* Social Proof */
        .hero-social {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            margin: 12px 0;
        }
        .hero-social-row {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--faint);
            font-size: 0.9rem;
        }
        .hero-social-row strong { color: var(--gold); font-weight: 700; }

        /* Hero Photo */
        .hero-photo-section {
            position: relative;
            z-index: 2;
            width: 100%;
            flex: 1;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
        .hero-photo-wrapper {
            width: 100%;
            max-width: 500px;
            position: relative;
        }
        .hero-photo-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
        }

        /* Compact Info Bar */
        .info-bar {
            background: var(--navy);
            border-top: 1px solid var(--gold-border);
            padding: 14px 24px;
            position: relative;
            z-index: 2;
        }
        .info-bar-inner {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .info-chip {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 12px;
            background: rgba(212,168,67,0.06);
            border-radius: 4px;
            border: 1px solid rgba(212,168,67,0.1);
        }
        .info-chip-icon { font-size: 0.9rem; }
        .info-chip-text {
            font-size: 0.75rem;
            color: var(--faint);
            font-weight: 600;
        }
        .info-separator {
            color: rgba(212,168,67,0.25);
            font-size: 0.8rem;
        }

        /* ===== INCLUDES ===== */
        .includes {
            padding: 70px 24px;
            background: var(--navy-dark);
        }
        .includes-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .include-item {
            background: var(--navy);
            padding: 24px 18px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(212,168,67,0.06);
            transition: all 0.3s;
        }
        .include-item:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            background: var(--navy-mid);
        }
        .include-icon { font-size: 1.8rem; margin-bottom: 10px; }
        .include-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
        .include-item p { font-size: 0.75rem; color: var(--text-muted); }

        /* ===== PREMIUM JOURNEY BOX ===== */
        .journey-section {
            padding: 80px 24px;
            background: var(--navy-dark);
            text-align: center;
        }
        .journey-box {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(212,168,67,0.04);
            border: 1px solid rgba(212,168,67,0.2);
            border-radius: 20px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }
        .journey-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .journey-box::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .journey-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }
        .journey-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        .journey-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .journey-step-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(212,168,67,0.08);
            border: 1px solid rgba(212,168,67,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }
        .journey-step:hover .journey-step-icon {
            background: rgba(212,168,67,0.18);
            border-color: var(--gold);
            transform: scale(1.1);
        }
        .journey-step-text {
            font-size: 0.72rem;
            font-weight: 600;
            color: var(--faint);
            max-width: 100px;
            line-height: 1.3;
        }
        .journey-step-text strong {
            color: var(--gold-light);
            display: block;
            font-size: 0.8rem;
        }
        .journey-arrow {
            color: var(--gold);
            font-size: 1.2rem;
            margin: 0 12px;
            opacity: 0.4;
        }
        .journey-wisdom {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(212,168,67,0.12);
        }
        .journey-wisdom strong {
            color: var(--gold-light);
            font-style: normal;
        }

        /* ===== 1:1 SESSION SECTION ===== */
        .session-section {
            padding: 80px 24px;
            background: var(--navy);
            text-align: center;
            border-top: 1px solid var(--gold-border);
        }
        .session-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--navy-dark);
            border-radius: 16px;
            padding: 40px 32px;
            border: 1px solid rgba(212,168,67,0.18);
            position: relative;
            overflow: hidden;
        }
        .session-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .session-badge {
            display: inline-block;
            background: rgba(212,168,67,0.1);
            color: var(--gold);
            padding: 5px 16px;
            border-radius: 3px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .session-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 8px;
        }
        .session-sub {
            font-size: 0.85rem;
            color: var(--faint);
            margin-bottom: 24px;
        }
        .session-features {
            list-style: none;
            text-align: left;
            max-width: 400px;
            margin: 0 auto 28px;
        }
        .session-features li {
            padding: 8px 0;
            font-size: 0.88rem;
            color: var(--faint);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .session-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: 700;
        }
        .session-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--navy-dark);
            padding: 14px 40px;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 800;
            transition: all 0.3s;
            box-shadow: var(--gold-glow);
        }
        .session-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        /* ===== STUCK ===== */
        .stuck {
            padding: 80px 24px;
            background: var(--navy);
        }
        .section-container { max-width: 900px; margin: 0 auto; }
        .section-label {
            display: inline-block;
            background: rgba(212,168,67,0.1);
            color: var(--gold);
            padding: 5px 14px;
            border-radius: 3px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            color: var(--white);
            margin-bottom: 30px;
        }
        .stuck-grid { display: grid; gap: 12px; }
        .stuck-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 20px;
            background: var(--navy-dark);
            border-radius: 10px;
            border-left: 3px solid var(--gold);
            transition: all 0.3s;
        }
        .stuck-item:hover { background: var(--navy-mid); transform: translateX(4px); }
        .stuck-emoji { font-size: 1.3rem; min-width: 28px; text-align: center; }
        .stuck-item p { font-size: 0.9rem; color: var(--faint); line-height: 1.6; }
        .stuck-item p strong { color: var(--white); }

        /* ===== MODULES ===== */
        .modules {
            padding: 80px 24px;
            background: var(--navy-dark);
        }
        .modules-header { text-align: center; margin-bottom: 40px; }
        .modules-header .section-title { margin-bottom: 8px; }
        .modules-header p { color: var(--text-muted); max-width: 480px; margin: 0 auto; font-size: 0.9rem; }
        .modules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            max-width: 960px;
            margin: 0 auto;
        }
        .module-box {
            background: var(--navy);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(212,168,67,0.08);
            transition: all 0.35s;
        }
        .module-box:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(212,168,67,0.06);
        }
        .module-box-header { padding: 24px 24px 16px; position: relative; }
        .module-box-header::after {
            content: '';
            position: absolute;
            bottom: 0; left: 24px; right: 24px;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), transparent);
        }
        .module-box-num {
            font-size: 0.65rem; font-weight: 700; color: var(--gold);
            text-transform: uppercase; letter-spacing: 3px; margin-bottom: 8px;
        }
        .module-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 6px; }
        .module-box-header > p { color: var(--text-muted); font-size: 0.82rem; }
        .module-box-body { padding: 20px 24px 24px; }
        .module-learn { list-style: none; }
        .module-learn li {
            padding: 6px 0; color: var(--faint); font-size: 0.85rem;
            display: flex; align-items: center; gap: 8px;
        }
        .module-learn li::before {
            content: ''; width: 5px; height: 5px; background: var(--gold);
            border-radius: 50%; flex-shrink: 0;
        }

        /* ===== BONUS ===== */
        .bonus {
            padding: 50px 24px;
            background: var(--navy);
            text-align: center;
            border-top: 1px solid rgba(212,168,67,0.06);
        }
        .bonus h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 20px; }
        .bonus h3 span { color: var(--gold); }
        .bonus-grid {
            max-width: 750px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
        }
        .bonus-item {
            background: rgba(212,168,67,0.04);
            padding: 14px 12px; border-radius: 8px;
            color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
            border: 1px solid rgba(212,168,67,0.08);
        }

        /* ===== TRANSFORMATION ===== */
        .transformation { padding: 80px 24px; background: var(--navy-dark); }
        .transform-grid { max-width: 880px; margin: 0 auto; display: grid; gap: 18px; }
        .transform-card {
            display: flex; gap: 22px; align-items: flex-start;
            padding: 28px; background: var(--navy);
            border-radius: 14px; border: 1px solid rgba(212,168,67,0.06);
            transition: all 0.3s;
        }
        .transform-card:hover { border-color: rgba(212,168,67,0.2); }
        .transform-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem; font-weight: 900; color: var(--gold);
            line-height: 1; opacity: 0.3; min-width: 50px;
        }
        .transform-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
        .transform-card p { color: var(--faint); font-size: 0.88rem; line-height: 1.7; }

        /* ===== ABOUT ===== */
        .about {
            padding: 80px 24px;
            background: var(--navy);
            border-top: 1px solid var(--gold-border);
        }
        .about-container {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start;
        }
        .about-photo img {
            width: 100%; border-radius: 14px;
            border: 1px solid rgba(212,168,67,0.15);
        }
        .about-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 12px; }
        .about-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; }
        .about-content p { color: var(--faint); font-size: 0.9rem; margin-bottom: 14px; }
        .about-quote {
            margin-top: 20px; padding: 16px 20px;
            background: rgba(212,168,67,0.06);
            border-left: 3px solid var(--gold);
            border-radius: 0 8px 8px 0;
            font-size: 0.85rem; color: var(--gold-light); font-style: italic;
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            padding: 40px 24px;
            background: var(--navy-dark);
            border-top: 1px solid var(--gold-border);
        }
        .trust-grid {
            max-width: 800px; margin: 0 auto;
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
            text-align: center;
        }
        .trust-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); }
        .trust-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

        /* ===== IMAGINE ===== */
        .imagine {
            padding: 70px 24px;
            background: var(--navy);
            text-align: center;
        }
        .imagine h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            color: var(--white); margin-bottom: 28px;
        }
        .imagine-list { max-width: 500px; margin: 0 auto; text-align: left; }
        .imagine-item {
            padding: 14px 18px;
            color: var(--faint); font-size: 0.9rem;
            border-left: 2px solid var(--gold);
            margin-bottom: 8px;
            transition: all 0.3s;
        }
        .imagine-item:hover { background: rgba(212,168,67,0.04); padding-left: 22px; }

        /* ===== PRICING ===== */
        .pricing {
            padding: 80px 24px;
            background: var(--navy-dark);
            text-align: center;
        }
        .pricing-grid {
            display: grid;
            gap: 20px;
            max-width: 500px;
            margin: 0 auto;
        }
        .price-card {
            background: var(--navy);
            border-radius: 16px;
            padding: 36px 28px;
            border: 2px solid rgba(212,168,67,0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        .price-card:hover { border-color: var(--gold); }
        .price-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }
        .price-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 14px; }
        .price-amount { font-size: 3rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
        .price-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 22px; }
        .price-features { list-style: none; text-align: left; margin-bottom: 26px; }
        .price-features li {
            padding: 7px 0; color: var(--faint); font-size: 0.85rem;
            display: flex; align-items: center; gap: 10px;
        }
        .price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
        .price-btn {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 5px;
            font-size: 0.95rem;
            font-weight: 800;
            transition: all 0.3s;
        }
        .price-btn.primary {
            background: var(--gold);
            color: var(--navy-dark);
            box-shadow: var(--gold-glow);
        }
        .price-btn.primary:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            padding: 80px 24px;
            background: var(--navy);
            text-align: center;
            border-top: 1px solid var(--gold-border);
        }
        .final-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 16px; }
        .final-cta p { color: var(--faint); font-size: 0.9rem; max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }
        .final-cta-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--navy-dark);
            padding: 16px 40px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 800;
            transition: all 0.3s;
            box-shadow: var(--gold-glow);
        }
        .final-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
        .final-cta-sub { color: var(--text-muted); font-size: 0.8rem; margin-top: 16px; }

        /* ===== FOOTER ===== */
        .footer {
            padding: 24px;
            text-align: center;
            background: var(--navy-dark);
            border-top: 1px solid var(--gold-border);
        }
        .footer p { color: var(--text-muted); font-size: 0.75rem; }
        .footer a { color: var(--gold); }

        /* ===== STICKY MOBILE CTA ===== */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10,22,40,0.97);
            backdrop-filter: blur(12px);
            border-top: 1px solid var(--gold-border);
            padding: 10px 16px;
            z-index: 1000;
            display: none;
        }
        .sticky-cta.show { display: block; }
        .sticky-cta-inner {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .sticky-cta-text { color: var(--faint); font-size: 0.85rem; }
        .sticky-cta-text span { color: var(--gold); }
        .sticky-cta-btn {
            background: var(--gold);
            color: var(--navy-dark);
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 800;
            font-size: 0.8rem;
            transition: all 0.3s;
        }
        .sticky-cta-btn:hover { background: var(--gold-light); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .includes-grid { grid-template-columns: repeat(2, 1fr); }
            .modules-grid { grid-template-columns: 1fr; }
            .bonus-grid { grid-template-columns: repeat(2, 1fr); }
            .about-container { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .journey-steps { flex-direction: column; gap: 16px; }
            .journey-arrow { transform: rotate(90deg); margin: 0; }
        }
        @media (max-width: 480px) {
            .includes-grid { grid-template-columns: 1fr 1fr; }
            .bonus-grid { grid-template-columns: 1fr 1fr; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
        }
