        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --navy-deepest: #0A1628;
            --navy-deep: #0D1B2A;
            --navy-mid: #1B2838;
            --navy-light: #2A3F5F;
            --gold: #FFB84D;
            --gold-bright: #FFC870;
            --gold-dim: #D89A3E;
            --text-primary: #FFFFFF;
            --text-secondary: #B8C5D6;
            --text-dim: #8B98A8;
        }
        
        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--navy-deepest);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Ambient background effects */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 184, 77, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 184, 77, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('hero-studio-session.jpg') center/cover no-repeat;
            filter: brightness(0.7);
            opacity: 0.45;
            z-index: 0;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--navy-deepest) 0%, transparent 60%, var(--navy-deep) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .hero-eyebrow {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--gold);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.1s backwards;
        }
        
        .hero-subhead {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: 'Outfit', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            color: var(--navy-deepest);
            box-shadow: 
                0 4px 15px rgba(255, 184, 77, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            animation: fadeInUp 0.8s ease-out 0.3s backwards;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 
                0 6px 25px rgba(255, 184, 77, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--navy-light);
        }
        
        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        
        /* Section Spacing */
        section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .section-eyebrow {
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        
        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Problem Section */
        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .problem-card {
            background: var(--navy-deep);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid var(--navy-mid);
        }
        
        .problem-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }
        
        .problem-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        .problem-list {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .problem-list li {
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            position: relative;
            color: var(--text-secondary);
        }
        
        .problem-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
        }
        
        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .step {
            text-align: center;
        }
        
        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            color: var(--navy-deepest);
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            border-radius: 50%;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(255, 184, 77, 0.3);
        }
        
        .step h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .step p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Comparison Table */
        .comparison-table-wrapper {
            background: var(--navy-deep);
            border-radius: 1rem;
            padding: 3rem;
            border: 1px solid var(--navy-mid);
            margin-top: 3rem;
            overflow-x: auto;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .comparison-table th {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            padding: 1.5rem 1rem;
            text-align: left;
            border-bottom: 2px solid var(--navy-light);
        }
        
        .comparison-table th:first-child {
            color: var(--text-secondary);
        }
        
        .comparison-table th:nth-child(2) {
            color: var(--text-dim);
        }
        
        .comparison-table th:nth-child(3) {
            color: var(--gold);
        }
        
        .comparison-table td {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid var(--navy-mid);
            color: var(--text-secondary);
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: var(--navy-deep);
            border: 1px solid var(--navy-mid);
            border-radius: 1rem;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px var(--gold);
        }
        
        .pricing-card.featured {
            border-color: var(--gold);
            box-shadow: 
                0 10px 40px rgba(255, 184, 77, 0.2),
                0 0 0 1px var(--gold);
        }
        
        .pricing-card.featured::before {
            content: '🔥 LAUNCH SPECIAL';
            position: absolute;
            top: -1rem;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            color: var(--navy-deepest);
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-family: 'Outfit', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
        }
        
        .pricing-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .pricing-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .pricing-price {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }
        
        .pricing-price.original {
            font-size: 1.5rem;
            text-decoration: line-through;
            color: var(--text-dim);
            margin-right: 0.5rem;
        }
        
        .pricing-description {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-features li {
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            position: relative;
            color: var(--text-secondary);
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }
        
        .pricing-note {
            font-size: 0.9rem;
            color: var(--text-dim);
            font-style: italic;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--navy-mid);
        }
        
        /* FAQ */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--navy-deep);
            border: 1px solid var(--navy-mid);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .faq-item h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }
        
        .faq-item p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Final CTA */
        .cta-section {
            text-align: center;
            padding: 6rem 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255, 184, 77, 0.05) 0%, transparent 70%);
        }
        
        .cta-section h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 4rem 0;
            }
            
            .comparison-table-wrapper {
                padding: 1.5rem;
            }
            
            .comparison-table {
                font-size: 0.9rem;
            }
            
            .comparison-table th,
            .comparison-table td {
                padding: 1rem 0.5rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 400px;
                text-align: center;
            }
        }
