*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --bg: #0B0940;
            --bg-elevated: #08072e;
            --text: #f0f4f8;
            --text-dark: #d3dbe4;
            --text-secondary: #a0aec8;
            --text-muted: #5a6888;
            --card: rgba(4, 25, 140, 0.18);
            --card-hover: rgba(5, 64, 242, 0.15);
            --border: rgba(5, 64, 242, 0.18);
            --border-light: rgba(5, 64, 242, 0.1);
            --primary: #0540F2;
            --primary-glow: rgba(5, 64, 242, 0.4);
            --secondary: #04198C;
            --yellow: #FFDB58;
            --yellow-glow: rgba(255, 219, 88, 0.4);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, #06052e 0%, #0B0940 30%, #06052e 60%, #0B0940 100%);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========================================
           NAVBAR - Clean & Minimal
        ======================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 5%;
            height: 80px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            background: linear-gradient(180deg, rgba(10, 14, 23, 0.9) 0%, rgba(10, 14, 23, 0.7) 50%, transparent 100%);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: none;
        }
        
        /* Logo Fixa - Independente da navbar */
        .fixed-logo {
            position: fixed;
            top: -115px;
            left: -50px;
            z-index: 1001;
        }
        
        .fixed-logo img {
            height: 300px;
            width: auto;
            filter: drop-shadow(0 0 30px var(--primary-glow));
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .fixed-logo img:hover {
            transform: scale(1.03);
            filter: drop-shadow(0 0 50px var(--primary-glow));
        }
        
        .logo {
            display: none;
        }
        
        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
            align-items: center;
            transform: translateX(-20px);
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
            transition: all 0.25s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--text);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            border: none;
            border-radius: 100px;
            color: #000;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px var(--yellow-glow);
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--yellow-glow);
        }

        /* ========================================
           HERO - Premium & Immersive
        ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated gradient orbs */
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(5, 64, 242, 0.3) 0%, transparent 70%);
            filter: blur(80px);
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 219, 88, 0.1) 0%, transparent 70%);
            filter: blur(80px);
            animation: float 10s ease-in-out infinite reverse;
            pointer-events: none;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }
        
        /* Subtle grid pattern */
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
            pointer-events: none;
        }

        /* Cybernetic Performance Graph Animation */
        .cyber-graph {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            pointer-events: none;
            overflow: hidden;
            opacity: 0.3;
            z-index: 0;
        }

        .cyber-graph svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .graph-line {
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .graph-line-1 {
            stroke: url(#graphGradient1);
            stroke-dasharray: 1500;
            stroke-dashoffset: 1500;
            animation: drawLine 3s ease-out forwards, glowPulse 4s ease-in-out infinite 3s;
        }

        .graph-line-2 {
            stroke: url(#graphGradient2);
            stroke-dasharray: 1500;
            stroke-dashoffset: 1500;
            animation: drawLine 3.5s ease-out 0.5s forwards, glowPulse 4s ease-in-out infinite 3.5s;
            opacity: 0.7;
        }

        .graph-line-3 {
            stroke: url(#graphGradient3);
            stroke-dasharray: 1500;
            stroke-dashoffset: 1500;
            animation: drawLine 4s ease-out 1s forwards, glowPulse 4s ease-in-out infinite 4s;
            opacity: 0.5;
        }

        .graph-area {
            opacity: 0;
            animation: fadeInArea 2s ease-out 2s forwards;
        }

        .graph-dots {
            opacity: 0;
            animation: fadeInDots 1s ease-out 3s forwards;
        }

        .graph-dot {
            fill: var(--primary);
            filter: drop-shadow(0 0 6px var(--primary));
        }

        .graph-dot-glow {
            fill: var(--primary);
            animation: dotPulse 2s ease-in-out infinite;
        }

        .data-particle {
            fill: var(--primary);
            opacity: 0;
            animation: particleFloat 4s ease-in-out infinite;
        }

        .data-particle:nth-child(2) { animation-delay: 0.5s; }
        .data-particle:nth-child(3) { animation-delay: 1s; }
        .data-particle:nth-child(4) { animation-delay: 1.5s; }
        .data-particle:nth-child(5) { animation-delay: 2s; }

        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }

        @keyframes fadeInArea {
            to { opacity: 0.15; }
        }

        @keyframes fadeInDots {
            to { opacity: 1; }
        }

        @keyframes glowPulse {
            0%, 100% { filter: drop-shadow(0 0 2px currentColor); }
            50% { filter: drop-shadow(0 0 8px currentColor); }
        }

        @keyframes dotPulse {
            0%, 100% { r: 4; opacity: 0.5; }
            50% { r: 8; opacity: 0.2; }
        }

        @keyframes particleFloat {
            0% { opacity: 0; transform: translateY(20px); }
            20% { opacity: 0.8; }
            80% { opacity: 0.8; }
            100% { opacity: 0; transform: translateY(-100px); }
        }

        /* Scan line effect */
        .cyber-scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
            opacity: 0.3;
            animation: scanMove 4s linear infinite;
            pointer-events: none;
        }

        @keyframes scanMove {
            0% { top: 0; opacity: 0; }
            10% { opacity: 0.3; }
            90% { opacity: 0.3; }
            100% { top: 100%; opacity: 0; }
        }

        /* Performance metrics floating */
        .cyber-metrics {
            position: absolute;
            bottom: 15%;
            left: 5%;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 5;
            opacity: 0;
            animation: fadeInMetrics 1s ease-out 2.5s forwards;
        }

        @keyframes fadeInMetrics {
            to { opacity: 0.7; }
        }

        .metric-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Courier New', monospace;
            font-size: 0.75rem;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary-glow);
        }

        .metric-bar {
            width: 60px;
            height: 4px;
            background: rgba(79, 144, 230, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .metric-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 2px;
            width: 0;
            transition: width 1.2s ease;
        }

        .cyber-metrics.active .metric-fill { width: 100%; }
        
        .hero-content {
            flex: 1;
            max-width: 650px;
            z-index: 10;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--yellow);
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--yellow);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--yellow);
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }
        
        .hero h1 {
            font-size: clamp(3rem, 5.5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 28px;
            letter-spacing: -0.03em;
        }
        
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, #60a5fa 50%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            cursor: default;
            position: relative;
        }
        
        .hero h1 .highlight:hover {
            background: linear-gradient(135deg, var(--yellow) 0%, #fbbf24 50%, #f59e0b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px var(--yellow-glow)) drop-shadow(0 0 40px var(--yellow-glow));
            animation: energize 0.3s ease-out;
        }
        
        @keyframes energize {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 520px;
            font-weight: 400;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            border: none;
            border-radius: 100px;
            color: #000;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 
                0 4px 20px var(--yellow-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 8px 30px var(--yellow-glow),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary {
            padding: 18px 36px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            border-radius: 100px;
            color: var(--text);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 5;
        }
        
        .hero-image img {
            max-width: 115%;
            height: auto;
            border-radius: 24px;
            box-shadow: 
                0 60px 120px -30px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .hero-image:hover img {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 
                0 80px 140px -30px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.08);
        }

        /* ========================================
           STATS - Bold Numbers
        ======================================== */
        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            padding: 80px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .stat-card {
            text-align: center;
            padding: 60px 36px;
            background: linear-gradient(145deg, rgba(4, 25, 140, 0.3) 0%, rgba(11, 9, 64, 0.6) 100%);
            border-radius: 28px;
            border: 1px solid rgba(5, 64, 242, 0.15);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(5, 64, 242, 0.12) 0%, rgba(4, 25, 140, 0.06) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px) scale(1.03);
            border-color: rgba(5, 64, 242, 0.5);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(5, 64, 242, 0.2);
        }
        
        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-number {
            font-size: clamp(2.4rem, 4vw, 3.5rem);
            font-weight: 900;
            letter-spacing: -0.04em;
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 12px var(--yellow-glow));
            margin-bottom: 14px;
            position: relative;
            line-height: 1.1;
            min-height: 1.2em;
            white-space: nowrap;
        }
        
        .stat-label {
            color: var(--text-secondary);
            font-size: 1.05rem;
            font-weight: 500;
            letter-spacing: 0.01em;
        }

        /* ========================================
           FEATURES - Elegant Cards
        ======================================== */
        .features {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 72px;
        }
        
        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }
        
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            max-width: 550px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 28px;
        }
        
        .feature-card {
            padding: 40px 36px;
            background: linear-gradient(160deg, rgba(4, 25, 140, 0.25) 0%, rgba(11, 9, 64, 0.5) 100%);
            border-radius: 24px;
            border: 1px solid rgba(5, 64, 242, 0.12);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(5, 64, 242, 0.4);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(-5deg);
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
        }
        
        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--yellow);
            transition: color 0.3s;
        }
        
        .feature-card:hover .feature-icon svg {
            color: #fff;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }
        
        .feature-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ========================================
           PRODUCTS - Premium Pricing Cards
        ======================================== */
        .products {
            padding: 100px 5%;
            position: relative;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 219, 88, 0.05) 0%, rgba(5, 64, 242, 0.08) 40%, transparent 70%);
            pointer-events: none;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            padding: 40px 32px;
            background: linear-gradient(160deg, rgba(4, 25, 140, 0.25) 0%, rgba(11, 9, 64, 0.55) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 28px;
            border: 1px solid rgba(5, 64, 242, 0.12);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-12px);
            border-color: rgba(5, 64, 242, 0.5);
            box-shadow: 
                0 40px 80px -20px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(5, 64, 242, 0.25);
        }
        
        .product-card.featured {
            background: linear-gradient(180deg, rgba(255, 219, 88, 0.06) 0%, rgba(4, 25, 140, 0.3) 40%, rgba(11, 9, 64, 0.55) 100%);
            border-color: rgba(255, 219, 88, 0.25);
        }
        
        .product-card.featured::before {
            content: '⭐ MAIS VENDIDO';
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #000;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 15px var(--yellow-glow);
        }
        
        .product-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        
        .product-card .description {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 24px;
            flex-grow: 1;
        }
        
        .product-price {
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }
        
        .product-card.featured .product-price {
            color: var(--yellow);
        }
        
        .product-price small {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-secondary);
        }
        
        .product-features {
            list-style: none;
            margin: 24px 0 32px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
        }
        
        .product-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--text-dark);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        
        .product-features li:last-child {
            border-bottom: none;
        }
        
        .product-features .check {
            color: var(--secondary);
            flex-shrink: 0;
        }
        
        .product-cta {
            width: 100%;
            padding: 16px;
            background: var(--card-hover);
            border: 1px solid var(--border);
            border-radius: 14px;
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            display: block;
        }
        
        .product-cta:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        
        .product-card.featured .product-cta {
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            border: none;
            color: #000;
            font-weight: 700;
        }
        
        .product-card.featured .product-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--yellow-glow);
        }

        /* ========================================
           FAQ - Clean Accordion
        ======================================== */
        .faq {
            padding: 100px 5%;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 16px;
            background: linear-gradient(160deg, rgba(4, 25, 140, 0.2) 0%, rgba(11, 9, 64, 0.5) 100%);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(5, 64, 242, 0.1);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: rgba(5, 64, 242, 0.3);
        }
        
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 30px -10px rgba(79, 144, 230, 0.2);
        }
        
        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: -0.01em;
            transition: color 0.2s;
        }
        
        .faq-question:hover {
            color: var(--primary);
        }
        
        .faq-answer {
            padding: 0 28px 24px;
            color: var(--text-secondary);
            display: none;
            font-size: 0.95rem;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--text-muted);
            transition: all 0.3s ease;
            font-weight: 300;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }

        /* ========================================
           PROMO BANNER
        ======================================== */
        .promo-banner {
            padding: 100px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .promo-content {
            display: flex;
            align-items: center;
            gap: 60px;
            background: linear-gradient(145deg, rgba(4, 25, 140, 0.25) 0%, rgba(11, 9, 64, 0.5) 100%);
            border-radius: 32px;
            border: 1px solid rgba(5, 64, 242, 0.12);
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .promo-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(5, 64, 242, 0.08) 0%, rgba(4, 25, 140, 0.05) 100%);
            pointer-events: none;
        }

        .promo-text {
            flex: 1;
            z-index: 1;
        }

        .promo-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .promo-highlight {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 12px;
        }

        .promo-text p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.7;
        }

        .promo-image {
            flex: 1;
            z-index: 1;
        }

        .promo-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
        }

        /* ========================================
           BENCHMARKS CAROUSEL
        ======================================== */
        .benchmarks {
            padding: 80px 0;
            width: 100%;
            overflow: hidden;
        }

        .benchmarks .section-header {
            padding: 0 5%;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .benchmark-carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .benchmark-track {
            display: flex;
            gap: 20px;
            transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
            padding: 0 20px;
            cursor: grab;
        }

        .benchmark-track.dragging {
            cursor: grabbing;
            transition: none;
        }

        .benchmark-slide {
            flex: 0 0 calc(33.333% - 14px);
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .benchmark-slide img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: rgba(11, 9, 64, 0.85);
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            backdrop-filter: blur(8px);
        }

        .carousel-prev {
            left: 16px;
        }

        .carousel-next {
            right: 16px;
        }

        .carousel-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-50%) scale(1.1);
        }

        .benchmark-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
        }

        .benchmark-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .benchmark-dot.active {
            background: var(--yellow);
            border-color: var(--yellow);
            box-shadow: 0 0 10px var(--yellow-glow);
        }

        .benchmark-dot:hover {
            border-color: var(--yellow);
        }

        /* ========================================
           TESTIMONIALS
        ======================================== */
        .testimonials {
            padding: 80px 0;
            width: 100%;
            overflow: hidden;
        }

        .testimonials-layout {
            display: flex;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            gap: 60px;
        }

        .testimonials-stat {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .testimonials-stat-number {
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 900;
            color: var(--yellow);
            line-height: 1;
            font-style: italic;
            text-shadow: 0 0 30px var(--yellow-glow);
        }

        .testimonials-stat-label {
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            font-weight: 900;
            color: var(--yellow);
            letter-spacing: 0.05em;
            line-height: 1.1;
            text-shadow: 0 0 20px var(--yellow-glow);
        }

        .testimonials-slider {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .testimonials-track {
            display: flex;
            width: 100%;
            position: relative;
        }

        .testimonial-slide {
            flex: 0 0 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 40px 20px;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }

        .testimonial-slide.active {
            opacity: 1;
            position: relative;
            pointer-events: auto;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary) 0%, #1a1a3e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #fff;
            flex-shrink: 0;
            margin-bottom: 24px;
            border: 2px solid rgba(5, 64, 242, 0.3);
            object-fit: cover;
        }

        .testimonial-text {
            color: var(--text);
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            line-height: 1.6;
            margin-bottom: 20px;
            font-weight: 700;
            font-style: italic;
            max-width: 600px;
        }

        .testimonial-stars {
            color: var(--yellow);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 6px;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 1rem;
            display: block;
            color: var(--text);
        }

        .testimonial-tag {
            color: var(--text-muted);
            font-size: 0.85rem;
            display: block;
            margin-top: 4px;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .testimonial-dot.active {
            background: var(--text);
            border-color: var(--text);
        }

        .testimonial-dot:hover {
            border-color: var(--text-secondary);
        }

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-section {
            padding: 100px 5%;
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 219, 88, 0.06) 0%, rgba(5, 64, 242, 0.1) 40%, transparent 70%);
            pointer-events: none;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .cta-sub {
            color: var(--yellow) !important;
            font-weight: 600;
            font-size: 1.2rem !important;
            margin-top: 8px;
        }

        /* Highlight Yellow - Keyword Emphasis */
        .highlight-yellow {
            color: var(--yellow);
            font-weight: 700;
            text-shadow: 0 0 20px var(--yellow-glow);
        }

        .highlight-yellow-glow {
            background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 12px var(--yellow-glow));
            font-weight: 700;
        }

        /* X-mark for features not included */
        .x-mark {
            color: #ef4444;
            flex-shrink: 0;
        }

        .product-features li.not-included {
            opacity: 0.5;
        }

        /* ========================================
           FOOTER - Expanded 4-Column
        ======================================== */
        .footer {
            padding: 60px 5% 40px;
            border-top: 1px solid rgba(5, 64, 242, 0.15);
            background: linear-gradient(180deg, rgba(4, 25, 140, 0.15) 0%, #0B0940 100%);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }
        
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-top: 12px;
        }

        .footer-logo-img {
            height: 200px;
            width: auto;
            opacity: 0.85;
            filter: drop-shadow(0 0 20px var(--primary-glow));
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin-bottom: 8px;
            margin-top: -60px;
            margin-left: -40px;
        }

        .footer-logo-img:hover {
            opacity: 1;
            transform: scale(1.03);
            filter: drop-shadow(0 0 40px var(--primary-glow));
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-nav h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text);
        }

        .footer-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--yellow);
        }

        /* Legacy footer styles (for pages still using old footer) */
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
        }
        
        .footer-logo img {
            height: 90px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        
        .footer-logo img:hover {
            opacity: 1;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .footer-links a:hover {
            color: var(--yellow);
        }
        
        .footer-copy {
            color: var(--text-muted);
            font-size: 0.85rem;
            text-align: center;
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 140px;
            }
            
            .hero-content {
                max-width: 100%;
                margin-bottom: 60px;
            }
            
            .hero p {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image img {
                max-width: 100%;
            }

            .promo-content {
                flex-direction: column;
                padding: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                height: 70px;
            }
            
            .fixed-logo {
                top: 10px;
                left: 3%;
            }
            
            .fixed-logo img {
                height: 120px;
            }
            
            .cyber-metrics {
                display: none;
            }
            
            .nav-links {
                display: none;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            
            .stat-number {
                font-size: clamp(2.2rem, 8vw, 3rem);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 16px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-layout {
                flex-direction: column;
                text-align: center;
                gap: 32px;
            }

            .testimonials-stat {
                align-items: center;
            }

            .promo-content {
                flex-direction: column;
                padding: 28px;
            }

            .carousel-btn {
                width: 36px;
                height: 36px;
            }

            .benchmark-slide {
                flex: 0 0 calc(50% - 10px);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        
        @media (max-width: 480px) {
            .stats {
                grid-template-columns: 1fr;
            }

            .benchmark-slide {
                flex: 0 0 calc(85% - 10px);
            }
        }