        :root {
            --primary: #0F1B2D;
            --accent: #7C3AED;
            --accent-light: #9B5FF5;
            --accent-glow: rgba(124, 58, 237, 0.15);
            --gold: #E8A838;
            --white: #FFFFFF;
            --off-white: #F4F6F9;
            --gray-100: #E8ECF1;
            --gray-300: #B0B8C4;
            --gray-500: #6B7685;
            --gray-700: #3A4555;
            --success: #22C55E;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--primary);
            background: var(--white);
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.0);
        }

        nav.scrolled {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 20px rgba(0,0,0,0.06);
        }

        .logo {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .logo-img {
            height: 95px;
            width: auto;
            border-radius: 6px;
        }

        .footer-logo-img {
            height: 90px;
            width: auto;
            border-radius: 6px;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-cta {
            background: var(--accent);
            color: var(--white);
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: var(--accent-light);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 6rem 2rem 4rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-glow);
            border: 1px solid rgba(124, 58, 237, 0.2);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease-out;
        }

        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5.5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--primary);
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }

        .hero h1 .highlight {
            color: var(--accent);
            position: relative;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 6px;
            background: rgba(45, 108, 223, 0.15);
            border-radius: 3px;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--gray-500);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .hero-cta-group {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--accent);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
        }

        .cta-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
        }

        .cta-primary svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .cta-primary:hover svg {
            transform: translateX(3px);
        }

        .cta-note {
            font-size: 0.85rem;
            color: var(--gray-300);
        }

        /* SOCIAL PROOF */
        .social-proof {
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--gray-100);
            animation: fadeInUp 0.6s ease-out 0.4s both;
        }

        .social-proof p {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray-300);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .proof-stats {
            display: flex;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-top: 0.2rem;
        }

        /* HOW IT WORKS */
        .section {
            padding: 5rem 2rem;
        }

        .section-dark {
            background: var(--primary);
            color: var(--white);
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .section-dark .section-label {
            color: var(--gold);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 550px;
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        .section-dark .section-subtitle {
            color: var(--gray-300);
        }

        /* WHY SECTION CARDS */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .why-card {
            background: var(--off-white);
            border-radius: 14px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .why-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.06);
        }

        .why-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-glow);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }

        .why-card h3 {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }

        .why-card p {
            font-size: 0.92rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* PROCESS */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            counter-reset: step;
        }

        .step {
            position: relative;
            padding: 1.5rem 0;
        }

        .step::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(124, 58, 237, 0.1);
            display: block;
            margin-bottom: 0.8rem;
            line-height: 1;
        }

        .section-dark .step::before {
            color: rgba(232, 168, 56, 0.2);
        }

        .step h3 {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }

        .step p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .section-dark .step p {
            color: var(--gray-300);
        }

        /* TIER SECTION */
        .tier-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .tier-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .tier-card.featured {
            border-color: var(--gold);
            background: rgba(232, 168, 56, 0.05);
        }

        .tier-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -10px;
            left: 1.5rem;
            background: var(--gold);
            color: var(--primary);
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            letter-spacing: 1px;
        }

        .tier-card:hover {
            transform: translateY(-3px);
            border-color: var(--accent-light);
        }

        .tier-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
        }

        .tier-score {
            font-size: 0.85rem;
            color: var(--accent-light);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .tier-card p {
            font-size: 0.9rem;
            color: var(--gray-300);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .tier-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .tier-skill-tag {
            font-size: 0.72rem;
            padding: 0.3rem 0.65rem;
            background: rgba(255,255,255,0.06);
            border-radius: 5px;
            color: var(--gray-300);
            font-weight: 500;
        }

        /* CTA SECTION */
        .cta-section {
            background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
            text-align: center;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-section .section-inner {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 2rem;
            line-height: 1.6;
        }

        .cta-white {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--white);
            color: var(--accent);
            padding: 1rem 2.2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 35px rgba(0,0,0,0.2);
        }

        .cta-white svg {
            width: 18px;
            height: 18px;
        }

        /* FOOTER */
        footer {
            background: var(--primary);
            padding: 2.5rem 2rem;
            text-align: center;
        }

        footer .logo {
            color: var(--white);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        footer p {
            color: var(--gray-500);
            font-size: 0.8rem;
        }

        /* ANIMATIONS */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(25px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            nav { padding: 1rem; }
            .hero { padding: 5rem 1.5rem 3rem; }
            .proof-stats { gap: 2rem; }
            .section { padding: 3.5rem 1.5rem; }
            .hero-cta-group { flex-direction: column; align-items: flex-start; }
            .process-steps { gap: 1rem; }
        }
