:root {
            --primary: #0066FF;
            --primary-dark: #0050CC;
            --primary-light: #E8F0FE;
            --accent: #00D4AA;
            --accent-dark: #00B891;
            --accent-glow: rgba(0, 212, 170, 0.4);
            --dark: #0A0F1C;
            --dark-secondary: #111827;
            --gray-900: #1a1f2e;
            --gray-800: #252b3b;
            --gray-700: #374151;
            --gray-600: #4B5563;
            --gray-500: #6B7280;
            --gray-400: #9CA3AF;
            --gray-300: #D1D5DB;
            --gray-200: #E5E7EB;
            --gray-100: #F3F4F6;
            --gray-50: #F9FAFB;
            --white: #FFFFFF;
            --warning: #F59E0B;
            --success: #10B981;
            --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
            --gradient-dark: linear-gradient(135deg, #0A0F1C 0%, #1a1f2e 100%);
            --gradient-hero: linear-gradient(160deg, #060a14 0%, #0d1a3a 40%, #080d1a 100%);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

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

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

        .navbar.scrolled {
            background: rgba(6, 10, 20, 0.95);
            box-shadow: 0 4px 30px rgba(0,0,0,0.4);
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--white);
        }

        .nav-logo-icon {
            width: 40px; height: 40px;
            background: var(--gradient-primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: white;
        }

        .nav-logo-text {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-logo-text span { color: var(--accent); }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-400);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--white);
            background: rgba(255,255,255,0.06);
        }

        .nav-cta-link {
            background: var(--gradient-primary) !important;
            color: var(--white) !important;
            padding: 10px 24px !important;
            font-weight: 600 !important;
        }

        .nav-cta-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(0,102,255,0.4) !important;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
        }

        .nav-phone:hover { color: var(--white); }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
        }

        .hamburger span {
            width: 24px; height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ====================== HERO ====================== */
        .hero {
            min-height: 100vh;
            background: var(--gradient-hero);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        /* Circuit animation background */
        .hero-circuit-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            overflow: hidden;
            opacity: 0.07;
        }

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

        .circuit-path {
            fill: none;
            stroke: var(--accent);
            stroke-width: 1.5;
            stroke-linecap: round;
        }

        .circuit-node {
            fill: var(--accent);
        }

        .energy-pulse {
            fill: none;
            stroke: var(--accent);
            stroke-width: 3;
            stroke-linecap: round;
            filter: drop-shadow(0 0 6px var(--accent));
        }

        /* Canvas for animated particles */
        #heroCanvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
        }

        /* Glows */
        .hero-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            pointer-events: none;
        }

        .hero-glow-1 {
            width: 600px; height: 600px;
            top: -200px; right: -150px;
            background: rgba(0, 102, 255, 0.12);
        }

        .hero-glow-2 {
            width: 500px; height: 500px;
            bottom: -200px; left: -150px;
            background: rgba(0, 212, 170, 0.08);
        }

        .hero-glow-3 {
            width: 300px; height: 300px;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 102, 255, 0.06);
        }

        /* Grid pattern */
        .hero-grid {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image:
                linear-gradient(rgba(0,102,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,102,255,0.025) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 140px 24px 100px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* Hero text */
        .hero-content { position: relative; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px 6px 6px;
            background: rgba(0,212,170,0.08);
            border: 1px solid rgba(0,212,170,0.15);
            border-radius: 50px;
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-badge-dot {
            width: 26px; height: 26px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-badge-dot i {
            font-size: 10px;
            color: var(--dark);
        }

        .hero h1 {
            font-size: clamp(34px, 4.5vw, 56px);
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            letter-spacing: -1.5px;
            margin-bottom: 28px;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .hero h1 .accent-text {
            color: var(--accent);
        }

        .hero-description {
            font-size: 17px;
            color: var(--gray-400);
            line-height: 1.8;
            margin-bottom: 12px;
            max-width: 540px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-local {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease 0.45s both;
        }

        .hero-local i {
            color: var(--accent);
            margin-right: 6px;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 32px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .btn-accent {
            background: var(--accent);
            color: var(--dark);
            box-shadow: 0 4px 20px var(--accent-glow);
        }

        .btn-accent:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--accent-glow);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.15);
        }

        .btn-outline:hover {
            border-color: rgba(255,255,255,0.35);
            background: rgba(255,255,255,0.04);
            transform: translateY(-1px);
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(0,102,255,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,102,255,0.4);
        }

        .btn-white {
            background: var(--white);
            color: var(--dark);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .hero-micro {
            font-size: 13px;
            color: var(--gray-500);
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-micro span {
            margin: 0 6px;
            color: rgba(255,255,255,0.15);
        }

        /* Hero visual side */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 0.8s ease 0.5s both;
        }

        .hero-card {
            width: 100%;
            max-width: 440px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-xl);
            padding: 36px;
            backdrop-filter: blur(10px);
        }

        .hero-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hero-card-icon {
            width: 52px; height: 52px;
            background: var(--gradient-primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
        }

        .hero-card-title {
            color: var(--white);
            font-size: 17px;
            font-weight: 700;
        }

        .hero-card-subtitle {
            color: var(--gray-500);
            font-size: 12px;
            margin-top: 2px;
        }

        .hero-checklist {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hero-check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 13px 16px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
        }

        .hero-check-item:hover {
            background: rgba(0,212,170,0.05);
            border-color: rgba(0,212,170,0.15);
        }

        .hero-check-icon {
            width: 34px; height: 34px;
            background: rgba(0,212,170,0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 13px;
            flex-shrink: 0;
        }

        .hero-check-text {
            color: var(--gray-300);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-check-done {
            margin-left: auto;
            color: var(--accent);
            font-size: 13px;
        }

        /* Floating badges */
        .float-badge {
            position: absolute;
            background: rgba(10,15,28,0.92);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-md);
            padding: 14px 18px;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .float-badge-1 {
            top: -15px; right: -25px;
            animation: floatA 6s ease-in-out infinite;
        }

        .float-badge-2 {
            bottom: 30px; left: -35px;
            animation: floatA 6s ease-in-out infinite 2s;
        }

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

        .float-badge-icon {
            width: 34px; height: 34px;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .float-badge-icon.green { background: rgba(16,185,129,0.15); color: var(--success); }
        .float-badge-icon.blue { background: rgba(0,102,255,0.15); color: var(--primary); }

        .float-badge-text { font-size: 13px; font-weight: 600; color: var(--white); }
        .float-badge-sub { font-size: 11px; color: var(--gray-500); }

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

        /* ====================== SECTIONS COMMON ====================== */
        .section { padding: 100px 0; }
        .section-dark { background: var(--dark); }
        .section-gray { background: var(--gray-50); }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 64px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .section-dark .section-tag { background: rgba(0,102,255,0.12); }

        .section-title {
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 800;
            color: var(--dark);
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-dark .section-title { color: var(--white); }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .section-dark .section-subtitle { color: var(--gray-400); }

        /* ====================== BRANDS ====================== */
        .brands-section {
            padding: 50px 0;
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }

        .brands-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .brands-header p {
            font-size: 13px;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }

        .brands-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .brand-item {
            font-size: 18px;
            font-weight: 800;
            color: var(--gray-300);
            letter-spacing: -0.5px;
            transition: color 0.3s ease;
        }

        .brand-item:hover { color: var(--gray-500); }

        /* ====================== SERVICES ====================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 36px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-icon {
            width: 56px; height: 56px;
            background: var(--primary-light);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .service-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-benefits {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-benefit {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-600);
        }

        .service-benefit i {
            color: var(--accent);
            font-size: 11px;
            width: 16px;
        }

        /* ====================== FEATURES ====================== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: rgba(0,102,255,0.25);
            transform: translateY(-4px);
        }

        .feature-icon-wrap {
            width: 64px; height: 64px;
            margin: 0 auto 20px;
            background: rgba(0,102,255,0.1);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon-wrap {
            background: var(--gradient-primary);
            color: white;
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* ====================== PROCESS ====================== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
        }

        .process-grid::before {
            content: '';
            position: absolute;
            top: 48px;
            left: 12.5%; right: 12.5%;
            height: 2px;
            background: var(--gray-200);
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-number {
            width: 72px; height: 72px;
            margin: 0 auto 24px;
            background: var(--white);
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
            transition: all 0.3s ease;
        }

        .process-step:hover .process-number {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .process-step h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ====================== PORTFOLIO ====================== */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .portfolio-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

        .portfolio-placeholder {
            width: 100%; height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
            color: var(--gray-400);
            transition: all 0.3s ease;
        }

        .portfolio-card:hover .portfolio-placeholder {
            background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
        }

        .portfolio-placeholder i {
            font-size: 42px;
            margin-bottom: 12px;
        }

        .portfolio-placeholder span {
            font-size: 14px;
            font-weight: 600;
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,15,28,0.9), transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-card:hover .portfolio-overlay { opacity: 1; }

        .portfolio-overlay h3 { color: var(--white); font-size: 17px; font-weight: 700; }
        .portfolio-overlay p { color: var(--gray-400); font-size: 13px; margin-top: 4px; }

        /* ====================== TESTIMONIALS ====================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars i { color: var(--warning); font-size: 14px; }

        .testimonial-text {
            font-size: 15px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

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

        .testimonial-avatar {
            width: 44px; height: 44px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
        }

        .testimonial-name { font-weight: 600; color: var(--dark); font-size: 15px; }
        .testimonial-role { font-size: 13px; color: var(--gray-500); }

        /* ====================== CTA ====================== */
        .cta-section {
            padding: 100px 0;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }

        .cta-glow-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: rgba(0,102,255,0.1); }
        .cta-glow-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: rgba(0,212,170,0.08); }

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

        .cta-content h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .cta-content p {
            font-size: 17px;
            color: var(--gray-400);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .cta-info {
            display: flex;
            justify-content: center;
            gap: 36px;
            flex-wrap: wrap;
        }

        .cta-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray-400);
            font-size: 14px;
        }

        .cta-info-item i { color: var(--accent); font-size: 16px; }

        /* ====================== COVERAGE ====================== */
        .coverage-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .coverage-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .coverage-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius-sm);
            color: var(--gray-300);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .coverage-item:hover {
            border-color: rgba(0,212,170,0.2);
            background: rgba(0,212,170,0.04);
        }

        .coverage-item i { color: var(--accent); }

        .coverage-map {
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            padding: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 350px;
        }

        .coverage-map i { font-size: 56px; color: var(--primary); margin-bottom: 20px; }
        .coverage-map h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
        .coverage-map p { color: var(--gray-400); font-size: 14px; line-height: 1.6; }

        /* ====================== CONTACT ====================== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            background: var(--gray-50);
            border-radius: var(--radius-md);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .contact-card-icon {
            width: 48px; height: 48px;
            background: var(--primary-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
        .contact-card p { font-size: 14px; color: var(--gray-500); }
        .contact-card a { color: var(--primary); text-decoration: none; font-weight: 500; }
        .contact-card a:hover { text-decoration: underline; }

        .contact-form-wrap {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
        .contact-form-wrap > p { color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }

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

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

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

        .form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }

        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 12px 16px;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-sm);
            font-size: 14px;
            font-family: inherit;
            color: var(--dark);
            transition: all 0.2s ease;
            outline: none;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
        }

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

        .form-submit { margin-top: 8px; }
        .form-submit .btn { width: 100%; justify-content: center; padding: 16px; }

        /* ====================== FOOTER ====================== */
        .footer {
            background: var(--dark);
            color: var(--gray-400);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .footer-social a {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .footer h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .footer-bottom a { color: var(--gray-400); text-decoration: none; }
        .footer-bottom a:hover { color: var(--white); }

        /* ====================== SCROLL TOP ====================== */
        .scroll-top {
            position: fixed;
            bottom: 30px; right: 30px;
            width: 48px; height: 48px;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,102,255,0.4);
        }

        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { transform: translateY(-3px); }

        /* ====================== COOKIE ====================== */
        .cookie-banner {
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: rgba(10,15,28,0.97);
            color: var(--gray-300);
            padding: 20px 24px;
            z-index: 9999;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: none;
            backdrop-filter: blur(20px);
        }

        .cookie-banner.show { display: block; }

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

        .cookie-inner p { font-size: 14px; flex: 1; }

        .cookie-btns { display: flex; gap: 12px; }

        .cookie-btn {
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .cookie-accept { background: var(--accent); color: var(--dark); }
        .cookie-decline { background: rgba(255,255,255,0.08); color: var(--gray-300); }

        /* ====================== ANIMATIONS ====================== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ====================== RESPONSIVE ====================== */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }
            .hero-description, .hero-local { margin-left: auto; margin-right: auto; }
            .hero-buttons { justify-content: center; }
            .hero-micro { text-align: center; }
            .hero-visual { max-width: 440px; margin: 0 auto; }
            .services-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .process-grid::before { display: none; }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid, .coverage-content { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 72px; left: 0; right: 0;
                background: rgba(6,10,20,0.98);
                flex-direction: column;
                padding: 24px;
                gap: 4px;
                transform: translateY(-110%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
            }
            .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
            .nav-links a { padding: 14px 16px; width: 100%; text-align: left; }
            .nav-phone { display: none; }
            .hamburger { display: flex; }
            .services-grid, .features-grid, .portfolio-grid, .testimonials-grid { grid-template-columns: 1fr; }
            .process-grid { grid-template-columns: 1fr; }
            .coverage-list { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
            .float-badge { display: none; }
            .form-grid { grid-template-columns: 1fr; }
            .cookie-inner { flex-direction: column; text-align: center; }
        }

        @media (max-width: 480px) {
            .section { padding: 64px 0; }
            .container { padding: 0 16px; }
            .hero-container { padding: 110px 16px 60px; }
            .contact-form-wrap { padding: 24px; }
        }
