/* ═══════════════════════════════════════════════════════════════════
           CSS VARIABLES & RESET
           ═══════════════════════════════════════════════════════════════════ */
        :root {
            --color-primary: #003366;
            --color-primary-dark: #001f3f;
            --color-primary-light: #004a99;
            --color-accent: #00a8e8;
            --color-accent-glow: rgba(0, 168, 232, 0.3);
            --color-success: #00b894;
            --color-warning: #fdcb6e;
            --color-white: #ffffff;
            --color-off-white: #f8fafc;
            --color-gray-100: #f1f5f9;
            --color-gray-200: #e2e8f0;
            --color-gray-400: #94a3b8;
            --color-gray-600: #475569;
            --color-gray-800: #1e293b;
            --color-dark: #0f172a;
            
            --font-display: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            --shadow-glow: 0 0 40px var(--color-accent-glow);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 30px;
            
            --transition-fast: 0.15s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }
        
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--color-gray-800);
            background: var(--color-white);
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        ul, ol {
            list-style: none;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           UTILITY CLASSES
           ═══════════════════════════════════════════════════════════════════ */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 100px 0;
        }
        
        .section-dark {
            background: var(--color-dark);
            color: var(--color-white);
        }
        
        .section-gray {
            background: var(--color-gray-100);
        }
        
        .text-center { text-align: center; }
        .text-accent { color: var(--color-accent); }
        .text-primary { color: var(--color-primary); }
        
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           TYPOGRAPHY
           ═══════════════════════════════════════════════════════════════════ */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-dark);
        }
        
        .section-dark h1, .section-dark h2, .section-dark h3 {
            color: var(--color-white);
        }
        
        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--color-gray-600);
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .section-dark .section-subtitle {
            color: var(--color-gray-400);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           BUTTONS
           ═══════════════════════════════════════════════════════════════════ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 600;
            border-radius: var(--radius-xl);
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-light) 100%);
            color: var(--color-white);
            box-shadow: var(--shadow-md), 0 0 20px rgba(0, 168, 232, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 168, 232, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }
        
        .btn-outline:hover {
            background: var(--color-white);
            color: var(--color-primary);
        }
        
        .btn-secondary {
            background: var(--color-white);
            color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 0;
            background: transparent;
            transition: all var(--transition-base);
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
            padding: 10px 0;
        }
        
        .navbar.scrolled .nav-link {
            color: var(--color-gray-800);
        }
        
        .navbar.scrolled .logo-text {
            color: var(--color-primary);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            transition: transform var(--transition-base);
        }
        
        .logo:hover .logo-img {
            transform: scale(1.05);
        }
        
        .navbar.scrolled .logo-img {
            filter: none;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .nav-link {
            font-family: var(--font-display);
            font-weight: 500;
            color: var(--color-white);
            transition: color var(--transition-fast);
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: width var(--transition-base);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .lang-toggle {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-xl);
            padding: 4px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .navbar.scrolled .lang-toggle {
            background: var(--color-gray-100);
            border-color: var(--color-gray-200);
        }
        
        .lang-btn {
            padding: 8px 14px;
            font-size: 0.85rem;
            font-weight: 600;
            border: none;
            background: transparent;
            color: var(--color-white);
            cursor: pointer;
            border-radius: var(--radius-lg);
            transition: all var(--transition-fast);
        }
        
        .navbar.scrolled .lang-btn {
            color: var(--color-gray-600);
        }
        
        .lang-btn.active {
            background: var(--color-accent);
            color: var(--color-white);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 2px;
            background: var(--color-white);
            transition: all var(--transition-base);
        }
        
        .navbar.scrolled .mobile-toggle span {
            background: var(--color-gray-800);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════════════════════════════ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--color-accent);
            opacity: 0.1;
            filter: blur(60px);
        }
        
        .hero-shape-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -100px;
            animation: float 20s ease-in-out infinite;
        }
        
        .hero-shape-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            animation: float 15s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(5deg); }
            50% { transform: translate(0, -40px) rotate(0deg); }
            75% { transform: translate(-20px, -20px) rotate(-5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text {
            color: var(--color-white);
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 168, 232, 0.2);
            border: 1px solid rgba(0, 168, 232, 0.3);
            padding: 8px 16px;
            border-radius: var(--radius-xl);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--color-accent);
            margin-bottom: 25px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(0, 168, 232, 0); }
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 25px;
            line-height: 1.1;
        }
        
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--color-accent) 0%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .stat-item {
            text-align: left;
        }
        
        .stat-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-accent);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 5px;
        }
        
        .hero-visual {
            position: relative;
        }
        
        .hero-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl), var(--shadow-glow);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
            transition: transform var(--transition-slow);
        }
        
        .hero-image-wrapper:hover {
            transform: perspective(1000px) rotateY(0) rotateX(0);
        }
        
        .hero-image {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-100));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
        }
        
        .hero-card {
            position: absolute;
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 20px;
            box-shadow: var(--shadow-xl);
            animation: slideIn 0.6s ease-out forwards;
        }
        
        .hero-card-1 {
            bottom: -30px;
            left: -40px;
            display: flex;
            align-items: center;
            gap: 15px;
            animation-delay: 0.3s;
        }
        
        .hero-card-2 {
            top: -20px;
            right: -30px;
            animation-delay: 0.5s;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--color-success) 0%, #00d9a6 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .card-text strong {
            display: block;
            font-size: 1.1rem;
            color: var(--color-dark);
        }
        
        .card-text span {
            font-size: 0.85rem;
            color: var(--color-gray-600);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           SERVICES SECTION
           ═══════════════════════════════════════════════════════════════════ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
            transform: scaleX(0);
            transition: transform var(--transition-base);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            border: 2px solid var(--color-gray-200);
            transition: all var(--transition-base);
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
            border-color: transparent;
            transform: scale(1.1);
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--color-dark);
        }
        
        .service-description {
            color: var(--color-gray-600);
            font-size: 0.95rem;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           ABOUT SECTION
           ═══════════════════════════════════════════════════════════════════ */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image-main {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }
        
        .about-image-main img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            background: var(--color-gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
        }
        
        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--color-primary);
            color: var(--color-white);
            padding: 25px;
            border-radius: var(--radius-md);
            text-align: center;
            box-shadow: var(--shadow-lg);
        }
        
        .about-badge-number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }
        
        .about-badge-text {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        .about-text h2 {
            margin-bottom: 25px;
        }
        
        .about-text p {
            color: var(--color-gray-600);
            margin-bottom: 30px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .feature-text {
            font-weight: 500;
            color: var(--color-dark);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           WHY CHOOSE US
           ═══════════════════════════════════════════════════════════════════ */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .why-card {
            text-align: center;
            padding: 40px 20px;
        }
        
        .why-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 51, 102, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 25px;
            border: 2px dashed var(--color-accent);
            transition: all var(--transition-base);
        }
        
        .why-card:hover .why-icon {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
            border-style: solid;
            border-color: transparent;
            transform: rotate(10deg) scale(1.1);
        }
        
        .why-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .why-text {
            color: var(--color-gray-400);
            font-size: 0.9rem;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           CTA SECTION
           ═══════════════════════════════════════════════════════════════════ */
        .cta {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta h2 {
            color: var(--color-white);
            margin-bottom: 20px;
        }
        
        .cta p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 35px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           CONTACT SECTION
           ═══════════════════════════════════════════════════════════════════ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info h3 {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .contact-text p, .contact-text a {
            color: var(--color-gray-600);
        }
        
        .contact-text a:hover {
            color: var(--color-accent);
        }
        
        .contact-form {
            background: var(--color-white);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--color-dark);
        }
        
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--color-gray-200);
            border-radius: var(--radius-md);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all var(--transition-fast);
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px var(--color-accent-glow);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════════════ */
        .footer {
            background: var(--color-dark);
            color: var(--color-white);
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .footer-brand {
            max-width: 300px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .footer-logo img {
            height: 60px;
            width: auto;
        }
        
        .footer-brand p {
            color: var(--color-gray-400);
            margin-bottom: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all var(--transition-fast);
        }
        
        .social-link:hover {
            background: var(--color-accent);
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: var(--color-white);
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--color-gray-400);
            transition: color var(--transition-fast);
        }
        
        .footer-links a:hover {
            color: var(--color-accent);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-copyright {
            color: var(--color-gray-400);
            font-size: 0.9rem;
        }
        
        .footer-legal {
            display: flex;
            gap: 30px;
        }
        
        .footer-legal a {
            color: var(--color-gray-400);
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }
        
        .footer-legal a:hover {
            color: var(--color-accent);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           COOKIE BANNER
           ═══════════════════════════════════════════════════════════════════ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-dark);
            color: var(--color-white);
            padding: 25px;
            z-index: 9999;
            box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
            transform: translateY(100%);
            transition: transform var(--transition-base);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-text h4 {
            color: var(--color-white);
            margin-bottom: 8px;
        }
        
        .cookie-text p {
            color: var(--color-gray-400);
            font-size: 0.9rem;
        }
        
        .cookie-text a {
            color: var(--color-accent);
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 12px 25px;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
            font-size: 0.9rem;
        }
        
        .cookie-btn-accept {
            background: var(--color-accent);
            color: var(--color-white);
        }
        
        .cookie-btn-accept:hover {
            background: var(--color-primary-light);
        }
        
        .cookie-btn-settings {
            background: transparent;
            color: var(--color-white);
            border: 1px solid var(--color-gray-600);
        }
        
        .cookie-btn-settings:hover {
            border-color: var(--color-white);
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-text {
                order: 2;
            }
            
            .hero-visual {
                order: 1;
            }
            
            .hero-description {
                margin: 0 auto 40px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-stats {
                justify-content: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-white);
                padding: 20px;
                flex-direction: column;
                gap: 15px;
                box-shadow: var(--shadow-lg);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu .nav-link {
                color: var(--color-gray-800);
                padding: 10px 0;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .hero-card {
                display: none;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .why-grid {
                grid-template-columns: 1fr;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* ═══════════════════════════════════════════════════════════════════
           WHATSAPP FLOATING BUTTON
           ═══════════════════════════════════════════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: whatsapp-pulse 2s ease-in-out infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes whatsapp-pulse {
            0%, 100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
            }
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .section {
                padding: 60px 0;
            }
            
            .btn {
                width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .cookie-buttons {
                width: 100%;
            }
            
            .cookie-btn {
                width: 100%;
            }
        }