        /* ============================================
           CSS VARIABLES & RESET
        ============================================ */
        :root {
            /* Colors - Vibrant & Bold */
            --primary: #6366f1;
            --primary-light: #818cf8;
            --primary-dark: #4f46e5;
            --accent: #06b6d4;
            --accent-secondary: #f472b6;
            
            /* Gradients */
            --gradient-main: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
            --gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            --gradient-text: linear-gradient(135deg, #6366f1, #06b6d4, #f472b6);
            
            /* Dark Theme */
            --bg-dark: #0a0a0f;
            --bg-darker: #050507;
            --surface: rgba(255, 255, 255, 0.03);
            --surface-hover: rgba(255, 255, 255, 0.06);
            --border: rgba(255, 255, 255, 0.08);
            --border-light: rgba(255, 255, 255, 0.12);
            
            /* Text */
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            
            /* Typography */
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Sora', sans-serif;
            
            /* Spacing */
            --section-padding: clamp(80px, 12vw, 160px);
            --container-width: 1280px;
            
            /* Effects */
            --glass-blur: blur(20px);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.3);
            --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            
            /* Transitions */
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Reset */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        body {
            font-family: var(--font-body);
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ============================================
           BACKGROUND EFFECTS
        ============================================ */
        .bg-grid {
            position: fixed;
            inset: 0;
            background-image: 
                linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .bg-gradient-orbs {
            position: fixed;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--accent);
            top: 50%;
            right: -150px;
            animation-delay: -7s;
        }

        .orb-3 {
            width: 400px;
            height: 400px;
            background: var(--accent-secondary);
            bottom: -100px;
            left: 30%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }

        /* ============================================
           LAYOUT
        ============================================ */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            position: relative;
            z-index: 1;
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: var(--transition-smooth);
        }

        .nav.scrolled {
            padding: 12px 0;
            background: rgba(10, 10, 15, 0.8);
            backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--border);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--text-primary);
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-main);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition-fast);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-main);
            transition: var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-main);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: var(--transition-fast);
        }

        /* ============================================
           HERO SECTION
        ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 var(--section-padding);
            position: relative;
        }

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

        .hero-text {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
        }

        .hero h1 .gradient-text {
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: white;
            box-shadow: 0 4px 25px rgba(99, 102, 241, 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.45);
        }

        .btn-secondary {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            color: var(--text-primary);
        }

        .btn-secondary:hover {
            background: var(--surface-hover);
            border-color: var(--border-light);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-lottie {
            width: 100%;
            max-width: 420px;
            filter: drop-shadow(0 20px 60px rgba(99, 102, 241, 0.3));
        }

        .floating-cards {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .floating-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: floatCard 6s ease-in-out infinite;
            box-shadow: var(--shadow-card);
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .floating-card:nth-child(1) {
            top: 10%;
            right: 0;
            animation-delay: 0s;
        }

        .floating-card:nth-child(1) .floating-card-icon {
            background: linear-gradient(135deg, #22c55e, #16a34a);
        }

        .floating-card:nth-child(2) {
            bottom: 20%;
            left: 0;
            animation-delay: -2s;
        }

        .floating-card:nth-child(2) .floating-card-icon {
            background: linear-gradient(135deg, #f472b6, #ec4899);
        }

        .floating-card:nth-child(3) {
            bottom: 5%;
            right: 10%;
            animation-delay: -4s;
        }

        .floating-card:nth-child(3) .floating-card-icon {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
        }

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

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

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

        /* ============================================
           STATS BAR
        ============================================ */
        .stats-bar {
            padding: 60px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            background: var(--surface);
        }

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

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

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-text);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* ============================================
           PROCESS SECTION
        ============================================ */
        .process {
            padding: var(--section-padding) 0;
        }

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

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--glass-bg);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary-light);
            margin-bottom: 20px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-description {
            color: var(--text-secondary);
            font-size: 1.15rem;
        }

        .process-timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--primary), var(--accent), var(--accent-secondary));
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-step:nth-child(even) .process-content {
            grid-column: 3;
            text-align: left;
        }

        .process-step:nth-child(even) .process-lottie {
            grid-column: 1;
            grid-row: 1;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-main);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
            position: relative;
            z-index: 1;
        }

        .process-content {
            text-align: right;
        }

        .process-content h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .process-content p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .process-lottie {
            display: flex;
            justify-content: center;
        }

        .process-lottie dotlottie-player {
            width: 180px;
            height: 180px;
            filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.2));
        }

        /* ============================================
           LOTTIE SIZES - ESPECÍFICOS
        ============================================ */

        /* Hero Lottie */
        .hero-lottie dotlottie-player {
            width: 100%;
            max-width: 450px;
        }

        /* Proceso - SOLO paso 2 y 3 más grandes (mobile-app y maintenance) */
        .process-step:nth-child(2) .process-lottie dotlottie-player,
        .process-step:nth-child(3) .process-lottie dotlottie-player {
            width: 180px;
            height: 180px;
        }

        /* CTA - Call Center Lottie MÁS GRANDE Y CENTRADO */
        .cta dotlottie-player,
        .cta-box dotlottie-player,
        .cta-content dotlottie-player {
            width: 300px !important;
            height: 300px !important;
            display: block;
            margin: 0 auto 30px auto;
        }


        /* ============================================
           PRICING SECTION
        ============================================ */
        .pricing {
            padding: var(--section-padding) 0;
            background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
        }

        .pricing-note {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-note-box {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            padding: 16px 28px;
            border-radius: 12px;
            color: #fbbf24;
        }

        .pricing-note-box i {
            font-size: 1.25rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 32px 28px;
            position: relative;
            transition: var(--transition-smooth);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--border-light);
            box-shadow: var(--shadow-glow);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.1));
            border-color: var(--primary);
            transform: scale(1.03);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .pricing-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 16px;
            background: var(--surface);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-light);
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .pricing-desc {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .pricing-price {
            text-align: center;
            margin-bottom: 32px;
        }

        .pricing-amount {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 800;
        }

        .pricing-currency {
            font-size: 1.5rem;
            font-weight: 600;
            vertical-align: super;
            margin-right: 4px;
        }

        .pricing-period {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 4px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }

        .pricing-features li i {
            color: #22c55e;
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .pricing-cta {
            width: 100%;
            justify-content: center;
        }

        /* ============================================
           FAQ SECTION
        ============================================ */
        .faq {
            padding: var(--section-padding) 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .faq-item:hover {
            border-color: var(--border-light);
        }

        .faq-question {
            width: 100%;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .faq-question:hover {
            color: var(--primary-light);
        }

        .faq-question i {
            font-size: 1.25rem;
            transition: var(--transition-smooth);
        }

        .faq-item.open .faq-question i {
            transform: rotate(45deg);
        }

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

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

        .faq-answer-inner {
            padding: 0 24px 24px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta {
            padding: var(--section-padding) 0;
        }

        .cta-box {
            background: var(--gradient-dark);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }

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

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

        .cta h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta p {
            color: var(--text-secondary);
            font-size: 1.15rem;
            margin-bottom: 40px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            padding: 60px 0 30px;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-text {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 32px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-fast);
        }

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


        /* ============================================
           MOBILE MENU
        ============================================ */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: var(--glass-blur);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 2rem;
            cursor: pointer;
        }

        .mobile-menu-links {
            list-style: none;
            text-align: center;
        }

        .mobile-menu-links li {
            margin: 24px 0;
        }

        .mobile-menu-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            transition: var(--transition-fast);
        }

        .mobile-menu-links a:hover {
            color: var(--primary-light);
        }

        /* ============================================
           SCROLL ANIMATIONS
        ============================================ */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 998;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: var(--transition-smooth);
        }

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

        /* Footer Social */
        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: var(--glass-bg);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            font-size: 1.25rem;
            transition: var(--transition-fast);
        }

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

        /* ============================================
           WHY US SECTION
        ============================================ */
        .why-us {
            padding: var(--section-padding) 0;
        }

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

        .why-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px;
            transition: var(--transition-smooth);
        }

        .why-card:hover {
            border-color: var(--border-light);
            transform: translateY(-5px);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-main);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .why-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           SERVICES SECTION
        ============================================ */
        .services {
            padding: var(--section-padding) 0;
            background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.03) 50%, transparent 100%);
        }

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

        .service-card {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 36px;
            transition: var(--transition-smooth);
        }

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

        .service-icon {
            width: 64px;
            height: 64px;
            background: var(--surface);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            color: var(--primary-light);
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card > p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .service-features li i {
            color: #22c55e;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           SECTORS SECTION
        ============================================ */
        .sectors {
            padding: var(--section-padding) 0;
        }

        .sectors-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .sector-item {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 16px;
            text-align: center;
            transition: var(--transition-smooth);
            cursor: default;
        }

        .sector-item:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
            transform: translateY(-3px);
        }

        .sector-item i {
            font-size: 2rem;
            color: var(--primary-light);
            margin-bottom: 12px;
            display: block;
        }

        .sector-item span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        @media (max-width: 1024px) {
            .sectors-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .sectors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .sectors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           PORTFOLIO SECTION - HORIZONTAL LAYOUT
        ============================================ */
        .portfolio {
            padding: var(--section-padding) 0;
            overflow: hidden;
        }

        .portfolio-grid {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
            flex-wrap: wrap;
        }

        .portfolio-card {
            position: relative;
            width: 220px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            display: block;
            background: var(--surface);
            border: 1px solid var(--border);
            transition: var(--transition-smooth);
            flex-shrink: 0;
        }

        .portfolio-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-glow);
            z-index: 2;
        }

        /* Separador entre cards */
        .portfolio-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 60%;
            background: linear-gradient(to bottom, transparent, var(--primary), var(--accent), transparent);
            opacity: 0.5;
            pointer-events: none;
        }

        /* Espaciado real entre cards */
        .portfolio-card + .portfolio-card {
            margin-left: 40px;
        }

        .portfolio-image {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            transition: transform 0.6s ease;
        }

        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.08);
        }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            transition: background 0.4s ease;
        }

        .portfolio-card:hover .portfolio-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.3) 100%);
        }

        .portfolio-info {
            color: white;
        }

        .portfolio-category {
            display: inline-block;
            background: var(--primary);
            padding: 4px 10px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .portfolio-info h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: white;
            line-height: 1.2;
        }

        .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            margin: 0;
        }

        .portfolio-link {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-dark);
            font-size: 1rem;
            transform: translateY(-10px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .portfolio-card:hover .portfolio-link {
            transform: translateY(0);
            opacity: 1;
        }

        /* ============================================
           MOBILE FIRST - RESPONSIVE FIXES
        ============================================ */

        /* Prevenir overflow horizontal */
        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        /* Logo en nav */
        .logo-img {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            object-fit: contain;
        }

        /* ===== TABLET (max 1024px) ===== */
        @media (max-width: 1024px) {
            :root {
                --section-padding: clamp(60px, 10vw, 100px);
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-ctas {
                justify-content: center;
                flex-wrap: wrap;
            }

            .hero-visual {
                order: -1;
            }

            .hero-lottie dotlottie-player {
                max-width: 350px;
            }

            .floating-cards {
                display: none;
            }

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

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

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

            /* Portfolio tablet */
            .portfolio-grid {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .portfolio-card {
                width: 180px;
                height: 340px;
            }

            .portfolio-card + .portfolio-card {
                margin-left: 0;
            }

            .portfolio-card:not(:last-child)::after {
                display: none;
            }

            /* Proceso tablet */
            .process-step {
                grid-template-columns: auto 1fr;
                gap: 20px;
            }

            .process-line {
                left: 30px;
            }

            .process-content,
            .process-step:nth-child(even) .process-content {
                grid-column: 2;
                text-align: left;
            }

            .process-lottie,
            .process-step:nth-child(even) .process-lottie {
                display: none;
            }

            /* Pricing tablet */
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: none;
                order: -1;
            }

            .sectors-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ===== MOBILE (max 768px) ===== */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .nav {
                padding: 12px 0;
            }

            .nav-links {
                display: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .logo span {
                font-size: 1.1rem;
            }

            .logo-img {
                width: 36px;
                height: 36px;
            }

            .hero {
                padding: 120px 0 60px;
                min-height: auto;
            }

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

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

            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 12px;
            }

            .hero-lottie dotlottie-player {
                max-width: 280px;
            }

            .btn {
                padding: 14px 24px;
                font-size: 0.9rem;
            }

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

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

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

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

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

            .why-card {
                padding: 24px;
            }

            /* Portfolio mobile */
            .portfolio-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .portfolio-card {
                width: 100%;
                height: 280px;
            }

            .portfolio-info h3 {
                font-size: 0.85rem;
            }

            .portfolio-info p {
                font-size: 0.7rem;
            }

            .portfolio-category {
                font-size: 0.6rem;
                padding: 3px 8px;
            }

            .portfolio-overlay {
                padding: 14px;
            }

            .portfolio-link {
                width: 30px;
                height: 30px;
                font-size: 0.85rem;
                top: 8px;
                right: 8px;
            }

            /* Pricing mobile */
            .pricing-card {
                padding: 24px 20px;
            }

            .pricing-amount {
                font-size: 2.2rem;
            }

            .pricing-note-box {
                padding: 12px 16px;
                font-size: 0.85rem;
                flex-direction: column;
                text-align: center;
            }

            /* FAQ mobile */
            .faq-question {
                padding: 18px;
                font-size: 1rem;
            }

            .faq-answer-inner {
                padding: 0 18px 18px;
            }

            /* Sectors mobile */
            .sectors-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .sector-item {
                padding: 16px 10px;
            }

            .sector-item i {
                font-size: 1.5rem;
            }

            .sector-item span {
                font-size: 0.7rem;
            }

            /* CTA mobile */
            .cta-box {
                padding: 50px 20px;
                border-radius: 20px;
            }

            .cta h2 {
                font-size: 1.5rem;
            }

            .cta p {
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .cta dotlottie-player,
            .cta-box dotlottie-player {
                width: 120px !important;
                height: 120px !important;
            }

            /* Footer mobile */
            .footer-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 16px;
            }

            /* WhatsApp button mobile */
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 54px;
                height: 54px;
                font-size: 1.5rem;
            }
        }

        /* ===== SMALL MOBILE (max 480px) ===== */
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero-description {
                font-size: 0.95rem;
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%;
            }

            .hero-ctas .btn {
                width: 100%;
                justify-content: center;
            }

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

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

            /* Portfolio small mobile - 2 columnas compactas */
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .portfolio-card {
                height: 240px;
                border-radius: 14px;
            }

            .portfolio-overlay {
                padding: 10px;
            }

            .portfolio-info h3 {
                font-size: 0.75rem;
            }

            .portfolio-category {
                font-size: 0.55rem;
                padding: 2px 6px;
                margin-bottom: 4px;
            }

            .portfolio-info p {
                display: none;
            }

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

            .process-content h3 {
                font-size: 1.1rem;
            }

            .process-content p {
                font-size: 0.9rem;
            }

            .process-number {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        /* ============================================
           PROCESO - MOBILE FIX
        ============================================ */
        @media (max-width: 768px) {
            .process-timeline {
                position: relative;
                padding-left: 0;
            }

            .process-line {
                left: 24px;
            }

            .process-step {
                display: flex;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 50px;
                padding-left: 0;
            }

            /* Ocultar lotties en móvil */
            .process-lottie {
                display: none;
            }

            /* Número alineado con el título */
            .process-number {
                flex-shrink: 0;
                margin-top: 0;
                width: 48px;
                height: 48px;
                font-size: 1.2rem;
            }

            /* Contenido al lado del número */
            .process-content {
                flex: 1;
                text-align: left !important;
                padding-top: 8px;
            }

            .process-content h3 {
                font-size: 1.15rem;
                margin-bottom: 8px;
            }

            .process-content p {
                font-size: 0.9rem;
                line-height: 1.6;
            }

            /* Fix para pasos pares e impares */
            .process-step:nth-child(even) .process-content {
                text-align: left !important;
            }
        }

        @media (max-width: 480px) {
            .process-line {
                left: 20px;
            }

            .process-number {
                width: 42px;
                height: 42px;
                font-size: 1.1rem;
            }

            .process-step {
                gap: 16px;
            }

            .process-content h3 {
                font-size: 1.05rem;
            }

            .process-content p {
                font-size: 0.85rem;
            }
        }

        /* Footer Sectors */
        .footer-sectors {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-sectors-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .footer-sectors a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-fast);
        }

        .footer-sectors a:hover {
            color: var(--primary-light);
        }

        /* Sector items linked */
        a.sector-item {
            text-decoration: none;
            cursor: pointer;
        }

        a.sector-item:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
            transform: translateY(-3px);
        }
