/**
 * SoftwaLabs - Styles
 * Tema Eclipse con Glassmorphism
 * Colores: Cyan (#00F3F2) sobre negro
 */

/* ========================================
   CSS Variables
======================================== */
:root {
    /* Backgrounds */
    --bg-primary: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #252525;
    --bg-card: rgba(26, 26, 26, 0.6);
    --bg-hover: rgba(30, 30, 35, 0.8);
    
    /* Accent Colors - Cyan */
    --accent-primary: #00F3F2;
    --accent-primary-rgb: 0, 243, 242;
    --accent-light: #4DFFFE;
    --accent-dark: #00C4C3;
    --accent-glow: rgba(0, 243, 242, 0.4);
    
    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    
    /* Borders */
    --border-color: rgba(0, 243, 242, 0.15);
    --border-glow: rgba(0, 243, 242, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(26, 26, 26, 0.5);
    --glass-border: rgba(0, 243, 242, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 243, 242, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 243, 242, 0.2);
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Typography
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.highlight {
    color: var(--accent-primary);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ========================================
   Layout
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-4xl) 0;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-out);
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
}

/* Primary Button - Corregido hover */
.btn--primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn--primary:hover {
    background: var(--bg-primary);
    color: var(--accent-primary);
    box-shadow: inset 0 0 0 2px var(--accent-primary), 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Secondary Button */
.btn--secondary {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn--secondary:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Ghost Button */
.btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
    color: var(--text-primary);
}

/* Button Sizes */
.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* WhatsApp Button (oculto en desktop por defecto) */
.btn--whatsapp {
    display: none;
}

/* CTA Group (solo visible en móvil) */
.nav__cta-group {
    display: none;
}

/* En desktop, mostrar solo el btn--primary normal */
.nav__list > li:last-child .btn--primary {
    display: inline-flex;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-100%);
    opacity: 0;
}

.header--visible {
    transform: translateY(0);
    opacity: 1;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header--scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: var(--shadow-md);
}

/* Mostrar header inmediatamente en páginas que no son home */
body:not(.page-home) .header {
    transform: translateY(0);
    opacity: 1;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-img {
    height: 32px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 1px;
}

/* Partner link highlight */
.nav__link--highlight {
    color: var(--accent-primary) !important;
    font-weight: 600;
}

.nav__link--highlight:hover {
    color: var(--accent-light) !important;
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

/* Menú móvil oculto en desktop */
.nav__mobile {
    display: none;
}

/* ========================================
   Glass Card Effect
======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 12px 40px rgba(0, 243, 242, 0.2);
    transform: translateY(-4px);
}

/* ========================================
   Page Hero - Mejorado con animaciones
======================================== */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(0, 243, 242, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 243, 242, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 243, 242, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.page-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(0, 243, 242, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s var(--ease-out);
}

.page-hero__badge svg {
    width: 16px;
    height: 16px;
}

/* Eyebrow Invertido: H1 pequeño para SEO */
.page-hero__h1-seo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(0, 243, 242, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-primary);
    margin: 0 0 var(--space-lg) 0;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s var(--ease-out);
}

.page-hero__h1-seo svg {
    width: 16px;
    height: 16px;
}

/* Texto emocional grande (visualmente parece H1) */
.page-hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s backwards;
}

.page-hero__headline .highlight {
    position: relative;
    display: inline-block;
    color: var(--accent-primary);
}

.page-hero__headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
    border-radius: 2px;
    opacity: 0.5;
}

.page-hero__title {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s backwards;
}

.page-hero__title .highlight {
    position: relative;
    display: inline-block;
}

.page-hero__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
    border-radius: 2px;
    opacity: 0.5;
}

.page-hero__desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s backwards;
}

.page-hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s backwards;
}

/* ========================================
   Section Headers
======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 14px;
    background: rgba(0, 243, 242, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.section-badge svg {
    width: 14px;
    height: 14px;
}

.section-title {
    margin-bottom: var(--space-md);
}

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

/* ========================================
   Service Cards
======================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 12px 40px rgba(0, 243, 242, 0.15);
    transform: translateY(-6px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 242, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--accent-primary);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 15px;
    margin-bottom: var(--space-lg);
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.service-card__features svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* ========================================
   Benefits Grid
======================================== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.benefit {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.benefit:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 8px 32px rgba(0, 243, 242, 0.15);
    transform: translateY(-4px);
}

.benefit__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 242, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    flex-shrink: 0;
}

.benefit__icon svg {
    width: 24px;
    height: 24px;
}

.benefit__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.benefit__desc {
    font-size: 15px;
    margin-bottom: 0;
}

/* ========================================
   Solutions Grid
======================================== */
.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.solution-card {
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.solution-card:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 8px 32px rgba(0, 243, 242, 0.15);
    transform: translateY(-4px);
}

.solution-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 242, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    margin: 0 auto var(--space-md);
}

.solution-card__icon svg {
    width: 24px;
    height: 24px;
}

.solution-card__title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.solution-card__desc {
    font-size: 14px;
    margin-bottom: 0;
}

/* ========================================
   Pricing Cards
======================================== */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

.pricing-card {
    padding: var(--space-2xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.pricing-card:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 12px 40px rgba(0, 243, 242, 0.15);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--accent-primary);
    position: relative;
}

.pricing-card--featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-card__name {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card__price small {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card__desde {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: lowercase;
}

/* Precios dinámicos */
.precio-tachado {
    display: block;
    font-size: 0.5em;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.precio-oferta {
    color: #22c55e !important;
}

.precio-consultar {
    font-size: 0.7em;
    color: var(--accent-primary);
}

.pricing-card__features {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features svg {
    width: 18px;
    height: 18px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* ========================================
   Process Timeline
======================================== */
.process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.process__step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}

.process__step:hover {
    border-color: rgba(0, 243, 242, 0.4);
    transform: translateY(-4px);
}

.process__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.process__title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.process__desc {
    font-size: 14px;
    margin-bottom: 0;
}

/* Grid 2 columnas para 4 elementos */
.services__grid--2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

/* Process Timeline Expandido (con listas internas) */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.process-step:hover {
    border-color: rgba(0, 243, 242, 0.4);
    transform: translateY(-4px);
}

.process-step__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
}

.process-step__content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.process-step__content > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.process-step__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-step__content ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.process-step__content ul li svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

.process-step__content ul li:last-child {
    margin-bottom: 0;
}

.process-step__content a {
    color: var(--accent-primary);
    text-decoration: none;
}

.process-step__content a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .services__grid--2cols {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .process-step__number {
        font-size: 2rem;
    }
}

/* ========================================
   Stats Section
======================================== */
.stats {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat__value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 30px var(--accent-glow);
}

.stat__label {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

/* ========================================
   Testimonials
======================================== */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial {
    padding: var(--space-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.testimonial:hover {
    border-color: rgba(0, 243, 242, 0.4);
    box-shadow: 0 8px 32px rgba(0, 243, 242, 0.15);
}

.testimonial__text {
    font-size: 15px;
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: var(--accent-primary);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 243, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial__img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.testimonial__info {
    min-width: 0;
}

.testimonial__name {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial__role {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   CTA Section
======================================== */
.cta {
    padding: var(--space-4xl) 0;
}

.cta__inner {
    padding: var(--space-3xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 243, 242, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
    position: relative;
}

.cta__desc {
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    position: relative;
}

.cta__buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ========================================
   Contact Form
======================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
}

.contact-form {
    padding: var(--space-2xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: all var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 243, 242, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-primary);
}

.form-checkbox label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========================================
   FAQ Accordion
======================================== */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(0, 243, 242, 0.3);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}

.faq-item__question svg {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
    transition: transform var(--duration-fast) var(--ease-out);
}

.faq-item--active .faq-item__question svg {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-item--active .faq-item__answer {
    display: block;
}

.faq-item__answer p {
    font-size: 15px;
    margin-bottom: 0;
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand p {
    margin: var(--space-lg) 0;
    font-size: 14px;
}

/* Footer logo - tamaño natural sin agrandar */
.footer__brand .logo-img {
    height: auto;
    max-height: 19px;
    width: auto;
    max-width: 200px;
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer__social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a,
.footer__links span {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer__links a:hover {
    color: var(--accent-primary);
}

.footer__icon {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-color);
}

.footer__copy {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__legal a:hover {
    color: var(--accent-primary);
}

/* ========================================
   WhatsApp Button
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* ========================================
   Back to Top
======================================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Cookie Banner
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: var(--space-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    display: none;
}

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

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.cookie-banner__text a {
    color: var(--accent-primary);
}

.cookie-banner__buttons {
    display: flex;
    gap: var(--space-sm);
}

/* ========================================
   Alerts
======================================== */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 14px;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.alert--success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.alert--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert--info {
    background: rgba(0, 243, 242, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--accent-light);
}

/* ========================================
   Animations
======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow); }
}

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

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

@keyframes borderGlow {
    0%, 100% { border-color: var(--glass-border); }
    50% { border-color: rgba(0, 243, 242, 0.5); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative floating elements */
.floating-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 242, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

/* Enhanced service cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

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

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(0, 243, 242, 0.03) 50%,
        transparent 55%
    );
    transform: rotate(-45deg) translateY(-100%);
    transition: transform 0.6s var(--ease-out);
    pointer-events: none;
}

.service-card:hover::after {
    transform: rotate(-45deg) translateY(100%);
}

/* Enhanced section headers */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-dark));
    margin: var(--space-lg) auto 0;
    border-radius: 2px;
}

/* Icon animations */
.service-card__icon,
.benefit__icon,
.sector-card i {
    transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card__icon,
.benefit:hover .benefit__icon,
.sector-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light), var(--accent-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

/* Glowing border on hover */
.glass-card:hover,
.service-card:hover,
.pricing-card:hover,
.testimonial:hover {
    animation: borderGlow 2s ease-in-out infinite;
}

/* Enhanced buttons */
.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s var(--ease-out);
}

.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary:hover::before {
    left: 100%;
}

/* Stats counter animation placeholder */
.stat__value {
    position: relative;
}

/* Parallax-like subtle movement */
@media (prefers-reduced-motion: no-preference) {
    .services__grid .service-card:nth-child(even) {
        transform: translateY(20px);
    }
    
    .services__grid .service-card:nth-child(even).visible {
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .services__grid,
    .pricing__grid,
    .testimonials__grid,
    .solutions__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-3xl) 0;
    }
    
    /* Logo más pequeño en móvil - tamaño natural sin agrandar */
    .logo-img,
    .header .logo-img,
    .footer .logo-img,
    .footer__logo img {
        height: auto;
        max-width: 200px;
        max-height: 19px;
        width: auto;
    }
    
    /* Ocultar menú desktop en móvil */
    .nav__list {
        display: none !important;
    }
    
    /* ========================================
       Mobile Menu - App Style
    ======================================== */
    .nav__mobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
        z-index: 9998;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav--open .nav__mobile {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* Header del menú móvil */
    .nav__mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
        flex-shrink: 0;
    }
    
    .nav__mobile-logo img {
        height: 19px;
        width: auto;
    }
    
    .nav__close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        color: var(--text-secondary);
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav__close:hover,
    .nav__close:focus {
        background: rgba(0, 243, 242, 0.1);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
        outline: none;
    }
    
    .nav__close svg {
        width: 24px;
        height: 24px;
    }
    
    /* Lista de navegación móvil */
    .nav__mobile-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 12px 0;
        margin: 0;
        list-style: none;
        overflow-y: auto;
    }
    
    .nav__mobile-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .nav--open .nav__mobile-list li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav--open .nav__mobile-list li:nth-child(1) { transition-delay: 0.05s; }
    .nav--open .nav__mobile-list li:nth-child(2) { transition-delay: 0.1s; }
    .nav--open .nav__mobile-list li:nth-child(3) { transition-delay: 0.15s; }
    .nav--open .nav__mobile-list li:nth-child(4) { transition-delay: 0.2s; }
    .nav--open .nav__mobile-list li:nth-child(5) { transition-delay: 0.25s; }
    .nav--open .nav__mobile-list li:nth-child(6) { transition-delay: 0.3s; }
    .nav--open .nav__mobile-list li:nth-child(7) { transition-delay: 0.35s; }
    
    .nav__mobile-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 24px;
        color: var(--text-secondary);
        font-size: 17px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav__mobile-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        opacity: 0.6;
        transition: all 0.3s ease;
    }
    
    .nav__mobile-link:hover,
    .nav__mobile-link:focus {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.03);
        border-left-color: var(--accent-primary);
        outline: none;
    }
    
    .nav__mobile-link:hover svg,
    .nav__mobile-link:focus svg {
        opacity: 1;
        color: var(--accent-primary);
    }
    
    .nav__mobile-link--active {
        color: var(--accent-primary);
        background: rgba(0, 243, 242, 0.05);
        border-left-color: var(--accent-primary);
    }
    
    .nav__mobile-link--active svg {
        opacity: 1;
        color: var(--accent-primary);
    }
    
    /* Partner link highlight en móvil */
    .nav__mobile-link--highlight {
        color: var(--accent-primary);
        background: rgba(0, 243, 242, 0.08);
        border-left: 3px solid var(--accent-primary);
    }
    
    .nav__mobile-link--highlight svg {
        opacity: 1;
        color: var(--accent-primary);
    }
    
    /* Acciones rápidas */
    .nav__mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        flex-shrink: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: 0s;
    }
    
    .nav--open .nav__mobile-actions {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.35s;
    }
    
    .nav__mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 24px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav__mobile-btn svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .nav__mobile-btn--primary {
        background: linear-gradient(135deg, var(--accent-primary) 0%, #00c9c8 100%);
        color: #000;
    }
    
    .nav__mobile-btn--primary:hover,
    .nav__mobile-btn--primary:focus {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 243, 242, 0.3);
        outline: none;
    }
    
    .nav__mobile-btn--whatsapp {
        background: #25d366;
        color: #fff;
    }
    
    .nav__mobile-btn--whatsapp:hover,
    .nav__mobile-btn--whatsapp:focus {
        background: #128C7E;
        transform: translateY(-2px);
        outline: none;
    }
    
    .nav__mobile-btn--outline {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
    }
    
    .nav__mobile-btn--outline:hover,
    .nav__mobile-btn--outline:focus {
        border-color: var(--accent-primary);
        color: var(--accent-primary);
        background: rgba(0, 243, 242, 0.05);
        outline: none;
    }
    
    /* Footer del menú móvil */
    .nav__mobile-footer {
        padding: 16px 24px 24px;
        text-align: center;
        border-top: 1px solid var(--border-color);
        flex-shrink: 0;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: 0s;
    }
    
    .nav--open .nav__mobile-footer {
        opacity: 1;
        transition-delay: 0.4s;
    }
    
    .nav__mobile-contact {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--text-secondary);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s ease;
        margin-bottom: 8px;
    }
    
    .nav__mobile-contact:hover,
    .nav__mobile-contact:focus {
        color: var(--accent-primary);
        outline: none;
    }
    
    .nav__mobile-contact svg {
        width: 16px;
        height: 16px;
    }
    
    .nav__mobile-tagline {
        font-size: 12px;
        color: var(--text-muted);
        margin: 8px 0 0 0;
    }
    
    /* Botón hamburguesa */
    .nav__toggle {
        display: flex;
        z-index: 10001;
        cursor: pointer;
        position: fixed;
        top: 14px;
        right: 16px;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
        background: rgba(13, 13, 13, 0.9);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav__toggle:hover,
    .nav__toggle:active,
    .nav__toggle:focus {
        background: rgba(0, 243, 242, 0.1);
        border-color: var(--accent-primary);
        outline: none;
    }
    
    .nav__toggle span {
        position: absolute;
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    
    .nav__toggle span:nth-child(1) {
        transform: translateY(-6px);
    }
    
    .nav__toggle span:nth-child(2) {
        transform: translateY(0);
        width: 14px;
    }
    
    .nav__toggle span:nth-child(3) {
        transform: translateY(6px);
    }
    
    /* Animación X cuando está abierto - OCULTAR hamburguesa */
    .nav--open .nav__toggle {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Mostrar header cuando menú está abierto */
    .nav--open .header,
    body.nav-open .header {
        transform: translateY(0) !important;
        opacity: 1 !important;
        background: transparent !important;
        border-bottom-color: transparent !important;
    }
    
    .services__grid,
    .benefits__grid,
    .pricing__grid,
    .testimonials__grid,
    .solutions__grid,
    .process__timeline {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .cta__buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .btn--lg {
        padding: 16px 28px;
    }
    
    .pricing-card {
        padding: var(--space-xl);
    }
}

/* ========================================
   Enhanced Animations & Effects
======================================== */

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Pulse glow for icons */
@keyframes pulseGlowIcon {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 243, 242, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 243, 242, 0.4);
        transform: scale(1.05);
    }
}

/* Gradient shift */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Service card enhanced hover */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 242, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-card__icon {
    animation: pulseGlowIcon 1.5s ease-in-out infinite;
}

/* Stat cards animated */
.stat {
    position: relative;
}

.stat__value {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease infinite;
}

/* Section badge floating */
.section-badge {
    animation: float 4s ease-in-out infinite;
}

/* Pricing card enhanced */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 243, 242, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

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

.pricing-card--featured > * {
    position: relative;
    z-index: 1;
}

/* Testimonial card enhanced */
.testimonial {
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--accent-primary);
    opacity: 0.1;
    line-height: 1;
}

/* CTA section enhanced */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 243, 242, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 243, 242, 0.08) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta__inner {
    position: relative;
    z-index: 1;
}

/* Hover lift effect for glass cards */
.glass-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(0, 243, 242, 0.15),
        0 0 0 1px rgba(0, 243, 242, 0.3);
}

/* Benefit icon glow on hover */
.benefit:hover .benefit__icon {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
}

.benefit__icon {
    transition: all 0.3s ease;
}

/* Solution card hover */
.solution-card {
    transition: all 0.3s ease;
}

.solution-card:hover {
    background: rgba(0, 243, 242, 0.08);
    transform: translateY(-4px);
}

.solution-card:hover .solution-card__icon {
    transform: scale(1.15) rotate(5deg);
}

.solution-card__icon {
    transition: transform 0.3s ease;
}

/* FAQ enhanced animation */
.faq-item__question:hover {
    background: rgba(0, 243, 242, 0.05);
}

.faq-item.active .faq-item__question i {
    transform: rotate(45deg);
    color: var(--accent-primary);
}

.faq-item__question i {
    transition: all 0.3s ease;
}

/* Button ripple effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Enhanced page hero CTA */
.page-hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s backwards;
}

/* Smooth scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--accent-primary);
}

.scroll-indicator__mouse {
    width: 24px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator__wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* Icon spin on hover for certain elements */
.footer__social a:hover svg {
    animation: iconSpin 0.5s ease;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

/* Gradient text for headings */
.gradient-text {
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Glowing border animation */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-dark), var(--accent-primary));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    animation: glowBorder 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

@keyframes glowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle effect for backgrounds */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 10s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Link underline animation */
.animated-link {
    position: relative;
    display: inline-block;
}

.animated-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.animated-link:hover::after {
    width: 100%;
}
