        /* 
         * ================================================
         * AMILMA DIGITAL - MATERIAL DESIGN SYSTEM
         * Google-Quality Corporate Landing Page
         * ================================================
         * 
         * Design System: Google Material Design
         * Color Palette: Material Blue (#1a73e8)
         * Typography: Inter, System Fonts
         * Animations: Cubic-bezier easing (0.4, 0, 0.2, 1)
         * Elevation: Material Design shadows
         * Performance: Optimized with will-change, transitions
         * 
         * Version: 2.0
         * Last Updated: December 2025
         * ================================================
         */
        
        /* === RESET & BASE === */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
            background-color: #ffffff;
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            font-size: 16px;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            scroll-behavior: smooth;
            letter-spacing: -0.01em;
        }

        /* === MODERN ANIMATIONS === */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 30px rgba(99, 102, 241, 0.3), 0 0 60px rgba(139, 92, 246, 0.15);
            }
            33% {
                box-shadow: 0 0 40px rgba(236, 72, 153, 0.35), 0 0 80px rgba(236, 72, 153, 0.2);
            }
            66% {
                box-shadow: 0 0 35px rgba(16, 185, 129, 0.3), 0 0 70px rgba(16, 185, 129, 0.15);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-12px) rotate(1deg) scale(1.01);
            }
            50% {
                transform: translateY(-8px) rotate(-0.5deg) scale(1.005);
            }
            75% {
                transform: translateY(-15px) rotate(0.5deg) scale(1.015);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
                filter: brightness(1);
            }
            50% {
                opacity: 0.9;
                transform: scale(1.03);
                filter: brightness(1.05);
            }
        }

        @keyframes luxuryFloat {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg);
                filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.2));
            }
            25% {
                transform: translateY(-15px) translateX(5px) rotate(2deg);
                filter: drop-shadow(0 30px 50px rgba(139, 92, 246, 0.25));
            }
            50% {
                transform: translateY(-25px) translateX(-3px) rotate(-1deg);
                filter: drop-shadow(0 40px 60px rgba(236, 72, 153, 0.2));
            }
            75% {
                transform: translateY(-10px) translateX(8px) rotate(1deg);
                filter: drop-shadow(0 25px 45px rgba(16, 185, 129, 0.22));
            }
        }

        @keyframes premiumShine {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes rainbowBorder {
            0% { border-color: rgba(99, 102, 241, 0.5); }
            25% { border-color: rgba(139, 92, 246, 0.5); }
            50% { border-color: rgba(236, 72, 153, 0.5); }
            75% { border-color: rgba(251, 191, 36, 0.5); }
            100% { border-color: rgba(99, 102, 241, 0.5); }
        }

        @keyframes borderGlow {
            0%, 100% {
                border-color: rgba(26, 115, 232, 0.2);
            }
            50% {
                border-color: rgba(26, 115, 232, 0.5);
            }
        }

        /* === INFINITE SLIDER ANIMATION === */
        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }



        body.loading {
            overflow: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 0.75em;
        }

        h1 { font-size: 3.5rem; font-weight: 800; }
        h2 { font-size: 2.5rem; font-weight: 700; }
        h3 { font-size: 2rem; font-weight: 700; }
        h4 { font-size: 1.5rem; font-weight: 600; }
        h5 { font-size: 1.25rem; font-weight: 600; }
        h6 { font-size: 1rem; font-weight: 600; }

        p {
            margin-bottom: 1em;
            line-height: 1.7;
            color: var(--text-secondary);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        ul {
            list-style: none;
        }

        img,
        svg {
            display: block;
            max-width: 100%;
        }

        /* === ACCESSIBILITY === */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #0078d4;
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 100;
            border-radius: 0 0 4px 0;
            font-weight: 600;
        }
        
        .skip-link:focus {
            top: 0;
            outline: 3px solid #fff;
            outline-offset: 2px;
        }
        
        /* === CSS VARIABLES - GOOGLE MATERIAL DESIGN === */
        :root {
            /* Primary Colors - Google Blue */
            --brand-primary: #1a73e8;
            --brand-primary-hover: #1967d2;
            --brand-primary-light: #e8f0fe;
            --brand-primary-dark: #174ea6;
            --brand-primary-rgb: 26, 115, 232;
            
            /* Secondary Colors */
            --brand-accent: #ea4335;
            --brand-accent-hover: #c5221f;
            --brand-success: #34a853;
            --brand-warning: #fbbc04;
            --brand-blue: #4285f4;
            --brand-emerald: #10b981;
            --brand-purple: #8430ce;
            
            /* Neutral Colors - Material Gray Scale */
            --brand-dark: #202124;
            --text-primary: #202124;
            --text-secondary: #5f6368;
            --text-tertiary: #80868b;
            --text-disabled: #c4c7c9;
            --text-white: #ffffff;
            --text-slate: #3c4043;
            --text-link: #1a73e8;

            /* Backgrounds - Clean Layers */
            --bg-body: #ffffff;
            --bg-canvas: #f8f9fa;
            --bg-surface: #f1f3f4;
            --bg-elevated: #ffffff;
            --bg-subtle: #f8f9fa;
            --bg-dark: #202124;
            --bg-overlay: rgba(32, 33, 36, 0.6);

            /* Border Colors */
            --border-light: #dadce0;
            --border-medium: #bdc1c6;
            --border-dark: #80868b;

            /* Microsoft Fluent Design System */
            --fluent-blue: #0078d4;
            --fluent-blue-hover: #106ebe;
            --fluent-teal: #00b7c3;
            --fluent-purple: #8764b8;
            --fluent-orange: #ca5010;
            --fluent-green: #107c10;
            --fluent-bg: rgba(243, 242, 241, 0.85);
            --fluent-acrylic: rgba(252, 252, 252, 0.7);
            --fluent-shadow: 0 3.2px 7.2px rgba(0,0,0,0.132), 0 0.6px 1.8px rgba(0,0,0,0.108);
            --fluent-shadow-hover: 0 6.4px 14.4px rgba(0,0,0,0.18), 0 1.2px 3.6px rgba(0,0,0,0.15);
            --fluent-border: rgba(0,0,0,0.05);

            /* Microsoft Fluent Design Colors */
            --fluent-blue: #0078d4;
            --fluent-blue-hover: #106ebe;
            --fluent-teal: #00b7c3;
            --fluent-purple: #8764b8;
            --fluent-orange: #ca5010;
            --fluent-green: #107c10;
            --fluent-bg: rgba(243, 242, 241, 0.8);
            --fluent-acrylic: rgba(252, 252, 252, 0.85);
            --fluent-shadow: 0 3.2px 7.2px rgba(0,0,0,0.13), 0 0.6px 1.8px rgba(0,0,0,0.11);
            --fluent-shadow-hover: 0 6.4px 14.4px rgba(0,0,0,0.18), 0 1.2px 3.6px rgba(0,0,0,0.15);

            /* Elevation System - Material Design Shadows */
            --elevation-1: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
            --elevation-2: 0 1px 2px 0 rgba(60,64,67,0.3), 0 2px 6px 2px rgba(60,64,67,0.15);
            --elevation-4: 0 2px 4px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
            --elevation-8: 0 4px 6px 0 rgba(60,64,67,0.3), 0 8px 16px 4px rgba(60,64,67,0.15);
            --elevation-16: 0 8px 12px 6px rgba(60,64,67,0.15), 0 16px 32px 8px rgba(60,64,67,0.15);
            --elevation-24: 0 12px 24px 12px rgba(60,64,67,0.15), 0 24px 48px 16px rgba(60,64,67,0.15);

            /* Spacing Scale - 8px base */
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-xl: 32px;
            --spacing-2xl: 48px;
            --spacing-3xl: 64px;
            --spacing-4xl: 80px;

            /* Border Radius - Material Corners */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            --radius-2xl: 24px;
            --radius-full: 9999px;

            /* Transitions - Material Motion */
            --transition-fast: 100ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
            --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
            --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
            --ease-accelerate: cubic-bezier(0.4, 0, 1, 1);
            --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
        }







        /* === UTILITY CLASSES === */
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .max-w-7xl {
            max-width: 80rem;
            margin: 0 auto;
        }

        .max-w-5xl {
            max-width: 64rem;
            margin: 0 auto;
        }

        .text-gradient {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #10b981 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 300% auto;
            animation: textGradientFlow 6s linear infinite;
        }

        @keyframes textGradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .text-gradient-alt {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f857a6 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
        }



        /* === BUTTONS === */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
            font-size: 15px;
            border: none;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            line-height: 1.5;
            letter-spacing: 0.01em;
            will-change: transform, box-shadow;
        }

        .btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 300ms;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 500ms cubic-bezier(0.16, 1, 0.3, 1), height 500ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover::after {
            width: 400px;
            height: 400px;
        }

        .btn:focus-visible {
            outline: 3px solid rgba(26, 115, 232, 0.4);
            outline-offset: 3px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
            color: var(--text-white);
            box-shadow: 
                0 4px 20px rgba(99, 102, 241, 0.4),
                0 2px 8px rgba(139, 92, 246, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
            transform: translateY(-4px) scale(1.03);
            box-shadow: 
                0 12px 32px rgba(99, 102, 241, 0.5),
                0 6px 16px rgba(139, 92, 246, 0.4),
                0 0 40px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .btn-primary:active {
            transform: translateY(-1px) scale(1.01);
            box-shadow: 
                0 2px 8px rgba(26, 115, 232, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
        }

        .btn-lg {
            padding: 18px 36px;
            font-size: 16px;
            border-radius: 14px;
        }

        .btn-blue {
            background: var(--brand-blue);
            color: var(--text-white);
            box-shadow: var(--elevation-1);
        }

        .btn-blue:hover {
            background: var(--brand-primary);
            transform: translateY(-1px);
            box-shadow: var(--elevation-4);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(26, 115, 232, 0.2);
            color: var(--brand-primary);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .btn-outline:hover {
            background: rgba(26, 115, 232, 0.06);
            border-color: var(--brand-primary);
            color: var(--brand-primary-hover);
            box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
            transform: translateY(-2px);
        }

        .btn-outline-alt {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 2px solid rgba(0, 0, 0, 0.08);
            color: var(--text-primary);
            font-weight: 600;
            box-shadow: 
                0 2px 8px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .btn-outline-alt:hover {
            background: rgba(248, 249, 250, 1);
            border-color: rgba(26, 115, 232, 0.3);
            color: var(--brand-primary);
            transform: translateY(-3px);
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 1);
        }

        .btn-red {
            background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
            color: var(--text-white);
            box-shadow: 0 4px 16px rgba(234, 67, 53, 0.3);
        }

        .btn-red:hover {
            background: linear-gradient(135deg, #c5221f 0%, #a31f17 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(234, 67, 53, 0.4);
        }

        .btn-dark {
            background: linear-gradient(135deg, #202124 0%, #3c4043 100%);
            color: var(--text-white);
            box-shadow: 0 4px 16px rgba(32, 33, 36, 0.3);
        }

        .btn-dark:hover {
            background: linear-gradient(135deg, #3c4043 0%, #5f6368 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(32, 33, 36, 0.4);
        }

        .btn-lg {
            height: 48px;
            padding: 0 var(--spacing-xl);
            font-size: 15px;
            border-radius: var(--radius-md);
        }

        /* === CUSTOM RANGE SLIDER STYLES === */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: linear-gradient(to right, #0078d4 0%, #10b981 100%);
            outline: none;
            opacity: 0.9;
            transition: opacity 0.2s;
        }

        input[type="range"]:hover {
            opacity: 1;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0078d4 0%, #0ea5e9 100%);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
            border: 3px solid white;
            transition: all 0.3s;
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 16px rgba(0, 120, 212, 0.5);
        }

        input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0078d4 0%, #0ea5e9 100%);
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 120, 212, 0.4);
            border: 3px solid white;
            transition: all 0.3s;
        }

        input[type="range"]::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 16px rgba(0, 120, 212, 0.5);
        }

        /* Radio button hover states */
        input[type="radio"] + span {
            transition: all 0.2s;
        }

        label:has(input[type="radio"]):hover {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%) !important;
            border-color: #0078d4 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15) !important;
        }

        label:has(input[type="radio"]:checked) {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
            border-color: #0078d4 !important;
            border-width: 2px !important;
            box-shadow: 0 4px 16px rgba(0, 120, 212, 0.2) !important;
        }

        /* Select dropdown premium styles */
        select:hover {
            border-color: #0078d4 !important;
            box-shadow: 0 4px 12px rgba(0, 120, 212, 0.15) !important;
        }

        select:focus {
            outline: none;
            border-color: #0078d4 !important;
            box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1) !important;
        }

        /* Feature level button animations */
        .feature-level-btn {
            position: relative;
            overflow: hidden;
        }

        .feature-level-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .feature-level-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .feature-level-btn:hover {
            transform: translateY(-2px);
        }

        .feature-level-btn:active {
            transform: translateY(0);
        }

        /* Package tab animations */
        .package-tab {
            position: relative;
            overflow: hidden;
        }

        .package-tab::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .package-tab:hover::after {
            width: 400px;
            height: 400px;
        }

        .package-tab:hover {
            transform: translateY(-3px);
        }

        /* Feature button hover effects by category */
        .feature-level-btn[data-feature="pentesting"]:hover {
            border-color: #fbbf24 !important;
            box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3) !important;
        }

        .feature-level-btn[data-feature="pentesting"].active {
            background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
            border-color: transparent !important;
        }

        .feature-level-btn[data-feature="video"]:hover {
            border-color: #ec4899 !important;
            box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3) !important;
        }

        .feature-level-btn[data-feature="video"].active {
            background: linear-gradient(135deg, #db2777 0%, #ec4899 100%) !important;
            border-color: transparent !important;
        }

        /* === HEADER - KING UPGRADE === */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(200%) blur(30px);
            -webkit-backdrop-filter: saturate(200%) blur(30px);
            border-bottom: 1px solid rgba(99, 102, 241, 0.08);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 var(--spacing-xl);
            z-index: 1000;
            transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.06);
        }

        .header.scrolled {
            box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(99, 102, 241, 0.12);
            height: 68px;
        }

        .logo {
            font-weight: 700;
            font-size: 22px;
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            color: var(--text-primary);
            transition: transform var(--transition-base);
            text-decoration: none;
        }

        .logo:hover {
            transform: scale(1.03);
        }

        .logo img {
            height: 32px;
            width: auto;
            transition: all var(--transition-base);
        }

        .nav-menu {
            display: flex;
            gap: 4px;
            font-size: 14px;
            font-weight: 500;
            align-items: center;
        }

        .nav-link {
            padding: 8px 16px;
            transition: all var(--transition-base);
            color: var(--text-secondary);
            position: relative;
            border-radius: var(--radius-sm);
            text-decoration: none;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 6px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--brand-primary);
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }

        .nav-link:hover {
            color: var(--brand-primary);
            background: var(--bg-canvas);
        }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

        .mega-trigger {
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            font-weight: 500;
            position: relative;
            transition: all var(--transition-base);
            border-radius: var(--radius-sm);
            text-decoration: none;
        }

        .mega-trigger:hover {
            background: var(--bg-canvas);
            color: var(--brand-primary);
        }

        .mega-trigger svg {
            transition: transform var(--transition-base);
            width: 12px;
        }

        .mega-trigger.active {
            color: var(--brand-primary);
            background: var(--bg-canvas);
        }

        .mega-trigger.active svg {
            transform: rotate(180deg);
        }

        /* === MEGA MENU === */
        .mega-menu-overlay {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: var(--bg-overlay);
            z-index: 990;
            display: none;
            opacity: 0;
            transition: opacity var(--transition-base);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .mega-menu-overlay.visible {
            opacity: 1;
        }

        .mega-menu-container {
            background: var(--bg-elevated);
            height: 650px;
            display: flex;
            width: 100%;
            box-shadow: var(--elevation-8);
            border-bottom: 1px solid var(--border-light);
        }

        .mm-sidebar {
            width: 320px;
            background: var(--bg-canvas);
            border-right: 1px solid var(--border-light);
            padding: var(--spacing-xl) 0;
            text-align: left;
        }

        .mm-search {
            padding: 0 24px 20px;
            border-bottom: 1px solid var(--border-light);
            margin-bottom: 10px;
        }

        .mm-search input {
            width: 100%;
            padding: 12px;
            border: 1px solid #cbd5e1;
            border-radius: 6px;
            font-size: 14px;
        }

        .mm-cat-item {
            padding: 12px var(--spacing-xl);
            cursor: pointer;
            font-size: 15px;
            color: var(--text-secondary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all var(--transition-base);
            border-left: 3px solid transparent;
            font-weight: 500;
        }

        .mm-cat-item:hover,
        .mm-cat-item.active {
            background: var(--bg-elevated);
            color: var(--brand-primary);
            font-weight: 600;
            border-left-color: var(--brand-primary);
        }

        .mm-content {
            flex: 1;
            padding: 50px;
            overflow-y: auto;
            display: none;
            text-align: left;
            background: #fff;
        }

        .mm-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .mm-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .mm-card {
            display: flex;
            gap: var(--spacing-md);
            align-items: flex-start;
            cursor: pointer;
            padding: var(--spacing-md);
            border-radius: var(--radius-lg);
            transition: all var(--transition-base);
            border: 1px solid transparent;
        }

        .mm-card:hover {
            background: var(--bg-surface);
            border-color: var(--brand-primary);
            transform: translateY(-2px);
            box-shadow: var(--elevation-4);
        }

        .mm-icon {
            width: 48px;
            height: 48px;
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            transition: all var(--transition-base);
        }

        .mm-card:hover .mm-icon {
            background: var(--brand-primary-light);
            transform: scale(1.05);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* === HERO SECTION - KING UPGRADE === */
        .hero {
            padding: 160px 0 120px;
            background: linear-gradient(180deg, #ffffff 0%, #fafbff 30%, #f0f4ff 60%, #f5f7f9 100%);
            position: relative;
            overflow: hidden;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 15% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 80%, rgba(52, 168, 83, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 40%);
            pointer-events: none;
            animation: heroGradientShift 15s ease-in-out infinite;
        }

        @keyframes heroGradientShift {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.05); }
        }

        .bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.04) 1.5px, transparent 1.5px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1.5px, transparent 1.5px);
            background-size: 50px 50px;
            opacity: 0.7;
            z-index: 0;
            mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
            animation: gridPulse 20s ease-in-out infinite;
        }

        @keyframes gridPulse {
            0%, 100% { opacity: 0.7; background-size: 50px 50px; }
            50% { opacity: 0.5; background-size: 52px 52px; }
        }

        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.4;
            pointer-events: none;
            animation: blobPulse 20s ease-in-out infinite;
        }

        .bg-blob-1 {
            top: -15%;
            right: -8%;
            width: 800px;
            height: 800px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(236, 72, 153, 0.15) 50%, rgba(191, 219, 254, 0.25) 100%);
            animation-delay: 0s;
        }

        .bg-blob-2 {
            bottom: -15%;
            left: -12%;
            width: 900px;
            height: 900px;
            background: linear-gradient(135deg, rgba(52, 168, 83, 0.15) 0%, rgba(14, 165, 233, 0.12) 50%, rgba(209, 250, 229, 0.22) 100%);
            animation-delay: 10s;
        }

        .bg-blob-3 {
            top: 40%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.08) 100%);
            animation-delay: 5s;
            transform: translateX(-50%);
        }

        @keyframes blobPulse {
            0%, 100% {
                transform: scale(1) translate(0, 0);
                opacity: 0.4;
            }
            50% {
                transform: scale(1.1) translate(20px, -20px);
                opacity: 0.5;
            }
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 1;
            padding: 20px 0;
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--brand-primary-light);
            color: var(--brand-primary);
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: var(--spacing-lg);
            border: 1px solid rgba(0, 120, 212, 0.2);
            letter-spacing: 0.8px;
            box-shadow: var(--elevation-2);
        }

        .rating-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--spacing-sm);
            padding: 14px 24px;
            border-radius: var(--radius-full);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border: 2px solid rgba(99, 102, 241, 0.15);
            box-shadow: 
                0 8px 32px rgba(99, 102, 241, 0.15), 
                0 4px 12px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            font-size: 14px;
            font-weight: 700;
            color: var(--text-secondary);
            cursor: help;
            position: relative;
            transition: all 450ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .rating-badge::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(236, 72, 153, 0.3), rgba(251, 191, 36, 0.3));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 400ms;
        }

        .rating-badge:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 
                0 16px 48px rgba(99, 102, 241, 0.25), 
                0 8px 20px rgba(0, 0, 0, 0.08),
                0 0 40px rgba(139, 92, 246, 0.15);
            border-color: rgba(99, 102, 241, 0.3);
        }

        .rating-badge:hover::before {
            opacity: 1;
        }

        .rating-badge img {
            width: 20px;
            height: 20px;
        }

        .hero-title {
            font-size: 68px;
            line-height: 1.05;
            font-weight: 900;
            color: #0a0f1a;
            margin-bottom: 32px;
            letter-spacing: -0.04em;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #ec4899 60%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGradientFlow 4s linear infinite;
            background-size: 300% auto;
        }

        .hero-desc {
            font-size: 19px;
            color: #475569;
            margin-bottom: 36px;
            max-width: 88%;
            line-height: 1.72;
            font-weight: 450;
            letter-spacing: -0.011em;
        }

        .hero-visual {
            position: relative;
            height: 600px;
            perspective: 1000px;
        }

        .float-container {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: heroFloat 8s ease-in-out infinite;
        }

        .main-dash-card {
            width: 95%;
            position: absolute;
            top: 5%;
            left: 2.5%;
            border-radius: 28px;
            box-shadow: 
                0 30px 80px rgba(99, 102, 241, 0.18),
                0 15px 40px rgba(0, 0, 0, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.95);
            background: linear-gradient(145deg, #ffffff 0%, #fafaff 50%, #f5f7ff 100%);
            z-index: 2;
            overflow: hidden;
            transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
            animation: luxuryFloat 8s ease-in-out infinite;
        }

        .main-dash-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(236, 72, 153, 0.2), rgba(251, 191, 36, 0.15), transparent);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0.8;
        }

        .main-dash-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 40%, 
                rgba(255, 255, 255, 0.3) 50%, 
                transparent 60%);
            animation: premiumShine 4s ease-in-out infinite;
            pointer-events: none;
        }

        .main-dash-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 40px 100px rgba(99, 102, 241, 0.25),
                0 20px 50px rgba(0, 0, 0, 0.12),
                0 0 60px rgba(139, 92, 246, 0.15);
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .hero-stats {
            margin-top: 64px;
            padding: 48px 56px;
            border-top: 2px solid rgba(99, 102, 241, 0.1);
            border-radius: 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            text-align: center;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 
                0 8px 32px rgba(99, 102, 241, 0.08), 
                0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -1px 0 rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.08);
            position: relative;
            overflow: hidden;
        }

        .hero-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f59e0b, #10b981);
            animation: premiumShine 3s linear infinite;
            background-size: 200% 100%;
        }

        .stat-item {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl);
            box-shadow: var(--elevation-2);
        }

        .stat-item h4 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: var(--spacing-sm);
            letter-spacing: -0.02em;
        }

        .stat-item p {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* === MARQUEE === */
        .marquee-wrap {
            padding: var(--spacing-2xl) 0;
            background: var(--bg-elevated);
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-flex;
            animation: scroll 40s linear infinite;
        }

        .marquee-item {
            padding: 0 var(--spacing-2xl);
            opacity: 0.5;
            transition: all var(--transition-base);
            filter: grayscale(100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .marquee-item:hover {
            opacity: 1;
            filter: grayscale(0);
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollLogos {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scrollLogosReverse {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        @keyframes floatUpDown {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes rotateGlow {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* === BENTO GRID - KING UPGRADE === */
        .bento-section {
            padding: 140px 0;
            background: linear-gradient(180deg, #ffffff 0%, #fafaff 25%, #f5f7ff 50%, #fafaff 75%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .bento-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.04) 0%, transparent 60%);
            pointer-events: none;
            animation: heroGradientShift 20s ease-in-out infinite;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 360px);
            gap: 20px;
            position: relative;
        }

        .bento-card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(40px) saturate(200%);
            -webkit-backdrop-filter: blur(40px) saturate(200%);
            border-radius: 24px;
            padding: 36px;
            border: 1px solid rgba(255, 255, 255, 0.95);
            overflow: hidden;
            position: relative;
            transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            box-shadow: 
                0 8px 32px rgba(99, 102, 241, 0.08),
                0 4px 16px rgba(0, 0, 0, 0.04),
                0 1px 4px rgba(0, 0, 0, 0.02),
                inset 0 1px 0 rgba(255, 255, 255, 1),
                inset 0 -1px 0 rgba(0, 0, 0, 0.02);
            will-change: transform, box-shadow;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
            opacity: 0;
            transition: opacity 500ms;
            pointer-events: none;
        }

        .bento-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(255, 255, 255, 0.4) 50%,
                transparent 100%);
            transition: left 600ms cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

        .bento-card:hover {
            transform: translateY(-16px) scale(1.025) rotateX(2deg);
            box-shadow: 
                0 32px 64px rgba(99, 102, 241, 0.18),
                0 16px 32px rgba(0, 0, 0, 0.1),
                0 8px 16px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(99, 102, 241, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(99, 102, 241, 0.3);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        .bento-card:hover::after {
            left: 100%;
        }

        .bento-col-2 {
            grid-column: span 2;
        }

        .bento-row-2 {
            grid-row: span 2;
        }

        .bento-dark {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
            color: #ffffff;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .bento-dark:hover {
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 
                0 32px 64px rgba(99, 102, 241, 0.3),
                0 0 0 1px rgba(139, 92, 246, 0.4),
                0 0 80px rgba(139, 92, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .bento-gradient {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 35%, #a855f7 65%, #ec4899 100%);
            color: #ffffff;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .bento-gradient::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
            pointer-events: none;
        }

        .bento-gradient:hover {
            box-shadow: 
                0 32px 64px rgba(99, 102, 241, 0.35),
                0 16px 32px rgba(139, 92, 246, 0.25),
                0 0 60px rgba(236, 72, 153, 0.2);
        }

        .bento-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .bento-text {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.65;
        }

        .bento-dark .bento-text,
        .bento-gradient .bento-text {
            color: var(--text-secondary);
        }

        /* === CARD COMPONENTS === */
        .card {
            background: var(--bg-elevated);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            border: 1px solid var(--border-light);
            box-shadow: var(--elevation-1);
            transition: all var(--transition-base);
            will-change: transform, box-shadow;
        }

        .card:hover {
            box-shadow: var(--elevation-4);
            transform: translateY(-4px);
            border-color: var(--border-medium);
        }

        .card-elevated {
            box-shadow: var(--elevation-2);
        }

        .card-elevated:hover {
            box-shadow: var(--elevation-8);
            transform: translateY(-6px);
        }

        /* === PREMIUM PRICING SYSTEM === */
        .pricing-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: stretch;
            margin-top: var(--spacing-3xl);
            perspective: 1000px;
        }

        .price-card {
            position: relative;
            border-radius: 28px;
            padding: 0;
            display: flex;
            flex-direction: column;
            transition: all 600ms cubic-bezier(0.16, 1, 0.3, 1);
            background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
            overflow: hidden;
            box-shadow: 
                0 2px 8px rgba(0, 0, 0, 0.04),
                0 12px 32px rgba(99, 102, 241, 0.1),
                0 0 0 1px rgba(99, 102, 241, 0.05);
            transform-style: preserve-3d;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
            opacity: 0;
            transition: opacity 500ms ease;
        }

        .price-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.2), rgba(251, 191, 36, 0.2));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 500ms ease;
        }

        .price-card:hover {
            transform: translateY(-16px) scale(1.03) rotateY(-2deg);
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.08),
                0 32px 64px rgba(99, 102, 241, 0.2),
                0 0 80px rgba(139, 92, 246, 0.15),
                0 0 0 1px rgba(99, 102, 241, 0.15);
        }

        .price-card:hover::before {
            opacity: 1;
        }

        .price-card:hover::after {
            opacity: 1;
        }

        .price-header {
            padding: 48px 40px 32px;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
            border-bottom: 1px solid rgba(226, 232, 240, 0.5);
            position: relative;
        }

        .price-header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 40px;
            right: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
        }

        .price-body {
            padding: 40px;
            flex: 1;
            background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.3) 100%);
        }

        .price-title {
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }

        .price-subtitle {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 28px;
            font-weight: 500;
        }

        .price-val {
            font-size: 56px;
            font-weight: 900;
            color: #0f172a;
            letter-spacing: -0.03em;
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-currency {
            font-size: 32px;
            font-weight: 700;
            color: #64748b;
        }

        .price-period {
            font-size: 16px;
            color: #94a3b8;
            font-weight: 600;
            margin-left: 4px;
        }

        .price-sub {
            font-size: 14px;
            color: #64748b;
            font-weight: 500;
            margin-top: 8px;
            line-height: 1.5;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 32px 0;
        }

        .feature-list li {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 15px;
            color: #334155;
            line-height: 1.6;
            font-weight: 500;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
            margin-top: 2px;
        }

        .best-value {
            position: relative;
            transform: scale(1.05);
            z-index: 2;
            box-shadow: 
                0 4px 12px rgba(0, 0, 0, 0.1),
                0 24px 48px rgba(59, 130, 246, 0.2),
                0 0 0 2px rgba(59, 130, 246, 0.3),
                0 0 80px rgba(59, 130, 246, 0.2);
        }

        .best-value::before {
            opacity: 1;
        }

        .best-value:hover {
            transform: scale(1.05) translateY(-12px);
        }

        .best-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .best-badge span {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #ffffff;
            padding: 10px 28px;
            font-size: 12px;
            font-weight: 800;
            border-radius: 50px;
            box-shadow: 
                0 4px 16px rgba(59, 130, 246, 0.4),
                0 0 0 3px rgba(255, 255, 255, 1),
                0 0 0 4px rgba(59, 130, 246, 0.2);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .price-cta {
            margin-top: auto;
            padding: 40px;
            padding-top: 0;
        }

        .price-btn {
            width: 100%;
            padding: 18px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .price-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 600ms ease;
        }

        .price-btn:hover::before {
            left: 100%;
        }

        .price-btn-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
        }

        .price-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        }

        .price-btn-secondary {
            background: #ffffff;
            color: #3b82f6;
            border: 2px solid #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .price-btn-secondary:hover {
            border-color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
        }

        /* === PRICING HEADER (REFINED) === */
        .pricing-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .pricing-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
            border-radius: 999px;
            margin-bottom: 24px;
            border: 1px solid rgba(59, 130, 246, 0.12);
            box-shadow: 0 2px 12px rgba(59, 130, 246, 0.08);
        }

        .pricing-kicker span {
            font-size: 13px;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .pricing-title {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #0f172a;
            letter-spacing: -0.03em;
        }

        .pricing-title .pricing-title-accent {
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-lead {
            font-size: 19px;
            color: #64748b;
            max-width: 720px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 500;
        }

        .pricing-lead strong {
            color: #3b82f6;
            font-weight: 700;
        }

        /* === PRICING CARD THEMES (EACH CARD UNIQUE) === */
        .price-card--midnight {
            background: radial-gradient(1200px 400px at 10% 0%, rgba(251, 191, 36, 0.14) 0%, transparent 55%),
                radial-gradient(900px 380px at 90% 10%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
                linear-gradient(135deg, #0b1220 0%, #0f172a 45%, #0b1220 100%);
            color: #ffffff;
            box-shadow:
                0 10px 28px rgba(2, 6, 23, 0.35),
                0 30px 70px rgba(2, 6, 23, 0.22),
                0 0 0 1px rgba(251, 191, 36, 0.16);
        }

        .price-card--midnight::before {
            opacity: 1;
            background: linear-gradient(90deg, #fbbf24, #f59e0b, #3b82f6, #8b5cf6);
        }

        .price-card--midnight .price-header {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(2, 6, 23, 0.35) 100%);
            border-bottom-color: rgba(148, 163, 184, 0.18);
        }

        .price-card--midnight .price-title,
        .price-card--midnight .price-val {
            color: #ffffff;
        }

        .price-card--midnight .price-subtitle,
        .price-card--midnight .price-sub {
            color: rgba(226, 232, 240, 0.78);
        }

        .price-card--midnight .feature-list li {
            color: rgba(241, 245, 249, 0.92);
        }

        .feature-icon--step {
            border-radius: 999px;
            width: 26px;
            height: 26px;
            font-weight: 900;
            font-size: 13px;
            letter-spacing: -0.01em;
        }

        .price-card--midnight .feature-icon--step {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            box-shadow: 0 6px 18px rgba(251, 191, 36, 0.35);
            color: #0b1220;
        }

        .price-card--signature {
            background: radial-gradient(900px 420px at 20% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
                radial-gradient(900px 420px at 80% 15%, rgba(251, 191, 36, 0.18) 0%, transparent 55%),
                linear-gradient(135deg, #0284c7 0%, #0ea5e9 40%, #6366f1 100%);
            color: #ffffff;
        }

        .price-card--signature .price-header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
            border-bottom-color: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .price-card--signature .price-title,
        .price-card--signature .price-val {
            color: #ffffff;
        }

        .price-card--signature .price-subtitle,
        .price-card--signature .price-sub {
            color: rgba(255, 255, 255, 0.88);
        }

        .feature-list--pills {
            margin: 28px 0 0;
        }

        .feature-list--pills li {
            margin-bottom: 12px;
            padding: 12px 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .price-card--signature .feature-icon {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%);
            box-shadow: 0 10px 22px rgba(2, 132, 199, 0.28);
        }

        .price-card--executive {
            background: radial-gradient(900px 380px at 10% 0%, rgba(96, 165, 250, 0.16) 0%, transparent 55%),
                radial-gradient(900px 380px at 90% 10%, rgba(16, 185, 129, 0.14) 0%, transparent 60%),
                linear-gradient(135deg, #0b1220 0%, #0f172a 55%, #0b1220 100%);
            color: #ffffff;
        }

        .price-card--executive .price-header {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.35) 100%);
            border-bottom-color: rgba(148, 163, 184, 0.18);
        }

        .price-card--executive .price-title,
        .price-card--executive .price-val {
            color: #ffffff;
        }

        .price-card--executive .price-subtitle,
        .price-card--executive .price-sub {
            color: rgba(226, 232, 240, 0.78);
        }

        .executive-panel {
            margin-top: 18px;
            padding: 18px 18px;
            border-radius: 16px;
            background: rgba(96, 165, 250, 0.12);
            border: 1px solid rgba(96, 165, 250, 0.28);
        }

        .executive-panel h4 {
            font-size: 16px;
            font-weight: 800;
            margin: 0 0 8px;
            color: #ffffff;
            letter-spacing: -0.01em;
        }

        .executive-panel p {
            margin: 0;
            font-size: 13px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .feature-list--minimal li {
            margin-bottom: 14px;
        }

        .feature-icon--check {
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
            box-shadow: 0 10px 22px rgba(59, 130, 246, 0.25);
        }

        /* === COMPARISON TABLE === */
        .comparison-section {
            padding: 96px 0;
            background: var(--bg-body);
        }

        .comp-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-xl);
            box-shadow: var(--elevation-4);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        .comp-table th,
        .comp-table td {
            padding: var(--spacing-lg);
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        }

        .comp-table th {
            background: var(--bg-surface);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
            letter-spacing: 0.2px;
        }

        .comp-table td:first-child {
            text-align: left;
            font-weight: 500;
            padding-left: var(--spacing-2xl);
            width: 30%;
            color: var(--text-primary);
        }

        .col-highlight {
            background: #eff6ff;
            color: var(--brand-primary);
            font-weight: 700;
            border-left: 1px solid #dbeafe;
            border-right: 1px solid #dbeafe;
        }

        .check-icon {
            color: var(--brand-success);
            font-size: 20px;
        }

        .cross-icon {
            color: #ef4444;
            font-size: 20px;
        }

        /* === CUSTOM INPUT STYLES === */
        input[type="range"] {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #0078d4 0%, #00b4d8 100%);
            cursor: pointer;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(0, 120, 212, 0.35);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.15);
        }

        input[type="range"]::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 16px rgba(0, 120, 212, 0.5);
        }

        input[type="range"]::-webkit-slider-thumb:active {
            transform: scale(1.1);
        }

        input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            background: linear-gradient(135deg, #0078d4 0%, #00b4d8 100%);
            cursor: pointer;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 2px 8px rgba(0, 120, 212, 0.35);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        input[type="range"]::-moz-range-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 6px 16px rgba(0, 120, 212, 0.5);
        }

        input[type="range"]::-webkit-slider-runnable-track {
            background: linear-gradient(90deg, #0078d4 0%, #00b4d8 100%);
            height: 6px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        input[type="range"]::-moz-range-track {
            background: transparent;
            border: none;
        }

        input[type="range"]::-moz-range-progress {
            background: linear-gradient(90deg, #0078d4 0%, #00b4d8 100%);
            height: 6px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }

        /* === SELECT STYLING === */
        select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 1.5em 1.5em;
            padding-right: 2.5rem !important;
            background-color: rgba(255, 255, 255, 0.06) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 6px !important;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
            color: inherit;
            font-weight: 500;
        }

        select:hover {
            background-color: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(0, 120, 212, 0.2) !important;
        }

        select:focus {
            outline: none !important;
            border-color: #0078d4 !important;
            background-color: rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
        }

        select option {
            background: white;
            color: var(--text-primary);
            border-radius: 4px;
        }

        /* === PACKAGE TABS - MICROSOFT FLUENT === */
        .package-tab {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
            border-radius: 8px !important;
            border: none !important;
            background: rgba(255, 255, 255, 0.08) !important;
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .package-tab:hover {
            background: rgba(255, 255, 255, 0.12) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .package-tab.active {
            background: #0078d4 !important;
            color: white !important;
            box-shadow: 0 8px 24px rgba(0, 120, 212, 0.25);
            transform: translateY(-2px);
            border: none !important;
        }

        /* === FEATURE LEVEL BUTTONS - MICROSOFT FLUENT === */
        .feature-level-btn {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
            background: rgba(255, 255, 255, 0.06) !important;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12) !important;
            border-radius: 6px;
            box-shadow: none;
        }

        .feature-level-btn:hover {
            background: rgba(255, 255, 255, 0.1) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .feature-level-btn.active {
            background: #0078d4 !important;
            border-color: #0078d4 !important;
            color: white !important;
            box-shadow: 0 4px 12px rgba(0, 120, 212, 0.3);
        }

        /* === TESTIMONIALS === */
        .testimonials-section {
            padding: 96px 0;
            background: var(--bg-canvas);
            color: var(--text-primary);
            overflow: hidden;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-xl);
        }

        .testimonial-card {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            aspect-ratio: 3/4;
            box-shadow: var(--elevation-16);
            transition: all var(--transition-slow);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--elevation-64);
        }

        .testimonial-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .testimonial-card:hover img {
            transform: scale(1.1);
        }

        .testimonial-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
        }

        .testimonial-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
        }

        /* === ROI CALCULATOR === */
        .roi-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--text-slate) 0%, #1e293b 100%);
            color: white;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .roi-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .roi-result {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(0, 120, 212, 0.1);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .roi-result:hover {
            border-color: rgba(0, 120, 212, 0.2);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
        }

        .roi-result::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #0078d4 0%, #00b4d8 100%);
        }

        /* === PROPOSAL FORM === */
        .proposal-section {
            padding: 96px 0;
            background: var(--bg-body);
            position: relative;
            overflow: hidden;
        }

        .proposal-form {
            background: var(--bg-elevated);
            border-radius: var(--radius-2xl);
            box-shadow: var(--elevation-8);
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: var(--spacing-2xl);
            max-width: 900px;
            margin: 0 auto;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-lg);
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.2px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            height: 48px;
            padding: 0 var(--spacing-md);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            background: var(--bg-elevated);
            font-family: inherit;
            font-size: 14px;
            transition: all var(--transition-base);
            color: var(--text-primary);
        }

        .form-group textarea {
            height: auto;
            padding: var(--spacing-md);
            min-height: 120px;
            resize: vertical;
        }

        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: var(--border-medium);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--brand-primary);
            background: var(--bg-body);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
        }

        /* === FAQ === */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-canvas);
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px) saturate(200%);
            -webkit-backdrop-filter: blur(30px) saturate(200%);
            border-radius: 20px;
            box-shadow: 
                0 4px 16px rgba(99, 102, 241, 0.06),
                0 2px 8px rgba(0, 0, 0, 0.03),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 1px solid rgba(99, 102, 241, 0.08);
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            background: linear-gradient(180deg, #6366f1, #8b5cf6, #ec4899);
            opacity: 0;
            transition: opacity 400ms;
        }

        .faq-item:hover {
            box-shadow: 
                0 16px 48px rgba(99, 102, 241, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.06),
                0 0 0 1px rgba(99, 102, 241, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border-color: rgba(99, 102, 241, 0.2);
            transform: translateY(-6px) scale(1.01);
        }

        .faq-item:hover::before {
            opacity: 1;
        }

        .faq-item summary {
            padding: 24px 28px;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            color: var(--text-primary);
            transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .faq-item summary:hover {
            color: var(--brand-primary);
            padding-left: 32px;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item[open] summary {
            border-bottom: 1px solid rgba(26, 115, 232, 0.1);
            color: var(--brand-primary);
            background: rgba(26, 115, 232, 0.03);
        }

        .faq-item[open]::before {
            opacity: 1;
        }

        .faq-answer {
            padding: 24px 28px;
            color: var(--text-secondary);
            line-height: 1.75;
            font-size: 16px;
            animation: fadeInUp 300ms ease-out;
        }

        /* === FOOTER - KING UPGRADE === */
        .footer {
            background: #f8fafc;
            background: linear-gradient(180deg, #fafaff 0%, #f5f7ff 30%, #f0f2ff 60%, #e8ebff 100%);
            color: var(--text-secondary);
            padding: 140px 0 100px;
            font-size: 14px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            border-top: 1px solid rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Premium decorative gradient orbs */
        .footer::before {
            content: '';
            position: absolute;
            top: -250px;
            left: -150px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: float 15s ease-in-out infinite;
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: float 12s ease-in-out infinite reverse;
        }

        .footer .container {
            position: relative;
            z-index: 1;
        }

        /* Premium top border with gradient glow */
        .footer-glow-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(26, 115, 232, 0.3) 20%, rgba(26, 115, 232, 0.5) 50%, rgba(139, 92, 246, 0.3) 80%, transparent 100%);
            z-index: 2;
        }

        .footer-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: var(--spacing-2xl);
            flex-wrap: wrap;
            margin-bottom: var(--spacing-3xl);
        }

        .footer-brand {
            max-width: 640px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .footer-logo:hover {
            transform: translateX(4px);
        }

        .footer-logo svg {
            filter: drop-shadow(0 4px 12px rgba(26, 115, 232, 0.3));
            transition: all 0.3s ease;
        }

        .footer-logo:hover svg {
            filter: drop-shadow(0 6px 16px rgba(26, 115, 232, 0.4));
            transform: scale(1.05);
        }

        .footer-logo h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-primary);
            margin: 0;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--text-primary) 0%, #475569 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 640px;
            font-size: 15px;
            letter-spacing: -0.01em;
        }

        .footer-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--text-primary);
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .footer-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .footer-badge:hover::before {
            left: 100%;
        }

        .footer-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .footer-badge.green {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
            border-color: rgba(16, 185, 129, 0.35);
            color: #047857;
        }

        .footer-badge.green:hover {
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .footer-badge.amber {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0.08) 100%);
            border-color: rgba(251, 191, 36, 0.4);
            color: #b45309;
        }

        .footer-badge.amber:hover {
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .footer-badge.blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.06) 100%);
            border-color: rgba(59, 130, 246, 0.35);
            color: #1d4ed8;
        }

        .footer-badge.blue:hover {
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .footer-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .footer-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .footer-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-button:hover::before {
            opacity: 1;
        }

        .footer-button.primary {
            background: linear-gradient(135deg, var(--brand-primary) 0%, #1557b0 100%);
            color: #ffffff;
            box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .footer-button.primary:hover {
            box-shadow: 0 8px 28px rgba(26, 115, 232, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transform: translateY(-3px) scale(1.02);
        }

        .footer-button.primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .footer-button.ghost {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--text-primary);
            border-color: rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .footer-button.ghost:hover {
            color: var(--brand-primary);
            border-color: rgba(26, 115, 232, 0.3);
            box-shadow: 0 8px 24px rgba(26, 115, 232, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
        }

        .footer-contact-card {
            min-width: 320px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .footer-contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-primary) 0%, #8b5cf6 50%, #ec4899 100%);
            border-radius: 20px 20px 0 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-contact-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
        }

        .footer-contact-card:hover::before {
            opacity: 1;
        }

        .footer-contact-title {
            font-weight: 800;
            color: var(--text-primary);
            font-size: 18px;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-contact-title::before {
            content: '';
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
        }

        .contact-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.12) 0%, rgba(26, 115, 232, 0.06) 100%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(26, 115, 232, 0.1);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--brand-primary) 0%, #1557b0 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 20px rgba(26, 115, 232, 0.25);
        }

        .contact-item:hover .contact-icon::before {
            opacity: 1;
        }

        .contact-item:hover .contact-icon svg {
            color: white;
            position: relative;
            z-index: 1;
        }

        .contact-label {
            color: var(--text-secondary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-link {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .contact-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-primary) 0%, #8b5cf6 100%);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .contact-link:hover {
            color: var(--brand-primary);
        }

        .contact-link:hover::after {
            width: 100%;
        }

        .contact-meta {
            color: var(--text-secondary);
            font-size: 13px;
            margin-top: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .contact-meta::before {
            content: '';
            width: 4px;
            height: 4px;
            background: #94a3b8;
            border-radius: 50%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            padding: 48px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1;
        }

        .footer-col {
            position: relative;
        }

        .footer-col h4 {
            color: var(--text-primary);
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Inter', sans-serif;
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-col h4::after {
            content: '';
            flex: 1;
            height: 1px;
            min-width: 30px;
            background: linear-gradient(90deg, rgba(26, 115, 232, 0.3) 0%, transparent 100%);
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col ul li {
            position: relative;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 14px;
            font-weight: 450;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
        }

        .footer-col ul li a::before {
            content: '';
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-primary) 0%, #8b5cf6 100%);
            position: absolute;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .footer-col ul li a:hover {
            color: var(--brand-primary);
            transform: translateX(6px);
        }

        .footer-col ul li a:hover::before {
            width: 100%;
        }

        .footer-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            padding: 32px 0;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .footer-meta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(26, 115, 232, 0.3), transparent);
        }

        .footer-meta-label {
            color: var(--text-secondary);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-meta-label::before {
            content: '';
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, var(--brand-primary) 0%, #8b5cf6 100%);
            border-radius: 50%;
        }

        .footer-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            border-radius: 999px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .footer-pill::before {
            content: '@';
            font-weight: 700;
            color: var(--brand-primary);
        }

        .footer-pill:hover {
            color: var(--brand-primary);
            border-color: rgba(26, 115, 232, 0.3);
            box-shadow: 0 12px 32px rgba(26, 115, 232, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95);
            transform: translateY(-3px);
        }

        .social-icons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--brand-primary) 0%, #1557b0 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-icon svg {
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 12px 28px rgba(26, 115, 232, 0.25);
            border-color: transparent;
        }

        .social-icon:hover::before {
            opacity: 1;
        }

        .social-icon:hover svg {
            color: white;
            transform: scale(1.1);
        }

        /* Individual social icon brand colors on hover */
        .social-icon:nth-child(1):hover { background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%); } /* Facebook */
        .social-icon:nth-child(2):hover { background: linear-gradient(135deg, #0a66c2 0%, #004182 100%); } /* LinkedIn */
        .social-icon:nth-child(3):hover { background: linear-gradient(135deg, #000000 0%, #333333 100%); } /* X/Twitter */
        .social-icon:nth-child(4):hover { background: linear-gradient(135deg, #e4405f 0%, #c13584 100%); } /* Instagram */
        .social-icon:nth-child(5):hover { background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); } /* YouTube */
        .social-icon:nth-child(6):hover { background: linear-gradient(135deg, #e60023 0%, #bd081c 100%); } /* Pinterest */
        .social-icon:nth-child(7):hover { background: linear-gradient(135deg, #333 0%, #24292e 100%); } /* GitHub */

        .social-icon:nth-child(1):hover::before,
        .social-icon:nth-child(2):hover::before,
        .social-icon:nth-child(3):hover::before,
        .social-icon:nth-child(4):hover::before,
        .social-icon:nth-child(5):hover::before,
        .social-icon:nth-child(6):hover::before,
        .social-icon:nth-child(7):hover::before {
            opacity: 0;
        }

        .footer-platforms {
            margin: 48px 0;
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }

        .platform-list {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .platform-list a {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .platform-list a:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .platform-logo {
            height: 32px;
            object-fit: contain;
            filter: grayscale(1);
            opacity: 0.6;
            transition: all 0.4s ease;
        }

        .platform-list a:hover .platform-logo {
            opacity: 1;
            filter: grayscale(0);
        }

        .footer-bottom {
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
            color: var(--text-secondary);
            position: relative;
            z-index: 2;
        }

        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.06) 20%, rgba(0, 0, 0, 0.06) 80%, transparent 100%);
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            align-items: center;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 450;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--brand-primary);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 450;
        }

        .footer-copyright .heart {
            color: #ef4444;
            animation: pulse 1.5s ease-in-out infinite;
        }

        .footer-links a:hover {
            color: var(--brand-primary);
        }

        @media (max-width: 1024px) {
            .footer {
                padding: 80px 0 60px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 32px;
            }

            .footer-top {
                flex-direction: column;
                gap: 32px;
            }

            .footer-contact-card {
                width: 100%;
            }

            .footer-platforms {
                padding: 32px 24px;
            }

            .platform-list {
                gap: 24px;
            }
        }

        @media (max-width: 640px) {
            .footer {
                padding: 60px 0 40px;
            }

            .footer-logo h3 {
                font-size: 22px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .footer-links {
                justify-content: flex-start;
                gap: 12px;
            }

            .footer-badges {
                gap: 8px;
            }

            .footer-badge {
                padding: 8px 12px;
                font-size: 12px;
            }

            .social-icons {
                gap: 8px;
            }

            .social-icon {
                width: 38px;
                height: 38px;
            }

            .footer-platforms {
                padding: 24px 16px;
                border-radius: 16px;
            }

            .platform-list a {
                padding: 12px 16px;
            }
        }

        /* === MOBILE MENU === */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 80px;
            left: 0;
            width: 100%;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: var(--shadow-lg);
            padding: 16px;
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu-btn {
            display: none;
            padding: 8px;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        /* === RESPONSIVE === */
        /* Large Tablets & Small Desktops */
        @media (max-width: 1280px) {
            .container {
                padding: 0 20px;
            }

            .hero-layout {
                gap: 40px;
            }

            .hero-title {
                font-size: 56px;
                letter-spacing: -1px;
            }

            .bento-grid {
                gap: 20px;
                grid-template-rows: repeat(2, 320px);
            }

            .pricing-grid {
                gap: 20px;
            }
        }

        /* Tablets */
        @media (max-width: 1024px) {
            .header {
                padding: 0 20px;
                height: 70px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .logo {
                font-size: 20px;
                gap: 6px;
            }

            .logo img {
                height: 32px;
            }

            .mega-menu-container {
                height: 500px;
            }

            .mm-sidebar {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
                padding: 20px 0;
                display: flex;
                overflow-x: auto;
            }

            .mm-cat-item {
                padding: 12px 20px;
                white-space: nowrap;
            }

            .mm-content {
                padding: 30px 20px;
                height: 400px;
                overflow-y: auto;
            }

            .mm-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .hero {
                padding: 140px 0 100px;
                min-height: auto;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-title {
                font-size: 44px;
                letter-spacing: -1px;
                line-height: 1.1;
            }

            .hero-desc {
                font-size: 18px;
                max-width: 100%;
            }

            .hero-visual {
                height: 350px;
            }

            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 40px;
                padding: 24px;
            }

            .stat-item h4 {
                font-size: 28px;
            }

            .stat-item p {
                font-size: 12px;
            }

            .bento-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 20px;
            }

            .bento-card {
                padding: 30px;
                border-radius: 16px;
            }

            .bento-col-2 {
                grid-column: span 1;
            }

            .bento-row-2 {
                grid-row: span 1;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .best-value {
                transform: scale(1);
            }

            .comp-table th,
            .comp-table td {
                padding: 16px 12px;
                font-size: 13px;
            }

            .comp-table td:first-child {
                padding-left: 20px;
                width: 40%;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                aspect-ratio: 16/9;
            }

            .roi-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .proposal-form {
                padding: 32px 24px;
                max-width: 100%;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        /* Small Tablets & Large Phones */
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }

            .header {
                padding: 0 16px;
                height: 65px;
            }

            .container {
                padding: 0 16px;
            }

            .btn-lg {
                height: 52px;
                padding: 0 28px;
                font-size: 15px;
                border-radius: 12px;
            }

            .logo {
                font-size: 18px;
            }

            .logo img {
                height: 28px;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero-title {
                font-size: 36px;
                letter-spacing: -0.5px;
            }

            .hero-desc {
                font-size: 16px;
                margin-bottom: 24px;
            }

            .hero-visual {
                height: 300px;
            }

            .hero-badge {
                font-size: 12px;
                padding: 4px 12px;
                margin-bottom: 20px;
            }

            .rating-badge {
                font-size: 13px;
                padding: 8px 16px;
            }

            .rating-badge img {
                width: 18px;
                height: 18px;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
                padding: 20px;
                margin-top: 30px;
            }

            .stat-item h4 {
                font-size: 24px;
            }

            .stat-item p {
                font-size: 11px;
            }

            .bento-section {
                padding: 80px 0;
            }

            .bento-card {
                padding: 24px;
                border-radius: 12px;
            }

            .bento-title {
                font-size: 20px;
            }

            .bento-text {
                font-size: 14px;
            }

            .comparison-section {
                padding: 60px 0;
            }

            .comp-wrapper {
                border-radius: 12px;
            }

            .comp-table {
                min-width: 100%;
                font-size: 12px;
            }

            .comp-table th {
                font-size: 14px;
                padding: 12px 8px;
            }

            .comp-table td {
                padding: 12px 8px;
            }

            .comp-table td:first-child {
                padding-left: 12px;
                font-size: 13px;
            }

            .price-card {
                border-radius: 16px;
            }

            .price-header {
                padding: 24px 20px;
            }

            .price-title {
                font-size: 18px;
            }

            .price-val {
                font-size: 36px;
            }

            .feature-list li {
                font-size: 13px;
                margin-bottom: 12px;
            }

            .testimonials-section {
                padding: 60px 0;
            }

            .roi-section {
                padding: 60px 0;
            }

            .roi-result {
                padding: 32px 24px;
            }

            .proposal-section {
                padding: 60px 0;
            }

            .proposal-form {
                padding: 28px 20px;
                max-width: 100%;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                height: 44px;
                padding: 0 12px;
                font-size: 14px;
            }

            .faq-section {
                padding: 60px 0;
            }

            .faq-list {
                max-width: 100%;
            }

            .faq-item summary {
                padding: 16px;
                font-size: 15px;
            }

            .faq-answer {
                padding: 16px;
                font-size: 14px;
            }

            .footer {
                padding: 50px 0 20px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 30px;
            }

            .footer-col h4 {
                font-size: 13px;
                margin-bottom: 16px;
            }

            .footer-col ul li {
                margin-bottom: 10px;
            }

            .footer-col ul li a {
                font-size: 12px;
            }

            .footer-apps-grid {
                gap: 30px;
            }

            .footer-app-item {
                font-size: 14px;
            }
        }

        /* Mobile Phones */
        @media (max-width: 640px) {
            html {
                font-size: 14px;
            }

            .header {
                padding: 0 12px;
                height: 60px;
                gap: 12px;
            }

            .container {
                padding: 0 12px;
            }

            .logo {
                font-size: 16px;
                gap: 4px;
            }

            .logo img {
                height: 24px;
            }

            .btn {
                padding: 10px 18px;
                font-size: 13px;
                border-radius: 6px;
                gap: 4px;
            }

            .btn-lg {
                height: 44px;
                padding: 0 20px;
                font-size: 13px;
                border-radius: 8px;
            }

            .btn-red {
                font-size: 11px;
                padding: 8px 14px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-badge {
                font-size: 11px;
                padding: 3px 10px;
                margin-bottom: 16px;
                letter-spacing: 0.5px;
            }

            .hero-title {
                font-size: 28px;
                letter-spacing: -0.3px;
                line-height: 1.2;
                margin-bottom: 16px;
            }

            .hero-desc {
                font-size: 14px;
                margin-bottom: 16px;
            }

            .hero-visual {
                height: 250px;
                margin-top: 20px;
            }

            .hero-stats {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                padding: 16px;
                margin-top: 20px;
                border-radius: 12px;
            }

            .stat-item h4 {
                font-size: 20px;
                margin-bottom: 4px;
            }

            .stat-item p {
                font-size: 10px;
            }

            .marquee-item {
                padding: 0 20px;
            }

            .bento-section {
                padding: 60px 0;
            }

            .bento-card {
                padding: 16px;
                border-radius: 12px;
            }

            .bento-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .bento-text {
                font-size: 13px;
            }

            .comparison-section {
                padding: 40px 0;
            }

            .comp-wrapper {
                border-radius: 8px;
            }

            .comp-table {
                font-size: 11px;
            }

            .comp-table th {
                font-size: 12px;
                padding: 10px 6px;
            }

            .comp-table td {
                padding: 10px 6px;
            }

            .comp-table td:first-child {
                padding-left: 8px;
                font-size: 12px;
                width: 45%;
            }

            .pricing-grid {
                gap: 16px;
            }

            .price-card {
                border-radius: 12px;
            }

            .price-header {
                padding: 20px 16px;
            }

            .price-body {
                padding: 20px;
            }

            .price-title {
                font-size: 16px;
            }

            .price-val {
                font-size: 28px;
            }

            .price-sub {
                font-size: 12px;
            }

            .feature-list li {
                font-size: 12px;
                margin-bottom: 10px;
                gap: 8px;
            }

            .testimonials-section {
                padding: 40px 0;
            }

            .testimonial-grid {
                gap: 16px;
            }

            .testimonial-card {
                aspect-ratio: 3/4;
            }

            .roi-section {
                padding: 40px 0;
            }

            .roi-grid {
                gap: 30px;
            }

            .roi-result {
                padding: 24px;
            }

            .proposal-section {
                padding: 40px 0;
            }

            .proposal-form {
                padding: 20px;
                border-radius: 12px;
            }

            .form-grid {
                gap: 16px;
            }

            .form-group {
                gap: 6px;
            }

            .form-group label {
                font-size: 13px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                height: 40px;
                padding: 0 10px;
                font-size: 13px;
            }

            .faq-section {
                padding: 40px 0;
            }

            .faq-item {
                border-radius: 8px;
                margin-bottom: 12px;
            }

            .faq-item summary {
                padding: 14px;
                font-size: 14px;
            }

            .faq-answer {
                padding: 12px 14px;
                font-size: 13px;
            }

            .footer {
                padding: 40px 0 20px;
                font-size: 12px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 20px;
            }

            .footer-col h4 {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .footer-col ul li a {
                font-size: 11px;
            }

            .footer-divider {
                margin: 20px 0;
            }

            .footer-middle {
                flex-direction: column;
                gap: 16px;
                padding: 16px 0;
            }

            .social-icons {
                gap: 10px;
            }

            .social-icon {
                width: 32px;
                height: 32px;
            }

            .footer-apps {
                margin: 20px 0;
            }

            .footer-apps-grid {
                gap: 16px;
                padding-bottom: 20px;
                flex-direction: column;
            }

            .footer-app-item {
                font-size: 12px;
            }

            .footer-bottom {
                padding-top: 16px;
                font-size: 10px;
            }

            .footer-bottom a {
                margin: 0 6px;
            }

            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 480px) {
            .header {
                height: 56px;
                padding: 0 10px;
            }

            .container {
                padding: 0 10px;
            }

            .hero {
                padding: 80px 0 40px;
            }

            .hero-title {
                font-size: 24px;
                margin-bottom: 12px;
            }

            .hero-desc {
                font-size: 13px;
            }

            .btn-lg {
                height: 40px;
                padding: 0 16px;
                font-size: 12px;
            }
        }

        /* === SCROLL TO TOP === */
        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: var(--brand-primary);
            color: white;
            border: none;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--elevation-8);
            transition: all var(--transition-base);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.8);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .scroll-top:hover {
            background: var(--brand-primary-hover);
            box-shadow: var(--elevation-16);
            transform: scale(1) translateY(-4px);
        }

        /* === ADDITIONAL ANIMATIONS === */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
            will-change: transform;
        }

        /* === TOOLTIP === */
        .rating-tooltip {
            position: absolute;
            top: calc(100% + 16px);
            left: 50%;
            transform: translateX(-50%);
            width: 320px;
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow-2xl);
            padding: 24px;
            border: 1px solid #e5e7eb;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s;
            z-index: 50;
            color: var(--text-main);
            text-align: left;
        }

        .rating-badge:hover .rating-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .rating-tooltip::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 16px;
            height: 16px;
            background: white;
            border-top: 1px solid #e5e7eb;
            border-left: 1px solid #e5e7eb;
        }

        /* Testimonial Slider Animation */
        @keyframes slideTestimonials {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-412px * 4));
            }
        }
        
        .testimonial-slider-track:hover {
            animation-play-state: paused;
        }
        /* === CYBER FOOTER + TRUST GLOW === */
        [style*="scrollLogos"] {
            gap: 72px !important;
        }

        [style*="scrollLogos"] > div {
            position: relative;
            background: rgba(255, 255, 255, 0.92);
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 12px 45px rgba(15, 23, 42, 0.14);
            backdrop-filter: blur(12px);
            transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
        }

        [style*="scrollLogos"] > div:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 22px 70px color-mix(in srgb, var(--logo-glow, #2563eb) 35%, rgba(15, 23, 42, 0.2)),
                0 0 0 10px color-mix(in srgb, var(--logo-glow, #2563eb) 14%, transparent);
        }

        [style*="scrollLogos"] img,
        [style*="scrollLogos"] svg {
            filter: drop-shadow(0 0 20px color-mix(in srgb, var(--logo-glow, #2563eb) 50%, transparent)) !important;
            opacity: 0.95 !important;
        }

        [style*="scrollLogos"] > div:nth-child(1),
        [style*="scrollLogos"] > div:nth-child(11) {
            --logo-glow: #4285f4;
        }

        [style*="scrollLogos"] > div:nth-child(2),
        [style*="scrollLogos"] > div:nth-child(12) {
            --logo-glow: #ff0033;
        }

        [style*="scrollLogos"] > div:nth-child(3),
        [style*="scrollLogos"] > div:nth-child(13) {
            --logo-glow: #5865f2;
        }

        [style*="scrollLogos"] > div:nth-child(4),
        [style*="scrollLogos"] > div:nth-child(14) {
            --logo-glow: #00b8a9;
        }

        [style*="scrollLogos"] > div:nth-child(5),
        [style*="scrollLogos"] > div:nth-child(15) {
            --logo-glow: #ef4444;
        }

        [style*="scrollLogos"] > div:nth-child(6),
        [style*="scrollLogos"] > div:nth-child(16) {
            --logo-glow: #0ea5e9;
        }

        [style*="scrollLogos"] > div:nth-child(7),
        [style*="scrollLogos"] > div:nth-child(17) {
            --logo-glow: #6366f1;
        }

        [style*="scrollLogos"] > div:nth-child(8),
        [style*="scrollLogos"] > div:nth-child(18) {
            --logo-glow: #f97316;
        }

        [style*="scrollLogos"] > div:nth-child(9),
        [style*="scrollLogos"] > div:nth-child(19) {
            --logo-glow: #0ea5e9;
        }

        [style*="scrollLogos"] > div:nth-child(10),
        [style*="scrollLogos"] > div:nth-child(20) {
            --logo-glow: #a855f7;
        }


