 :root {
            --electric-blue: #00d4ff;
            --deep-blue: #0a1628;
            --dark-bg: #000814;
            --accent-cyan: #4df3ff;
            --text-muted: #8b9eb5;
            --card-bg: rgba(13, 26, 48, 0.6);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'JetBrains Mono', monospace;
            background: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Animated grid background */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridFlow 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes gridFlow {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        /* Floating orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            z-index: -1;
            animation: float 15s ease-in-out infinite;
        }
        
        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--electric-blue);
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 350px;
            height: 350px;
            background: var(--accent-cyan);
            bottom: 10%;
            right: -5%;
            animation-delay: 5s;
        }
        
        .orb-3 {
            width: 300px;
            height: 300px;
            background: #0066ff;
            top: 50%;
            right: 10%;
            animation-delay: 10s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-30px, 30px) scale(0.9); }
        }
        
        /* Header */
        header {
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            animation: slideDown 0.8s ease-out;
        }
        
        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            height: 100px;
            width: auto;
            /*max-width: 250px;*/
            object-fit: contain;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        
        @media (max-width: 1024px) {
            .logo-img {
                height: 100px;
                /*max-width: 220px;*/
            }
        }
        
        @media (max-width: 768px) {
            .logo-img {
                height: 80px;
                /*max-width: 200px;*/
            }
        }
        
        @media (max-width: 480px) {
            .logo-img {
                height: 60px;
                /*max-width: 180px;*/
            }
        }
        
        .logo-img:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
        }
        
        .cta-header {
            padding: 0.75rem 2rem;
            background: transparent;
            border: 2px solid var(--electric-blue);
            color: var(--electric-blue);
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--electric-blue);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .cta-header:hover {
            color: #000;
            box-shadow: 0 0 20px var(--electric-blue);
        }
        
        .cta-header:hover::before {
            left: 0;
        }
        
        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 5%;
            position: relative;
        }
        
        .hero-content {
            max-width: 900px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        @keyframes fadeInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .hero-tag {
            font-family: 'Orbitron', sans-serif;
            font-size: 0.85rem;
            color: var(--accent-cyan);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: fadeInUp 1s ease-out 0.5s both;
        }
        
        .hero-tag::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--accent-cyan);
        }
        
        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, var(--electric-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out 0.7s both;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            line-height: 1.8;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.9s both;
        }
        
        .cta-primary {
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--electric-blue), var(--accent-cyan));
            border: none;
            color: #000;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
            animation: fadeInUp 1s ease-out 1.1s both, pulse 2s ease-in-out infinite;
        }
        
        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(0, 212, 255, 0.5);
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3); }
            50% { box-shadow: 0 10px 50px rgba(0, 212, 255, 0.5); }
        }
        
        /* Services Grid */
        .services {
            /*padding: 8rem 5%;*/
            padding: 4rem 5%;
            position: relative;
        }
        
        .section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 4rem;
            background: linear-gradient(135deg, #fff, var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .service-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--electric-blue);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--electric-blue);
        }
        
        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* Spanish Language Section */
        .spanish-section {
            /*padding: 8rem 5%;*/
            padding: 4rem 5%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(77, 243, 255, 0.08));
            position: relative;
            overflow: hidden;
        }
        
        .spanish-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent);
            border-radius: 50%;
            filter: blur(60px);
        }
        
        .spanish-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .spanish-badge {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: rgba(0, 212, 255, 0.15);
            border: 1px solid var(--electric-blue);
            border-radius: 50px;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--electric-blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .spanish-title {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .spanish-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .spanish-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .spanish-feature {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .spanish-feature:nth-child(1) { animation-delay: 0.6s; }
        .spanish-feature:nth-child(2) { animation-delay: 0.7s; }
        .spanish-feature:nth-child(3) { animation-delay: 0.8s; }
        .spanish-feature:nth-child(4) { animation-delay: 0.9s; }
        
        .spanish-feature:hover {
            transform: translateY(-5px);
            border-color: var(--electric-blue);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }
        
        .feature-icon {
            font-size: 1.5rem;
            color: var(--electric-blue);
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .spanish-feature span:last-child {
            font-size: 1rem;
            color: #fff;
            text-align: left;
        }
        
        /* Stats Section */
        .stats {
            padding: 6rem 5%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(77, 243, 255, 0.05));
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .stat-item {
            animation: fadeInUp 0.8s ease-out both;
        }
        
        .stat-item:nth-child(1) { animation-delay: 0.2s; }
        .stat-item:nth-child(2) { animation-delay: 0.4s; }
        .stat-item:nth-child(3) { animation-delay: 0.6s; }
        .stat-item:nth-child(4) { animation-delay: 0.8s; }
        
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--electric-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        /* FAQ Section */
        .faq-section {
            /*padding: 8rem 5%;*/
            padding: 4rem 5%;
            position: relative;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease-out both;
        }
        
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.15s; }
        .faq-item:nth-child(3) { animation-delay: 0.2s; }
        .faq-item:nth-child(4) { animation-delay: 0.25s; }
        .faq-item:nth-child(5) { animation-delay: 0.3s; }
        .faq-item:nth-child(6) { animation-delay: 0.35s; }
        .faq-item:nth-child(7) { animation-delay: 0.4s; }
        .faq-item:nth-child(8) { animation-delay: 0.45s; }
        
        .faq-item:hover {
            border-color: var(--electric-blue);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15);
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: transparent;
            border: none;
            color: #fff;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--electric-blue);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--electric-blue);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 2rem;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem 2rem;
        }
        
        .faq-answer p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        /* CTA Section */
        .cta-section {
            /* padding: 8rem 5%;*/
	    padding: 4rem 5%;
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff, var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-secondary {
            padding: 1.2rem 3rem;
            background: transparent;
            border: 2px solid var(--electric-blue);
            color: var(--electric-blue);
            font-family: 'Orbitron', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-secondary:hover {
            background: var(--electric-blue);
            color: #000;
            box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            padding: 4rem 5%;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo-img {
            height: 80px;
            width: auto;
            max-width: 300px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.2));
        }
        
        @media (max-width: 1024px) {
            .footer-logo-img {
                height: 70px;
                max-width: 260px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-logo-img {
                height: 60px;
                max-width: 220px;
            }
        }
        
        @media (max-width: 480px) {
            .footer-logo-img {
                height: 50px;
                max-width: 180px;
            }
        }
        
        .footer-tagline {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 2rem;
            letter-spacing: 1px;
        }
        
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        
        .footer-contact a {
            color: var(--electric-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-contact a:hover {
            color: var(--accent-cyan);
        }
        
        .footer-language {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.85rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
            
            .hero {
                padding: 2rem 5%;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .spanish-features {
                grid-template-columns: 1fr;
            }
            
            .spanish-feature {
                justify-content: center;
                text-align: center;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-primary,
            .cta-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 1.2rem 1.5rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.2rem 1.5rem;
            }
        }
        
        /* Scroll reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

