:root {
            --neon-green: #BFFF00;
            --neon-green-dark: #9ACC00;
            --bg-primary: #0A0F14;
            --bg-secondary: #0D1318;
            --bg-card: #111920;
            --cyan-accent: #00B4D8;
            --cyan-dark: #0077B6;
            --text-primary: #FFFFFF;
            --text-secondary: #8A9BAD;
            --border-color: rgba(191, 255, 0, 0.2);
            --gradient-cyber: linear-gradient(135deg, #0A0F14 0%, #0D1A1F 50%, #0A0F14 100%);
        }

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        @supports (overflow-x: clip) {
            html,
            body {
                overflow-x: clip;
            }
        }

        /* Animated Background */
        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.4;
        }

        .cyber-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(0, 180, 216, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 180, 216, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--cyan-accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 15s infinite ease-in-out;
        }

        .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; }
        .particle:nth-child(5) { left: 90%; top: 20%; animation-delay: 8s; }
        .particle:nth-child(6) { left: 30%; top: 60%; animation-delay: 10s; }
        .particle:nth-child(7) { left: 70%; top: 90%; animation-delay: 12s; }
        .particle:nth-child(8) { left: 50%; top: 10%; animation-delay: 14s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
            25% { transform: translateY(-30px) translateX(10px); opacity: 0.6; }
            50% { transform: translateY(-60px) translateX(-10px); opacity: 0.3; }
            75% { transform: translateY(-30px) translateX(15px); opacity: 0.5; }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(10, 15, 20, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(191, 255, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            background: rgba(10, 15, 20, 0.95);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 24px;
            color: var(--bg-primary);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 4px;
            color: var(--text-primary);
        }

        .logo-text span {
            color: var(--neon-green);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-green);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--neon-green);
        }

        nav a:hover::after {
            width: 100%;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .phone-link:hover {
            color: var(--neon-green);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
            color: var(--bg-primary);
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(191, 255, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 14px 32px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            border-color: var(--neon-green);
            color: var(--neon-green);
            background: rgba(191, 255, 0, 0.05);
        }

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

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-glow {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(191, 255, 0, 0.1) 0%, transparent 70%);
            filter: blur(100px);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(191, 255, 0, 0.1);
            border: 1px solid rgba(191, 255, 0, 0.3);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--neon-green);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--neon-green);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: clamp(42px, 5vw, 64px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease 0.3s both;
        }

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

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 8px;
            background: rgba(191, 255, 0, 0.2);
            z-index: -1;
        }

        .hero h1 .gradient-green {
            background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 540px;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease 0.5s both;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 42px;
            font-weight: 700;
            color: var(--neon-green);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-number span {
            font-size: 24px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-card {
            background: linear-gradient(145deg, var(--bg-card) 0%, rgba(17, 25, 32, 0.8) 100%);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-green), var(--cyan-accent), var(--neon-green));
            background-size: 200% 100%;
            animation: shimmer 3s ease infinite;
        }

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

        .card-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .card-header h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .support-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 72px;
            font-weight: 800;
            color: var(--neon-green);
            line-height: 1;
            margin: 20px 0;
            text-shadow: 0 0 60px rgba(191, 255, 0, 0.4);
        }

        .card-tagline {
            font-size: 16px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .card-tagline strong {
            color: var(--neon-green);
            font-style: italic;
        }

        .network-visual {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            overflow: hidden;
            opacity: 0.6;
        }

        .network-visual svg {
            width: 100%;
            height: 100%;
        }

        /* Floating Elements */
        .floating-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .floating-icon.icon-1 {
            top: -20px;
            right: 40px;
            animation-delay: 0s;
        }

        .floating-icon.icon-2 {
            bottom: 120px;
            left: -30px;
            animation-delay: 2s;
        }

        .floating-icon.icon-3 {
            bottom: 40px;
            right: -20px;
            animation-delay: 4s;
        }

        .floating-icon svg {
            width: 28px;
            height: 28px;
            color: var(--neon-green);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            position: relative;
            z-index: 1;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 13px;
            color: var(--cyan-accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border: 1px solid rgba(191, 255, 0, 0.1);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(191, 255, 0, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: rgba(191, 255, 0, 0.3);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(191, 255, 0, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            color: var(--neon-green);
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .service-features {
            list-style: none;
            position: relative;
            z-index: 1;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--neon-green);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Differentials Section */
        .differentials {
            padding: 120px 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 180, 216, 0.02) 50%, transparent 100%);
            position: relative;
            z-index: 1;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .diff-card {
            background: var(--bg-card);
            border: 1px solid rgba(0, 180, 216, 0.1);
            border-radius: 16px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .diff-card:hover {
            border-color: var(--cyan-accent);
            transform: translateY(-5px);
        }

        .diff-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(0, 180, 216, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .diff-icon svg {
            width: 26px;
            height: 26px;
            color: var(--cyan-accent);
        }

        .diff-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .diff-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 100px 0;
            position: relative;
            z-index: 1;
        }

        .proof-container {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .proof-content h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .proof-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .certifications {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cert-badge {
            background: rgba(191, 255, 0, 0.1);
            border: 1px solid rgba(191, 255, 0, 0.2);
            border-radius: 10px;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 500;
            color: var(--neon-green);
            display: flex;
            align-items: center;
            gap: 8px;
            text-align: center;
            justify-content: center;
            flex: 1 1 auto;
        }

        .proof-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .proof-stat {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            min-width: 0;
        }

        .proof-stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 48px;
            font-weight: 700;
            color: var(--neon-green);
            line-height: 1;
            margin-bottom: 10px;
            word-break: break-word;
        }

        .proof-stat-label {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 120px 0;
            position: relative;
            z-index: 1;
        }

        .cta-container {
            background: linear-gradient(135deg, rgba(191, 255, 0, 0.1) 0%, rgba(0, 180, 216, 0.05) 100%);
            border: 1px solid var(--border-color);
            border-radius: 32px;
            padding: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(191, 255, 0, 0.03) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

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

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

        .cta-content h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* Contact Form */
        .contact-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(191, 255, 0, 0.2);
            border-radius: 12px;
            padding: 16px 20px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-secondary);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-green);
            box-shadow: 0 0 20px rgba(191, 255, 0, 0.1);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238A9BAD' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 20px;
        }

        .form-group select option {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

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

        .form-submit {
            width: 100%;
            background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
            color: var(--bg-primary);
            padding: 18px 40px;
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(191, 255, 0, 0.4);
        }

        .form-note {
            margin-top: 20px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .form-note a {
            color: var(--neon-green);
            text-decoration: none;
        }

        /* Footer */
        footer {
            padding: 60px 0;
            border-top: 1px solid rgba(191, 255, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-simple {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .footer-simple a {
            text-decoration: none;
        }

        .footer-logo {
            height: 40px;
            width: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .footer-logo:hover {
            opacity: 1;
        }

        /* Responsive */
        .mobile-menu-btn {
            display: none;
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            position: relative;
            z-index: 1001;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-btn span {
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 15, 20, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding: 100px 30px 40px;
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
            margin-bottom: 40px;
        }

        .mobile-nav li {
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .mobile-nav.active li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }

        .mobile-nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover,
        .mobile-nav a:active {
            color: var(--neon-green);
        }

        .mobile-nav-cta {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.3s;
        }

        .mobile-nav.active .mobile-nav-cta {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-cta .btn-primary {
            padding: 18px 48px;
            font-size: 16px;
        }

        .mobile-nav-phone {
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.35s;
        }

        .mobile-nav.active .mobile-nav-phone {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav-phone a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 16px;
            text-decoration: none;
        }

        .mobile-nav-phone svg {
            color: var(--neon-green);
        }

        /* Floating CTA Mobile */
        .floating-cta-mobile {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 15, 20, 0.95);
            backdrop-filter: blur(20px);
            padding: 16px 20px;
            z-index: 998;
            border-top: 1px solid var(--border-color);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .floating-cta-mobile.visible {
            transform: translateY(0);
        }

        .floating-cta-mobile .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 16px 24px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-visual {
                max-width: 500px;
                margin: 0 auto;
            }

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

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

        @media (max-width: 992px) {
            .proof-container {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .phone-link {
                display: none;
            }

            .header-cta .btn-primary {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-nav {
                display: block;
            }

            .floating-cta-mobile {
                display: block;
            }

            .hero {
                padding: 150px 0 120px;
            }

            .section-container {
                padding: 0 24px;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 18px;
                line-height: 1.75;
            }
            header {
                padding: 16px 0;
            }

            .header-container {
                padding: 0 20px;
            }

            .logo-icon {
                width: 42px;
                height: 42px;
                font-size: 20px;
                border-radius: 10px;
            }

            .logo-text {
                font-size: 22px;
                letter-spacing: 3px;
            }

            .hero {
                padding: 150px 0 100px;
                min-height: auto;
            }

            .hero-badge {
                font-size: 12px;
                padding: 8px 16px;
                margin-bottom: 24px;
            }

            .hero h1 {
                font-size: 38px;
                line-height: 1.12;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 18px;
                line-height: 1.8;
                margin-bottom: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 14px;
                margin-bottom: 48px;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 18px 24px;
                font-size: 16px;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
                padding: 24px;
                background: var(--bg-card);
                border-radius: 16px;
                border: 1px solid var(--border-color);
            }

            .stat-item {
                text-align: center;
            }

            .stat-number {
                font-size: 32px;
                margin-bottom: 4px;
            }

            .stat-number span {
                font-size: 18px;
            }

            .stat-label {
                font-size: 13px;
                line-height: 1.35;
            }

            .hero-visual {
                margin-top: 40px;
            }

            .hero-card {
                padding: 36px 28px;
                border-radius: 20px;
            }

            .card-header h3 {
                font-size: 20px;
                letter-spacing: 2px;
            }

            .support-badge {
                font-size: 60px;
                margin: 16px 0;
            }

            .card-tagline {
                font-size: 16px;
            }

            .services,
            .differentials,
            .social-proof,
            .cta-section {
                padding: 80px 0;
            }

            .section-header {
                margin-bottom: 48px;
            }

            .section-tag {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 19px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 32px 24px;
                border-radius: 16px;
            }

            .service-icon {
                width: 56px;
                height: 56px;
                border-radius: 14px;
                margin-bottom: 20px;
            }

            .service-icon svg {
                width: 26px;
                height: 26px;
            }

            .service-card h3 {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .service-card p {
                font-size: 17px;
                margin-bottom: 20px;
            }

            .service-features li {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .diff-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .diff-card {
                padding: 24px 16px;
                border-radius: 14px;
            }

            .diff-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 16px;
            }

            .diff-icon svg {
                width: 22px;
                height: 22px;
            }

            .diff-card h4 {
                font-size: 17px;
                margin-bottom: 8px;
            }

            .diff-card p {
                font-size: 16px;
                line-height: 1.5;
            }

            .proof-container {
                padding: 32px 24px;
                border-radius: 20px;
                gap: 40px;
            }

            .proof-content h2 {
                font-size: 30px;
            }

            .proof-content p {
                font-size: 18px;
            }

            .certifications {
                gap: 12px;
            }

            .cert-badge {
                padding: 10px 14px;
                font-size: 14px;
                border-radius: 8px;
            }

            .proof-stats {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .proof-stat {
                padding: 20px 16px;
                border-radius: 12px;
            }

            .proof-stat-number {
                font-size: 34px;
            }

            .proof-stat-label {
                font-size: 14px;
            }

            .cta-container {
                padding: 48px 24px;
                border-radius: 24px;
            }

            .cta-content h2 {
                font-size: 30px;
            }

            .cta-content p {
                font-size: 18px;
                margin-bottom: 32px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 16px;
            }

            .form-group {
                margin-bottom: 16px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 16px 18px;
                font-size: 17px;
                border-radius: 10px;
            }

            .form-submit {
                padding: 18px 32px;
                font-size: 17px;
                letter-spacing: 1.5px;
                border-radius: 10px;
            }

            .form-note {
                font-size: 14px;
            }

            footer {
                padding: 40px 0;
            }

            .floating-icon {
                display: none;
            }

            .hero-glow {
                width: 300px;
                height: 300px;
                top: 10%;
                right: -20%;
            }

            /* Reduce animations on mobile for performance */
            .cyber-grid::before {
                animation: none;
            }

            .particles {
                display: none;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 18px;
                line-height: 1.75;
            }

            .hero h1 {
                font-size: 34px;
            }

            .hero-description {
                font-size: 18px;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                padding: 20px 16px;
            }

            .stat-number {
                font-size: 28px;
            }

            .stat-label {
                font-size: 12px;
            }

            .support-badge {
                font-size: 54px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 18px;
            }

            .service-card p {
                font-size: 17px;
            }

            .service-features li {
                font-size: 16px;
            }

            .diff-card p {
                font-size: 15px;
            }

            .proof-content p {
                font-size: 17px;
            }

            .cta-content p {
                font-size: 17px;
            }

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

            .diff-card {
                display: flex;
                align-items: center;
                text-align: left;
                gap: 16px;
                padding: 20px;
            }

            .diff-icon {
                margin: 0;
                flex-shrink: 0;
            }

            .diff-card-content {
                flex: 1;
            }

            .proof-stats {
                grid-template-columns: 1fr 1fr;
            }

            .certifications {
                flex-direction: column;
                align-items: stretch;
            }

            .cert-badge {
                justify-content: center;
            }

            .cta-content h2 {
                font-size: 26px;
            }

            .proof-stat-number {
                font-size: 30px;
            }

            .proof-stat-label {
                font-size: 12px;
            }
        }

        /* Touch-friendly improvements */
        @media (hover: none) and (pointer: coarse) {
            .btn-primary:active,
            .btn-secondary:active {
                transform: scale(0.98);
            }

            .service-card:active {
                transform: scale(0.99);
            }

            .diff-card:active {
                border-color: var(--cyan-accent);
            }
        }

        /* Safe area for notched devices */
        @supports (padding-bottom: env(safe-area-inset-bottom)) {
            .floating-cta-mobile {
                padding-bottom: calc(16px + env(safe-area-inset-bottom));
            }
        }
