/* ===== ROOT VARIABLES ===== */
        :root {
            --primary-blue: #2BC5FF;
            --primary-purple: #A64DFF;
            --accent-pink: #FF4FD8;
            --white: #FFFFFF;
            --dark: #0A0A0F;
            --dark-card: #12121A;
            --dark-surface: #1A1A2E;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.08);
            --text-muted: #A0A0B8;
            --shadow-premium: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
            --radius-xl: 20px;
            --radius-2xl: 28px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            display: block;
        }

        /* ===== UTILITY ===== */
        .gradient-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        }

        .gradient-pink {
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-pink {
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-border {
            position: relative;
        }
        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1.5px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-pink));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(1.2);
            -webkit-backdrop-filter: blur(16px) saturate(1.2);
            border: 1px solid var(--glass-border);
        }

        .glass-dark {
            background: rgba(10, 10, 15, 0.6);
            backdrop-filter: blur(20px) saturate(1.3);
            -webkit-backdrop-filter: blur(20px) saturate(1.3);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hover-lift {
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
        }
        .hover-lift:hover {
            transform: translateY(-6px) scale(1.01);
        }

        .hover-glow {
            transition: box-shadow 0.4s ease, transform 0.3s ease;
        }
        .hover-glow:hover {
            box-shadow: 0 0 40px rgba(43, 197, 255, 0.15), 0 0 80px rgba(166, 77, 255, 0.08);
            transform: translateY(-2px);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes pulse-glow {
            0%,
            100% {
                box-shadow: 0 0 20px rgba(43, 197, 255, 0.2);
            }
            50% {
                box-shadow: 0 0 50px rgba(166, 77, 255, 0.4), 0 0 80px rgba(255, 79, 216, 0.15);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        .animate-fade-up {
            opacity: 0;
            animation: fadeUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .animate-pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .animate-shimmer {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            background-size: 200% 100%;
            animation: shimmer 3s infinite;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
        .delay-5 {
            animation-delay: 0.5s;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border-radius: 10px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 15, 0.75);
            backdrop-filter: blur(24px) saturate(1.4);
            -webkit-backdrop-filter: blur(24px) saturate(1.4);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: background 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 15, 0.92);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
        }

        .nav-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 1.35rem;
            letter-spacing: -0.5px;
        }
        .nav-logo img {
            height: 40px;
            width: auto;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 32px;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .nav-links a {
            transition: color 0.25s ease;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple));
            transition: width 0.3s ease;
        }
        .nav-links a:hover {
            color: var(--white);
        }
        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: none;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            padding: 10px 28px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 20px rgba(43, 197, 255, 0.25);
        }
        .nav-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 40px rgba(43, 197, 255, 0.35);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 1001;
        }
        .hamburger span {
            display: block;
            width: 26px;
            height: 2.5px;
            background: var(--white);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.open span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(10, 10, 15, 0.97);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            padding: 90px 32px 40px;
            transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            gap: 24px;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 999;
        }
        .mobile-menu.open {
            right: 0;
        }
        .mobile-menu a {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.25s ease;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .mobile-menu a:hover {
            color: var(--white);
        }
        .mobile-menu .mobile-cta {
            margin-top: 12px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            padding: 14px 28px;
            border-radius: 100px;
            text-align: center;
            font-weight: 600;
            border: none;
            box-shadow: 0 4px 30px rgba(43, 197, 255, 0.2);
        }

        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .mobile-overlay.open {
            opacity: 1;
            pointer-events: all;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            padding: 140px 24px 100px;
            text-align: center;
            overflow: hidden;
            background: radial-gradient(ellipse at 30% 20%, rgba(43, 197, 255, 0.08), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(166, 77, 255, 0.08), transparent 60%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 79, 216, 0.04), transparent 50%),
                var(--dark);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(43, 197, 255, 0.06), transparent 70%);
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -20%;
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, rgba(166, 77, 255, 0.06), transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 6px 20px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }
        .hero-badge i {
            color: var(--primary-blue);
            margin-right: 8px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.4rem, 7vw, 4.6rem);
            font-weight: 700;
            line-height: 1.08;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            color: var(--text-muted);
            max-width: 580px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            color: var(--white);
            padding: 16px 40px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
            box-shadow: 0 8px 40px rgba(43, 197, 255, 0.25);
        }
        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 60px rgba(43, 197, 255, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 700px;
            margin: 56px auto 0;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .hero-stats .stat-item {
            text-align: center;
        }
        .hero-stats .stat-number {
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-stats .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 400;
            margin-top: 2px;
        }

        /* ===== FLOATING ORBS ===== */
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            pointer-events: none;
        }
        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--primary-blue);
            top: -10%;
            left: -8%;
            opacity: 0.12;
        }
        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--primary-purple);
            bottom: -15%;
            right: -10%;
            opacity: 0.10;
        }
        .orb-3 {
            width: 300px;
            height: 300px;
            background: var(--accent-pink);
            top: 40%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.06;
        }

        /* ===== SECTION HEADERS ===== */
        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }
        .section-header .label {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--primary-blue);
            background: rgba(43, 197, 255, 0.08);
            padding: 4px 16px;
            border-radius: 100px;
            margin-bottom: 16px;
            border: 1px solid rgba(43, 197, 255, 0.06);
        }
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        .section-header p {
            color: var(--text-muted);
            margin-top: 12px;
            font-size: 1rem;
        }

        /* ===== CARDS ===== */
        .card-premium {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-xl);
            padding: 32px 28px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        .card-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-purple), var(--accent-pink));
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .card-premium:hover::before {
            opacity: 1;
        }
        .card-premium:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 18px;
            background: linear-gradient(135deg, rgba(43, 197, 255, 0.12), rgba(166, 77, 255, 0.12));
            border: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--primary-blue);
        }
        .card-premium h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .card-premium p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* ===== COMMISSIONS TABLE ===== */
        .table-wrap {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-xl);
            overflow: hidden;
        }
        .table-wrap table {
            width: 100%;
            border-collapse: collapse;
        }
        .table-wrap th {
            padding: 18px 24px;
            text-align: left;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .table-wrap td {
            padding: 16px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .table-wrap tr:last-child td {
            border-bottom: none;
        }
        .table-wrap tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }
        .table-wrap .level-name {
            font-weight: 700;
            color: var(--white);
        }
        .table-wrap .level-name.s {
            color: var(--accent-pink);
        }
        .table-wrap .commission-highlight {
            color: var(--white);
            font-weight: 600;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-xl);
            padding: 28px 26px;
            transition: all 0.4s ease;
        }
        .testimonial-card:hover {
            border-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }
        .testimonial-card .stars {
            color: #FFD93D;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }
        .testimonial-card blockquote {
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .testimonial-card .author {
            margin-top: 16px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--white);
        }
        .testimonial-card .author span {
            color: var(--text-muted);
            font-weight: 400;
            font-size: 0.8rem;
        }

        /* ===== STEPS ===== */
        .step-card {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-xl);
            padding: 32px 26px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }
        .step-card:hover {
            border-color: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }
        .step-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 12px;
        }
        .step-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .step-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        /* ===== FORM ===== */
        .form-premium {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-2xl);
            padding: 40px 36px;
            transition: all 0.4s ease;
        }
        .form-premium:hover {
            border-color: rgba(255, 255, 255, 0.06);
        }
        .form-premium label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            display: block;
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }
        .form-premium input,
        .form-premium select {
            width: 100%;
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            outline: none;
        }
        .form-premium input:focus,
        .form-premium select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(43, 197, 255, 0.08);
        }
        .form-premium input::placeholder {
            color: rgba(255, 255, 255, 0.15);
        }
        .form-premium select option {
            background: var(--dark);
            color: var(--white);
        }
        .form-premium .btn-submit {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
            box-shadow: 0 4px 30px rgba(43, 197, 255, 0.2);
        }
        .form-premium .btn-submit:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 50px rgba(43, 197, 255, 0.3);
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--dark-card);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.06);
        }
        .faq-item .faq-btn {
            width: 100%;
            padding: 20px 24px;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--white);
            cursor: pointer;
            transition: background 0.2s ease;
            text-align: left;
        }
        .faq-item .faq-btn:hover {
            background: rgba(255, 255, 255, 0.02);
        }
        .faq-item .faq-btn i {
            transition: transform 0.3s ease;
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .faq-item .faq-btn.open i {
            transform: rotate(180deg);
        }
        .faq-item .faq-content {
            padding: 0 24px 20px;
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
            display: none;
        }
        .faq-item .faq-content.open {
            display: block;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding: 60px 24px 32px;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 768px) {
            .footer-inner {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 8px;
            max-width: 280px;
        }
        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            color: var(--white);
            border-color: var(--primary-blue);
            background: rgba(43, 197, 255, 0.06);
            transform: translateY(-2px);
        }
        .footer h5 {
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 16px;
            color: var(--white);
        }
        .footer ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer ul a {
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: color 0.25s ease;
        }
        .footer ul a:hover {
            color: var(--white);
        }
        .footer-bottom {
            max-width: 1280px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== BACK TO TOP ===== */
        #back-to-top {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
            border: none;
            color: var(--white);
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(43, 197, 255, 0.3);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
            z-index: 999;
        }
        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }
        #back-to-top:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 50px rgba(43, 197, 255, 0.4);
        }

        /* ===== RESPONSIVE ===== */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            .nav-cta {
                display: inline-block;
            }
            .hamburger {
                display: none;
            }
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 767px) {
            .hero {
                padding: 120px 16px 72px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .form-premium {
                padding: 28px 20px;
            }
            .table-wrap {
                overflow-x: auto;
            }
            .table-wrap table {
                min-width: 580px;
            }
        }

/* ===== MULTI-PAGE CONTENT ===== */
.page-hero{position:relative;overflow:hidden;text-align:center;padding:150px 24px 80px;background:radial-gradient(circle at 20% 20%,rgba(43,197,255,.10),transparent 32%),radial-gradient(circle at 80% 30%,rgba(166,77,255,.10),transparent 34%);}
.page-hero::before,.page-hero::after{content:"";position:absolute;border-radius:50%;filter:blur(80px);pointer-events:none;}
.page-hero::before{width:340px;height:340px;background:var(--primary-blue);top:-180px;left:-100px;opacity:.10}.page-hero::after{width:360px;height:360px;background:var(--primary-purple);right:-120px;bottom:-220px;opacity:.10}
.page-hero .eyebrow{position:relative;z-index:1;display:inline-block;color:var(--primary-blue);background:rgba(43,197,255,.08);border:1px solid rgba(43,197,255,.10);padding:6px 16px;border-radius:100px;font-size:.72rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:18px}
.page-hero h1{position:relative;z-index:1;font-family:'Playfair Display',serif;font-size:clamp(2.4rem,5vw,4rem);line-height:1.08;max-width:900px;margin:0 auto 18px;letter-spacing:-.02em}.page-hero p{position:relative;z-index:1;max-width:680px;margin:0 auto;color:var(--text-muted);font-size:1.05rem;line-height:1.75}
.page-wrap{max-width:1180px;margin:0 auto;padding:80px 24px}.content-narrow{max-width:900px;margin:0 auto}.content-narrow h2,.page-wrap h2{font-family:'Playfair Display',serif;font-size:clamp(1.7rem,3vw,2.4rem);margin:0 0 14px}.content-narrow h3,.page-wrap h3{font-size:1.15rem;margin:30px 0 10px}.content-narrow p,.page-wrap p{color:var(--text-muted);line-height:1.8}.content-narrow p+p{margin-top:18px}
.page-grid{display:grid;grid-template-columns:1fr;gap:24px}.page-grid-3{display:grid;grid-template-columns:1fr;gap:24px}.page-card{background:var(--dark-card);border:1px solid rgba(255,255,255,.05);border-radius:var(--radius-xl);padding:30px 28px;position:relative;overflow:hidden;transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease}.page-card::before{content:"";position:absolute;left:0;right:0;top:0;height:2px;background:linear-gradient(90deg,var(--primary-blue),var(--primary-purple),var(--accent-pink));opacity:.75}.page-card:hover{transform:translateY(-6px);border-color:rgba(255,255,255,.10);box-shadow:0 20px 60px rgba(0,0,0,.35)}.page-card .icon{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,rgba(43,197,255,.14),rgba(166,77,255,.16));color:var(--primary-blue);font-size:1.2rem;margin-bottom:18px}.page-card h3{margin:0 0 9px;font-size:1.1rem}.page-card p{font-size:.92rem}
.check-list{list-style:none;padding:0;margin:22px 0}.check-list li{display:flex;gap:12px;align-items:flex-start;color:var(--text-muted);margin:12px 0;line-height:1.7}.check-list i{color:var(--primary-blue);margin-top:5px}.steps{counter-reset:step}.step{display:grid;grid-template-columns:52px 1fr;gap:18px;align-items:start;margin-bottom:24px}.step-no{width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;background:linear-gradient(135deg,var(--primary-blue),var(--primary-purple));box-shadow:0 8px 30px rgba(43,197,255,.18)}.step h3{margin:0 0 6px}.step p{margin:0}
.cta-panel{margin-top:40px;padding:38px;border-radius:var(--radius-2xl);background:linear-gradient(135deg,rgba(43,197,255,.10),rgba(166,77,255,.12));border:1px solid rgba(255,255,255,.07);text-align:center}.cta-panel h2{margin-bottom:10px}.cta-panel p{max-width:650px;margin:0 auto 22px}.btn-primary,.btn-secondary{font-family:inherit}
.faq-list{max-width:900px;margin:0 auto}.faq-list .faq-item{margin-bottom:12px}.faq-list .faq-btn{width:100%;display:flex;justify-content:space-between;gap:20px;text-align:left;background:var(--dark-card);border:1px solid rgba(255,255,255,.05);color:var(--white);padding:20px 22px;border-radius:16px;font:600 .98rem Inter,sans-serif;cursor:pointer}.faq-list .faq-content{background:rgba(255,255,255,.025);border:1px solid rgba(255,255,255,.04);border-top:0;border-radius:0 0 16px 16px;padding:18px 22px;color:var(--text-muted);display:none}.faq-list .faq-content.open{display:block}.faq-list .faq-btn.open{border-radius:16px 16px 0 0}
.contact-grid{display:grid;grid-template-columns:1fr;gap:24px}.contact-box{padding:28px;border-radius:20px;background:var(--dark-card);border:1px solid rgba(255,255,255,.05)}.contact-box a{color:var(--primary-blue)}
.article{max-width:900px;margin:0 auto}.article h2{margin-top:38px}.article ul{color:var(--text-muted);line-height:1.9;padding-left:22px}.article li{margin:7px 0}
@media(min-width:768px){.page-grid{grid-template-columns:1.1fr .9fr}.page-grid-3{grid-template-columns:repeat(3,1fr)}.contact-grid{grid-template-columns:1fr 1fr}.page-hero{padding-top:155px;padding-bottom:90px}}
@media(min-width:1000px){.page-wrap{padding-top:95px;padding-bottom:95px}}
