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

        :root {
            --color-dark-blue: #0A1628;
            --color-navy: #1a2942;
            --color-cyan: #00D9FF;
            --color-cyan-light: #4DFFFF;
            --color-cyan-dark: #00A8CC;
            --color-white: #FFFFFF;
            --color-gray-light: #E8F0F7;
            --color-gray: #8B9AB5;
            --font-display: 'Orbitron', sans-serif;
            --font-mono: 'Space Mono', monospace;
            --font-body: 'DM Sans', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-dark-blue);
            color: var(--color-white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* AEO/GEO: crawlable static summary — visually hidden, available to bots & screen readers */
        .aeo-static {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Animated background */
        .bg-animated {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0A1628 0%, #1a2942 50%, #0A1628 100%);
        }

        .bg-animated::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(77, 255, 255, 0.08) 0%, transparent 50%);
            animation: bgPulse 8s ease-in-out infinite;
        }

        @keyframes bgPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        /* Grid overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: 
                linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 217, 255, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            background: rgba(10, 22, 40, 0.95);
            box-shadow: 0 4px 30px rgba(0, 217, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .logo::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--color-cyan);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--color-cyan);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--color-gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--color-cyan);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-cyan);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--color-white);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
            padding: 0.5rem;
        }

        @media (max-width: 1200px) {
            .nav-menu {
                gap: 1.2rem;
            }

            .nav-link {
                font-size: 0.9rem;
            }
        }

        /* Buttons */
        .btn {
            padding: 0.85rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-block;
            font-family: var(--font-body);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            color: var(--color-dark-blue);
            box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            animation: btnShine 3.5s ease-in-out infinite;
        }

        @keyframes btnShine {
            0%, 100% { left: -100%; }
            50% { left: 150%; }
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(0, 217, 255, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-cyan);
            border: 2px solid var(--color-cyan);
        }

        .btn-secondary:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Main content */
        .main-content {
            margin-top: 80px;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-orbs {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.35;
            animation: orbDrift 12s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 320px;
            height: 320px;
            background: var(--color-cyan);
            top: -80px;
            right: 10%;
            animation-delay: 0s;
        }

        .hero-orb-2 {
            width: 240px;
            height: 240px;
            background: var(--color-cyan-light);
            bottom: 10%;
            left: 5%;
            animation-delay: -4s;
        }

        .hero-orb-3 {
            width: 180px;
            height: 180px;
            background: rgba(77, 255, 255, 0.6);
            top: 40%;
            left: 40%;
            animation-delay: -8s;
        }

        @keyframes orbDrift {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.08); }
            66% { transform: translate(-20px, 25px) scale(0.95); }
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(0, 217, 255, 0.12);
            border: 1px solid rgba(0, 217, 255, 0.35);
            border-radius: 4px;
            padding: 0.45rem 1.1rem;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--color-cyan-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.25rem;
            animation: fadeInUp 0.7s ease-out, badgeGlow 2s step-end infinite;
        }

        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 0 0 rgba(0, 217, 255, 0); }
            50% { box-shadow: 0 0 24px rgba(0, 217, 255, 0.25); }
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 217, 255, 0.15);
            animation: fadeInUp 0.8s ease-out 0.55s backwards;
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-cyan);
            display: block;
            line-height: 1.2;
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--color-gray);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h1 {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cyan-light) 45%, var(--color-white) 90%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out, gradientFlow 5s ease-in-out infinite;
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .hero-text h2 {
            font-size: 1.25rem;
            color: var(--color-gray);
            margin-bottom: 2rem;
            font-weight: 400;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ── Machine / Robot Hero Theme ── */
        .hero-machine {
            background: radial-gradient(ellipse at 70% 50%, rgba(0, 217, 255, 0.06) 0%, transparent 60%);
        }

        .hero-machine-layer {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .hero-scanline {
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
            opacity: 0.35;
            animation: scanLine 4s linear infinite;
        }

        @keyframes scanLine {
            0% { top: -2px; opacity: 0; }
            10% { opacity: 0.4; }
            90% { opacity: 0.4; }
            100% { top: 100%; opacity: 0; }
        }

        .hero-hud {
            position: absolute;
            width: 40px;
            height: 40px;
            border-color: rgba(0, 217, 255, 0.4);
            border-style: solid;
            animation: hudPulse 2s step-end infinite;
        }

        .hero-hud-tl { top: 8%; left: 4%; border-width: 2px 0 0 2px; }
        .hero-hud-tr { top: 8%; right: 4%; border-width: 2px 2px 0 0; }
        .hero-hud-bl { bottom: 8%; left: 4%; border-width: 0 0 2px 2px; }
        .hero-hud-br { bottom: 8%; right: 4%; border-width: 0 2px 2px 0; }

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

        .hero-circuit {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
            opacity: 0.25;
            animation: circuitFlow 3s linear infinite;
        }

        .hero-circuit-1 { width: 200px; top: 30%; left: 0; animation-delay: 0s; }
        .hero-circuit-2 { width: 160px; bottom: 25%; right: 0; animation-delay: -1.5s; }

        @keyframes circuitFlow {
            0% { transform: translateX(-100%); opacity: 0; }
            50% { opacity: 0.5; }
            100% { transform: translateX(100vw); opacity: 0; }
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #00ff88;
            border-radius: 50%;
            box-shadow: 0 0 8px #00ff88;
            animation: dotBlink 1s step-end infinite;
        }

        @keyframes dotBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }

        .hero-cursor {
            animation: cursorBlink 0.8s step-end infinite;
            color: var(--color-cyan);
            margin-left: 2px;
        }

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

        .hero-stat-number {
            animation: statFlicker 4s step-end infinite;
        }

        @keyframes statFlicker {
            0%, 92%, 100% { opacity: 1; }
            93% { opacity: 0.6; }
            94% { opacity: 1; }
            95% { opacity: 0.4; }
            96% { opacity: 1; }
        }

        .hero-visual {
            position: relative;
            height: 500px;
            animation: fadeIn 1s ease-out 0.6s backwards;
        }

        .hero-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            pointer-events: none;
            border-style: dashed;
            border-color: rgba(0, 217, 255, 0.25);
        }

        .hero-ring-outer {
            width: 380px;
            height: 380px;
            margin: -190px 0 0 -190px;
            border-width: 1px;
            animation: ringRotate 20s linear infinite;
        }

        .hero-ring-inner {
            width: 280px;
            height: 280px;
            margin: -140px 0 0 -140px;
            border-width: 1px;
            animation: ringRotate 14s linear infinite reverse;
        }

        .hero-ring-outer::before,
        .hero-ring-inner::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 10px;
            height: 10px;
            background: var(--color-cyan);
            border-radius: 2px;
            box-shadow: 0 0 12px var(--color-cyan);
            transform: translateX(-50%);
        }

        @keyframes ringRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Gears */
        .hero-gear {
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 3px dashed rgba(0, 217, 255, 0.35);
            pointer-events: none;
        }

        .hero-gear::before,
        .hero-gear::after {
            content: '';
            position: absolute;
            background: rgba(0, 217, 255, 0.2);
            border: 1px solid rgba(0, 217, 255, 0.4);
        }

        .hero-gear::before {
            top: 50%;
            left: -6px;
            right: -6px;
            height: 8px;
            transform: translateY(-50%);
        }

        .hero-gear::after {
            left: 50%;
            top: -6px;
            bottom: -6px;
            width: 8px;
            transform: translateX(-50%);
        }

        .hero-gear-lg {
            width: 90px;
            height: 90px;
            margin: -180px 0 0 80px;
            animation: gearSpin 8s linear infinite;
        }

        .hero-gear-sm {
            width: 55px;
            height: 55px;
            margin: 100px 0 0 -160px;
            animation: gearSpin 5s linear infinite reverse;
        }

        .hero-gear-xs {
            width: 40px;
            height: 40px;
            margin: -120px 0 0 -90px;
            animation: gearSpin 3s linear infinite;
        }

        @keyframes gearSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Robot / Machine Core */
        .machine-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 1;
            animation: machineBob 3s steps(4, end) infinite;
        }

        @keyframes machineBob {
            0%, 100% { transform: translate(-50%, -50%); }
            25% { transform: translate(-50%, calc(-50% - 4px)); }
            50% { transform: translate(-50%, -50%); }
            75% { transform: translate(-50%, calc(-50% + 4px)); }
        }

        .machine-antenna {
            width: 3px;
            height: 22px;
            background: var(--color-cyan);
            position: relative;
            margin-bottom: 2px;
            box-shadow: 0 0 8px var(--color-cyan);
        }

        .machine-antenna::after {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: var(--color-cyan-light);
            border-radius: 50%;
            animation: antennaPulse 1.5s step-end infinite;
        }

        @keyframes antennaPulse {
            0%, 100% { box-shadow: 0 0 6px var(--color-cyan); opacity: 1; }
            50% { box-shadow: 0 0 18px var(--color-cyan-light); opacity: 0.7; }
        }

        .machine-head {
            width: 88px;
            height: 72px;
            background: rgba(10, 22, 40, 0.95);
            border: 2px solid var(--color-cyan);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            position: relative;
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.25), inset 0 0 20px rgba(0, 217, 255, 0.05);
        }

        .machine-head::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-cyan);
            animation: headScan 2s linear infinite;
        }

        @keyframes headScan {
            0% { transform: scaleX(0); transform-origin: left; opacity: 1; }
            50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
            51% { transform-origin: right; }
            100% { transform: scaleX(0); transform-origin: right; opacity: 0.5; }
        }

        .machine-eye {
            width: 18px;
            height: 18px;
            background: var(--color-cyan);
            border-radius: 3px;
            box-shadow: 0 0 12px var(--color-cyan);
            animation: eyeBlink 3s step-end infinite;
        }

        @keyframes eyeBlink {
            0%, 88%, 100% { transform: scaleY(1); opacity: 1; }
            90% { transform: scaleY(0.1); opacity: 0.8; }
            92% { transform: scaleY(1); opacity: 1; }
        }

        .machine-mouth {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 36px;
            height: 4px;
            background: repeating-linear-gradient(
                90deg,
                var(--color-cyan) 0px,
                var(--color-cyan) 4px,
                transparent 4px,
                transparent 8px
            );
            animation: mouthData 1s linear infinite;
        }

        @keyframes mouthData {
            from { background-position: 0 0; }
            to { background-position: 16px 0; }
        }

        .machine-panel {
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--color-cyan);
            letter-spacing: 2px;
        }

        .machine-bar {
            width: 40px;
            height: 4px;
            background: rgba(0, 217, 255, 0.15);
            border: 1px solid rgba(0, 217, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .machine-bar::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 60%;
            background: var(--color-cyan);
            animation: barLoad 2s steps(5, end) infinite;
        }

        @keyframes barLoad {
            0% { width: 10%; }
            50% { width: 90%; }
            100% { width: 30%; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .floating-card {
            position: absolute;
            background: rgba(10, 22, 40, 0.92);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.4);
            border-radius: 4px;
            padding: 1.5rem;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
            animation: machineFloat 4s steps(3, end) infinite;
            transition: transform 0.2s steps(2, end), box-shadow 0.3s ease, border-color 0.3s ease;
            z-index: 3;
        }

        .floating-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--color-cyan);
            animation: cardScanTop 3s steps(4, end) infinite;
        }

        @keyframes cardScanTop {
            0%, 100% { opacity: 0.3; width: 20%; }
            50% { opacity: 1; width: 100%; }
        }

        .floating-card:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: var(--color-cyan-light);
            box-shadow: 0 0 32px rgba(0, 217, 255, 0.4);
            animation-play-state: paused;
        }

        .hero-visual .floating-card:nth-child(7) {
            top: 8%;
            left: 5%;
            animation: machineFloat 4s steps(3, end) infinite, cardEnter 0.8s ease-out 0.7s backwards;
        }

        .hero-visual .floating-card:nth-child(8) {
            top: 52%;
            right: 2%;
            animation: machineFloat 4s steps(3, end) 1.3s infinite, cardEnter 0.8s ease-out 0.9s backwards;
        }

        .hero-visual .floating-card:nth-child(9) {
            bottom: 8%;
            left: 15%;
            animation: machineFloat 4s steps(3, end) 2.6s infinite, cardEnter 0.8s ease-out 1.1s backwards;
        }

        @keyframes machineFloat {
            0%, 100% { transform: translateY(0); }
            33% { transform: translateY(-8px); }
            66% { transform: translateY(-16px); }
        }

        @keyframes cardEnter {
            from { opacity: 0; transform: translateY(40px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .card-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            animation: iconPulse 2s step-end infinite;
        }

        @keyframes iconPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.5); }
            50% { box-shadow: 0 0 16px 4px rgba(0, 217, 255, 0.3); }
        }

        /* Home scroll animations */
        .home-animate {
            opacity: 0;
            transform: translateY(36px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .home-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

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

        .card-title {
            font-family: var(--font-display);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 0.85rem;
            color: var(--color-gray);
        }

        /* Features Section */
        .section {
            padding: 6rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            color: var(--color-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--color-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card .feature-icon {
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.12) rotate(-5deg);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(0, 217, 255, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-cyan);
            box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--color-gray);
            line-height: 1.8;
        }

        /* Steps Section */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            position: relative;
        }

        .step-card {
            text-align: center;
            position: relative;
            transition: transform 0.35s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-dark-blue);
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
            animation: stepPulse 4s steps(4, end) infinite;
            border: 2px solid rgba(0, 217, 255, 0.5);
        }

        @keyframes stepPulse {
            0%, 100% { box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4); transform: scale(1) rotate(0deg); }
            50% { box-shadow: 0 8px 40px rgba(0, 217, 255, 0.65); transform: scale(1.08) rotate(90deg); }
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--color-gray);
        }

        /* Programs Grid */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: rgba(26, 41, 66, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .program-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-cyan);
            box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .program-tag {
            background: rgba(0, 217, 255, 0.2);
            color: var(--color-cyan);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-family: var(--font-mono);
        }

        .program-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .program-meta {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-gray);
            font-size: 0.9rem;
        }

        .program-outcomes {
            margin-top: 1.5rem;
        }

        .outcomes-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--color-cyan-light);
        }

        .outcomes-list {
            list-style: none;
            padding: 0;
        }

        .outcomes-list li {
            padding: 0.5rem 0;
            color: var(--color-gray);
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .outcomes-list li::before {
            content: '✓';
            color: var(--color-cyan);
            font-weight: bold;
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 2rem;
        }

        .testimonial-text {
            color: var(--color-gray-light);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--color-dark-blue);
        }

        .author-info h4 {
            font-family: var(--font-display);
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--color-gray);
            font-size: 0.9rem;
        }

        /* Form Styles */
        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            margin-bottom: 0.5rem;
            color: var(--color-gray-light);
            font-weight: 500;
        }

        .form-input,
        .form-select,
        .form-textarea {
            background: rgba(10, 22, 40, 0.6);
            border: 1px solid rgba(0, 217, 255, 0.3);
            border-radius: 8px;
            padding: 0.85rem 1rem;
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--color-cyan);
            box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .success-message {
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid var(--color-cyan);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            color: var(--color-cyan-light);
            margin-top: 1rem;
        }

        /* Footer */
        .footer {
            background: rgba(10, 22, 40, 0.95);
            border-top: 1px solid rgba(0, 217, 255, 0.2);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: var(--color-gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid rgba(0, 217, 255, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-cyan);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: rgba(0, 217, 255, 0.2);
            transform: translateY(-3px);
        }

        .footer-section h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--color-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--color-cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 217, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: var(--color-gray);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            animation: bounce 2s ease-in-out infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

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

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--color-cyan), transparent);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: center;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--color-cyan);
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px var(--color-cyan);
        }

        .timeline-year {
            font-family: var(--font-display);
            color: var(--color-cyan);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        /* Benefits List */
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            background: rgba(26, 41, 66, 0.3);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 217, 255, 0.2);
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--color-cyan), var(--color-cyan-light));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* FAQ */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 217, 255, 0.05);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.open {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--color-gray);
            line-height: 1.8;
        }

        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Slider Styles */
        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 0 3rem;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slider-item {
            min-width: 100%;
            padding: 0 1rem;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 217, 255, 0.2);
            border: 1px solid var(--color-cyan);
            color: var(--color-cyan);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-btn:hover {
            background: rgba(0, 217, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn-prev {
            left: 0;
        }

        .slider-btn-next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 217, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: var(--color-cyan);
            width: 25px;
            border-radius: 5px;
        }

        /* Partner Logos Slider */
        .partner-slider {
            overflow: hidden;
            position: relative;
        }

        .partner-slider-wrapper {
            display: flex;
            animation: slideLogos 20s linear infinite;
        }

        .partner-slider-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes slideLogos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partner-logo-item {
            min-width: 200px;
            padding: 1rem 2rem;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin: 0 1rem;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Rating Stars */
        .rating-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        /* CEO Section */
        .ceo-section {
            display: flex;
            align-items: center;
            gap: 3rem;
            background: rgba(26, 41, 66, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 217, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
            margin: 4rem 0;
        }

        .ceo-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 3px solid var(--color-cyan);
            object-fit: cover;
            box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
            flex-shrink: 0;
        }

        .ceo-content h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .ceo-title {
            color: var(--color-cyan);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .ceo-quote {
            color: var(--color-gray-light);
            line-height: 1.8;
            font-style: italic;
        }

        /* Partner Logos */
        .partner-logos {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            opacity: 0.6;
            margin-top: 3rem;
        }

        .partner-logo {
            height: 50px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-visual {
                height: 400px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 22, 40, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: flex-start;
                padding: 2rem;
                gap: 0;
                transition: left 0.3s ease;
                overflow-y: auto;
                border-top: 1px solid rgba(0, 217, 255, 0.2);
            }

            .nav-menu.mobile-menu-open {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                margin-bottom: 0;
            }

            .nav-link {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 217, 255, 0.1);
            }

            .nav-menu li:last-child {
                margin-top: 1rem;
            }

            .nav-menu .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero {
                min-height: auto;
                padding: 3rem 0;
            }

            .hero-text h1 {
                font-size: 2rem;
                line-height: 1.2;
            }

            .hero-text h2 {
                font-size: 1.1rem;
            }

            .hero-visual {
                height: 350px;
            }

            .hero-ring-outer {
                width: 280px;
                height: 280px;
                margin: -140px 0 0 -140px;
            }

            .hero-ring-inner {
                width: 200px;
                height: 200px;
                margin: -100px 0 0 -100px;
            }

            .machine-head {
                width: 70px;
                height: 58px;
            }

            .machine-eye {
                width: 14px;
                height: 14px;
            }

            .hero-gear-lg { width: 60px; height: 60px; margin: -140px 0 0 50px; }
            .hero-gear-sm { width: 40px; height: 40px; margin: 80px 0 0 -110px; }
            .hero-gear-xs { display: none; }

            .hero-hud { width: 24px; height: 24px; }

            .hero-stats {
                gap: 1.25rem;
            }

            .hero-stat-number {
                font-size: 1.4rem;
            }

            .floating-card {
                padding: 1rem;
            }

            .section {
                padding: 4rem 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .features-grid,
            .programs-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .benefits-list {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                flex-direction: row !important;
                padding-left: 50px;
            }

            .timeline-content {
                width: 100%;
            }

            .timeline-dot {
                left: 20px;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.75rem;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }

            .feature-card,
            .program-card,
            .testimonial-card {
                padding: 1.5rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
            }

            .partner-logos {
                gap: 1.5rem;
            }

            .partner-logos div {
                font-size: 1rem;
                padding: 0.75rem 1.5rem;
            }

            .slider-container {
                padding: 0 2.5rem;
            }

            .slider-btn {
                width: 40px;
                height: 40px;
            }

            .ceo-section {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .ceo-photo {
                width: 150px;
                height: 150px;
            }

            .partner-logo-item {
                min-width: 150px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2rem;
            }

            .hero-text h1 {
                font-size: 1.75rem;
            }

            .hero-text h2 {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .section-label {
                font-size: 0.75rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }

            .floating-card {
                padding: 0.75rem;
                font-size: 0.85rem;
            }

            .card-icon {
                width: 32px;
                height: 32px;
            }

            .hero-visual {
                height: 300px;
            }

            .step-number {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .step-title {
                font-size: 1.1rem;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
            }

            .value-icon {
                font-size: 2.5rem;
            }

            .form-input,
            .form-select,
            .form-textarea {
                font-size: 0.95rem;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-brand {
                font-size: 1.3rem;
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .slider-container {
                padding: 0 2rem;
            }

            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }

            .ceo-section {
                padding: 1.5rem;
            }

            .ceo-photo {
                width: 120px;
                height: 120px;
            }

            .ceo-content h3 {
                font-size: 1.4rem;
            }

            .partner-logo-item {
                min-width: 120px;
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }
        }