/* CSS Variables - Premium Startup Design */
:root {
  /* Colors - Paleta oficial devFactory */
  --indigo-900: #28306c;
  --blue-900: #2c4798;
  --blue-500: #2d4899;
  --cyan-400: #4abdd0;
  --cyan-300: #5fc7d8;
  --paper: #ffffff;
  --ink: #0a0e27;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2d4899 0%, #4abdd0 100%);
  --gradient-accent: linear-gradient(135deg, #28306c 0%, #2c4798 100%);
  --gradient-glow: radial-gradient(ellipse 800px 400px at 50% -20%, rgba(45, 72, 153, 0.25), transparent 60%);

  /* Semantic tokens */
  --background: var(--paper);
  --foreground: var(--ink);
  --primary: #2d4899;
  --primary-hover: #2c4798;
  --accent: #4abdd0;
  --muted: rgba(10, 14, 39, 0.04);
  --border: rgba(10, 14, 39, 0.08);
  
  /* Surfaces */
  --surface-elevated: rgba(255, 255, 255, 0.8);
  --surface-glass: rgba(255, 255, 255, 0.7);

  /* Shadows - Más sutiles y profesionales */
  --shadow-sm: 0 1px 2px rgba(10, 14, 39, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 14, 39, 0.06);
  --shadow-lg: 0 12px 40px rgba(10, 14, 39, 0.08);
  --shadow-xl: 0 24px 60px rgba(10, 14, 39, 0.12);
  --shadow-card: var(--shadow-md);
  --shadow-floating: var(--shadow-xl);
  --shadow-hover: var(--shadow-lg);

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 32px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode variables */
[data-theme="dark"] {
  --paper: #0a0e27;
  --ink: #f8f9fa;
  --background: #0a0e27;
  --foreground: #f8f9fa;
  --muted: rgba(248, 249, 250, 0.06);
  --border: rgba(248, 249, 250, 0.1);
  
  /* Surfaces */
  --surface-elevated: rgba(20, 24, 47, 0.8);
  --surface-glass: rgba(20, 24, 47, 0.7);
  
  /* Gradients ajustados para dark */
  --gradient-glow: radial-gradient(ellipse 800px 400px at 50% -20%, rgba(74, 189, 208, 0.15), transparent 60%);
  
  /* Shadows para dark mode */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-card: var(--shadow-md);
  --shadow-floating: var(--shadow-xl);
  --shadow-hover: var(--shadow-lg);
}

/* Hero dark mode override */
[data-theme="dark"] .hero {
  background: 
    url('assets/hero.png') center center / cover no-repeat,
    linear-gradient(180deg, #2c4798 0%, var(--background) 100%);
  filter: brightness(0.85);
}

[data-theme="dark"] .hero::after {
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(10, 14, 39, 0.5) 50%,
    var(--background) 100%
  );
}

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

/* Removed scroll-behavior smooth from html to let Lenis handle it */

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Decorative circles - Estilo devFactory */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(45, 72, 153, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 95% 25%, rgba(74, 189, 208, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 10% 65%, rgba(44, 71, 152, 0.11) 0%, transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(45, 72, 153, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(74, 189, 208, 0.08) 0%, transparent 22%);
}

[data-theme="dark"] body::after {
  background-image: 
    radial-gradient(circle at 5% 15%, rgba(45, 72, 153, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 95% 25%, rgba(74, 189, 208, 0.12) 0%, transparent 20%),
    radial-gradient(circle at 10% 65%, rgba(44, 71, 152, 0.14) 0%, transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(45, 72, 153, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(74, 189, 208, 0.1) 0%, transparent 22%);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 3D Canvas */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

/* Removed grid background for cleaner look */

/* Removed old background shapes - cleaner modern look */

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition-base);
}

/* Navbar overlay on hero */
.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .theme-toggle {
  color: #0a1929;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .navbar:not(.scrolled) .logo,
[data-theme="dark"] .navbar:not(.scrolled) .theme-toggle {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar:not(.scrolled) .mobile-menu-toggle span {
  background: #0a1929;
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .navbar:not(.scrolled) .mobile-menu-toggle span {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(10, 14, 39, 0.08);
  border-bottom: 1px solid var(--border);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(10, 14, 39, 0.8);
  border-bottom: 1px solid rgba(248, 249, 250, 0.1);
}

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

.logo {
  color: var(--foreground);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

/* Updated logo text to use previous bold style with blinking cursor */
.logo-text {
  font-weight: 800;
  font-size: 24px;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.cursor {
  animation: blink 1s step-end infinite;
  font-weight: 400;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--foreground);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform var(--transition-base);
}

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

.nav-links a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Navbar links on hero - special hover */
.navbar:not(.scrolled) .nav-links a {
  color: #0a1929;
}

.navbar:not(.scrolled) .nav-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.navbar:not(.scrolled) .nav-links a::before {
  background: linear-gradient(90deg, transparent, #28306c, transparent);
}

[data-theme="dark"] .navbar:not(.scrolled) .nav-links a {
  color: #ffffff;
}

[data-theme="dark"] .navbar:not(.scrolled) .nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .navbar:not(.scrolled) .nav-links a::before {
  background: linear-gradient(90deg, transparent, #4abdd0, transparent);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-toggle {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-toggle:hover {
  background: var(--muted);
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 140px;
  box-shadow: 
    0 8px 24px rgba(10, 25, 41, 0.12),
    0 2px 8px rgba(10, 25, 41, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--foreground);
  font-size: 14px;
  font-weight: 500;
}

.language-option:hover {
  background: var(--muted);
}

.language-option.active {
  background: rgba(74, 189, 208, 0.1);
  color: var(--primary);
}

.navbar:not(.scrolled) .language-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .navbar:not(.scrolled) .language-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background: var(--muted);
  transform: rotate(20deg) scale(1.1);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Theme toggle on hero */
.navbar:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .navbar:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #2c4798 0%, #28306c 100%);
  color: white;
  box-shadow: 
    0 8px 24px rgba(44, 71, 152, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  box-shadow: 
    0 12px 32px rgba(44, 71, 152, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
  transform: translateY(-2px);
}

/* Primary button on hero - lighter version */
.hero .btn-primary {
  background: rgba(255, 255, 255, 1);
  color: #0a1929;
  font-weight: 700;
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.5),
    0 4px 12px rgba(10, 25, 41, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.hero .btn-primary::before {
  background: linear-gradient(135deg, rgba(45, 72, 153, 0.1) 0%, transparent 100%);
}

.hero .btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 12px 40px rgba(255, 255, 255, 0.6),
    0 6px 16px rgba(10, 25, 41, 0.25),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  color: var(--foreground);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-glass);
  border-color: rgba(45, 72, 153, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Secondary button on hero */
.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  color: #0a1929;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 
    0 4px 20px rgba(255, 255, 255, 0.25),
    0 2px 8px rgba(10, 25, 41, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 8px 28px rgba(255, 255, 255, 0.35),
    0 4px 12px rgba(10, 25, 41, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transform: translateY(-3px);
}

[data-theme="dark"] .hero .btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #0a1929;
  box-shadow: 
    0 8px 32px rgba(255, 255, 255, 0.3),
    0 4px 12px rgba(74, 189, 208, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

[data-theme="dark"] .hero .btn-primary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 
    0 12px 40px rgba(255, 255, 255, 0.4),
    0 6px 16px rgba(74, 189, 208, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

[data-theme="dark"] .hero .btn-secondary {
  background: rgba(10, 14, 39, 0.5);
  backdrop-filter: blur(16px);
  color: #ffffff;
  border: 1.5px solid rgba(74, 189, 208, 0.5);
  box-shadow: 
    0 4px 20px rgba(74, 189, 208, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(74, 189, 208, 0.25) inset;
}

[data-theme="dark"] .hero .btn-secondary:hover {
  background: rgba(10, 14, 39, 0.7);
  border-color: rgba(74, 189, 208, 0.7);
  box-shadow: 
    0 8px 28px rgba(74, 189, 208, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 189, 208, 0.35) inset;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Button in navbar */
.navbar .btn-primary {
  background: linear-gradient(135deg, #2d4899 0%, #4abdd0 100%);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.navbar.scrolled .btn-primary {
  background: linear-gradient(135deg, #2d4899 0%, #4abdd0 100%);
  box-shadow: 
    0 4px 12px rgba(45, 72, 153, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* Hero Section - Con imagen de fondo */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  z-index: 1;
  overflow: hidden;
  background: 
    url('assets/hero.png') center center / cover no-repeat,
    linear-gradient(180deg, #4abdd0 0%, var(--background) 100%);
}

/* Hero spotlight effect */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  mix-blend-mode: overlay;
  will-change: transform;
}

.hero:hover .hero-spotlight {
  opacity: 1;
}

/* Fade a blanco en la parte inferior */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, 
    transparent 0%, 
    rgba(249, 251, 255, 0.5) 50%,
    var(--background) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0a1929 0%, #28306c 30%, #2d4899 70%, #4abdd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-wrap: balance;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
  will-change: background;
}

[data-theme="dark"] .hero-title {
  background: linear-gradient(135deg, #ffffff 0%, #e7f3f7 40%, #4abdd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: #0a1929;
  max-width: 720px;
  margin: 0 auto 32px;
  text-wrap: pretty;
  font-weight: 500;
  text-shadow: 
    0 1px 2px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease-out;
}

[data-theme="dark"] .hero-subtitle {
  color: #ffffff;
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 
    0 4px 20px rgba(10, 25, 41, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  color: #0a1929;
  transition: transform 0.3s ease-out;
}

[data-theme="dark"] .badge {
  background: rgba(10, 25, 41, 0.95);
  border: 1px solid rgba(74, 189, 208, 0.3);
  color: #ffffff;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(74, 189, 208, 0.2) inset;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 16px rgba(37, 211, 102, 0.4),
    0 8px 32px rgba(37, 211, 102, 0.2);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: whatsapp-pulse 2s ease-in-out infinite;
  color: white;
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 12px 48px rgba(37, 211, 102, 0.3);
  animation: none;
}

.whatsapp-float:active {
  transform: scale(1.05);
}

@keyframes whatsapp-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 4px 16px rgba(37, 211, 102, 0.4),
      0 8px 32px rgba(37, 211, 102, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 6px 20px rgba(37, 211, 102, 0.5),
      0 10px 40px rgba(37, 211, 102, 0.3);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(32px, 8vh, 80px);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.8;
  z-index: 1;
}

.scroll-indicator svg {
  stroke: #0a1929;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.6));
}

[data-theme="dark"] .scroll-indicator svg {
  stroke: #ffffff;
  stroke-width: 2.5;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

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

/* Section */
.section {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0;
  z-index: 1;
}

/* Reducir gaps verticales extras generados por headings grandes */
.section .section-title { margin-bottom: 12px; }
.section .section-subtitle { margin-bottom: 24px; }

/* Evitar huecos entre secciones cuando hay fondos superpuestos */
.section + .section { margin-top: -24px; }

/* Efectos de luz sutiles entre secciones */
.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 72, 153, 0.2), transparent);
  opacity: 0.5;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  opacity: 0.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Benefits section with decorative circle */
.benefits {
  position: relative;
}

.benefits::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 189, 208, 0.12), transparent 65%);
  border: 3px solid rgba(74, 189, 208, 0.15);
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .benefits::after {
  background: radial-gradient(circle, rgba(45, 72, 153, 0.15), transparent 65%);
  border-color: rgba(45, 72, 153, 0.18);
}

/* Benefits Grid - 2x2 layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.benefit-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(45, 72, 153, 0.3);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d4899, #4abdd0);
  border-radius: 16px;
  margin-bottom: 20px;
  color: white;
  box-shadow: 
    0 8px 24px rgba(45, 72, 153, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.benefit-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

/* Split Panel */
/* Problem Section */
.problem-section {
  position: relative;
  background: var(--background);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 24px;
  color: #ff6b00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge svg {
  flex-shrink: 0;
  stroke: #ff6b00;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.problem-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(10, 25, 41, 0.04),
    0 1px 3px rgba(10, 25, 41, 0.02);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 0, 0.03) 0%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 
    0 12px 32px rgba(255, 107, 0, 0.12),
    0 4px 12px rgba(255, 107, 0, 0.08),
    0 0 0 1px rgba(255, 107, 0, 0.1) inset;
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.problem-icon svg {
  stroke: #ff6b00;
}

.problem-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.problem-stat {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.problem-stat strong {
  color: var(--foreground);
  font-weight: 700;
}

.problem-stat sup {
  font-size: 12px;
  opacity: 0.6;
}

.problem-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.problem-sources {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.problem-sources p {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.7;
  font-style: italic;
}

[data-theme="dark"] .section-badge {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
}

[data-theme="dark"] .problem-card:hover {
  border-color: rgba(255, 107, 0, 0.4);
}

/* Legacy styles for split panels */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chart-container {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.growth-chart {
  width: 100%;
  height: auto;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* Suite section with special background */
.suite {
  position: relative;
  background: 
    linear-gradient(180deg, 
      transparent 0%,
      rgba(74, 189, 208, 0.05) 8%,
      rgba(74, 189, 208, 0.12) 18%,
      rgba(74, 189, 208, 0.2) 35%,
      rgba(74, 189, 208, 0.25) 50%,
      rgba(74, 189, 208, 0.2) 65%,
      rgba(74, 189, 208, 0.12) 82%,
      rgba(74, 189, 208, 0.05) 92%,
      transparent 100%
    );
  padding: 140px 0;
}

.suite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(74, 189, 208, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(74, 189, 208, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(74, 189, 208, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(74, 189, 208, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 10% 60%, rgba(74, 189, 208, 0.1) 1px, transparent 1px);
  background-size: 6px 6px, 8px 8px, 7px 7px, 9px 9px, 10px 10px;
  background-position: 0 0, 3px 3px, 5px 2px, 2px 4px, 4px 1px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .suite::before {
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(45, 72, 153, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(45, 72, 153, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(45, 72, 153, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(45, 72, 153, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 10% 60%, rgba(45, 72, 153, 0.12) 1px, transparent 1px);
}

[data-theme="dark"] .suite {
  background: 
    linear-gradient(180deg, 
      transparent 0%,
      rgba(45, 72, 153, 0.08) 8%,
      rgba(45, 72, 153, 0.15) 18%,
      rgba(45, 72, 153, 0.24) 35%,
      rgba(45, 72, 153, 0.28) 50%,
      rgba(45, 72, 153, 0.24) 65%,
      rgba(45, 72, 153, 0.15) 82%,
      rgba(45, 72, 153, 0.08) 92%,
      transparent 100%
    );
}

/* Circle moved to different layer */

/* Suite Carousel */
.suite-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.suite .section-header {
  position: relative;
  z-index: 1;
}

.suite-stat {
  position: relative;
  z-index: 1;
}

.suite-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.suite-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(45, 72, 153, 0.3);
}

.suite-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.suite-card-title {
  font-size: 24px;
  font-weight: 700;
}

.suite-badge {
  padding: 4px 12px;
  background: var(--muted);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.suite-badge-accent {
  background: linear-gradient(135deg, #2d4899, #4abdd0);
  color: white;
}

.suite-badge-roadmap {
  background: var(--border);
  opacity: 0.7;
}

.suite-badge-development {
  background: linear-gradient(135deg, #ff9500, #ffa500);
  color: white;
}

.suite-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.suite-card-link:hover {
  border-color: #4abdd0;
  box-shadow: 
    0 12px 40px rgba(74, 189, 208, 0.2),
    0 4px 12px rgba(45, 72, 153, 0.15),
    0 0 0 1px rgba(74, 189, 208, 0.2) inset;
}

.suite-card-arrow {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.suite-card-link:hover .suite-card-arrow {
  transform: translateX(4px);
}

.suite-card-disabled {
  opacity: 0.6;
  position: relative;
}

.suite-card-disabled:hover {
  transform: none;
  box-shadow: var(--shadow-card);
  border-color: var(--border);
  cursor: default;
}

.suite-card-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

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

.suite-stat-badge {
  display: inline-flex;
  padding: 12px 24px;
  background: linear-gradient(135deg, #28306c, #2c4798);
  color: white;
  border-radius: 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: help;
  box-shadow: 0 4px 16px rgba(40, 48, 108, 0.3);
}

/* Two Columns */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.column-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.column-text {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.highlight {
  font-weight: 700;
  color: var(--primary);
}

/* Comparison section with decorative circle */
.comparison {
  position: relative;
}

.comparison::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 189, 208, 0.12), transparent 65%);
  border: 3px solid rgba(74, 189, 208, 0.16);
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .comparison::before {
  background: radial-gradient(circle, rgba(45, 72, 153, 0.15), transparent 65%);
  border-color: rgba(45, 72, 153, 0.18);
}

/* Comparison Table */
.comparison-table {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  align-items: center;
}

.comparison-header {
  background: var(--muted);
  font-weight: 700;
}

.comparison-row {
  border-top: 1px solid var(--border);
}

.comparison-cell {
  text-align: center;
}

.comparison-cell-label {
  text-align: left;
  font-weight: 600;
}

.comparison-cell-highlight {
  color: var(--primary);
  font-weight: 700;
}

.comparison-partial {
  opacity: 0.5;
  font-size: 14px;
}

.comparison-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.7;
}

.comparison-note a {
  color: var(--primary);
  text-decoration: none;
}

.comparison-note a:hover {
  text-decoration: underline;
}

/* Clients section with special background */
.clients {
  position: relative;
  background: 
    linear-gradient(180deg, 
      transparent 0%,
      rgba(45, 72, 153, 0.05) 8%,
      rgba(45, 72, 153, 0.12) 18%,
      rgba(45, 72, 153, 0.18) 35%,
      rgba(45, 72, 153, 0.22) 50%,
      rgba(45, 72, 153, 0.18) 65%,
      rgba(45, 72, 153, 0.12) 82%,
      rgba(45, 72, 153, 0.05) 92%,
      transparent 100%
    );
  padding: 140px 0;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(45, 72, 153, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(45, 72, 153, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(45, 72, 153, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 15% 75%, rgba(45, 72, 153, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 85% 35%, rgba(45, 72, 153, 0.09) 1px, transparent 1px);
  background-size: 7px 7px, 9px 9px, 8px 8px, 10px 10px, 6px 6px;
  background-position: 0 0, 4px 4px, 2px 3px, 3px 1px, 5px 2px;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .clients::before {
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(74, 189, 208, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(74, 189, 208, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 50% 20%, rgba(74, 189, 208, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 15% 75%, rgba(74, 189, 208, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 85% 35%, rgba(74, 189, 208, 0.12) 1px, transparent 1px);
}

[data-theme="dark"] .clients {
  background: 
    linear-gradient(180deg, 
      transparent 0%,
      rgba(74, 189, 208, 0.08) 8%,
      rgba(74, 189, 208, 0.15) 18%,
      rgba(74, 189, 208, 0.22) 35%,
      rgba(74, 189, 208, 0.26) 50%,
      rgba(74, 189, 208, 0.22) 65%,
      rgba(74, 189, 208, 0.15) 82%,
      rgba(74, 189, 208, 0.08) 92%,
      transparent 100%
    );
}

.clients-note {
  text-align: center;
  font-size: 16px;
  opacity: 0.6;
  margin-bottom: 64px;
  font-style: italic;
}

/* Client Logos Infinite Carousel */
.clients-carousel-wrapper {
  margin: 64px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.clients-track {
  display: flex;
  gap: 32px;
  animation: scroll-logos 40s linear infinite;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
}

.clients-carousel:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 140px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(10, 25, 41, 0.04),
    0 1px 3px rgba(10, 25, 41, 0.02);
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.client-logo-card:active {
  cursor: grabbing;
}

.client-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 72, 153, 0.03) 0%, 
    rgba(74, 189, 208, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.client-logo-card:hover::before {
  opacity: 1;
}

.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 189, 208, 0.3);
  box-shadow: 
    0 12px 32px rgba(45, 72, 153, 0.12),
    0 4px 12px rgba(74, 189, 208, 0.08),
    0 0 0 1px rgba(74, 189, 208, 0.1) inset;
}

.client-logo-card img {
  width: 160px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1) contrast(0.9);
  opacity: 0.7;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.client-logo-card:hover img {
  filter: grayscale(0%) brightness(1) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}

[data-theme="dark"] .client-logo-card img {
  filter: grayscale(100%) brightness(1.8) contrast(0.85);
  opacity: 0.6;
}

[data-theme="dark"] .client-logo-card:hover img {
  filter: grayscale(0%) brightness(1.2) contrast(1);
  opacity: 0.95;
}

[data-theme="dark"] .client-logo-card::before {
  background: linear-gradient(135deg, 
    rgba(74, 189, 208, 0.05) 0%, 
    rgba(45, 72, 153, 0.05) 100%);
}

.clients .section-header,
.clients .section-title {
  position: relative;
  z-index: 1;
}

/* Testimonials Infinite Carousel */
.testimonials-carousel-wrapper {
  margin: 64px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonials-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  animation: scroll-testimonials 60s linear infinite;
  width: fit-content;
  user-select: none;
  -webkit-user-select: none;
}

.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 400px;
  max-width: 400px;
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(74, 189, 208, 0.2);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74, 189, 208, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.testimonial-avatar-default {
  background: linear-gradient(135deg, #2d4899, #4abdd0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar-default span {
  color: white;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.testimonial-role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.8;
  margin: 0;
  letter-spacing: 0.5px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1;
}

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

.testimonial-category {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

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

/* Security - Clean styling */
.security {
  position: relative;
  padding: 140px 0;
}

/* Decorative circle for security section */
.security::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 72, 153, 0.14), transparent 65%);
  border: 3px solid rgba(45, 72, 153, 0.18);
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .security::before {
  background: radial-gradient(circle, rgba(74, 189, 208, 0.16), transparent 65%);
  border-color: rgba(74, 189, 208, 0.2);
}

.security .section-header {
  position: relative;
  z-index: 1;
}

.security-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.security-note {
  position: relative;
  z-index: 1;
}

.security-pillar {
  text-align: center;
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all var(--transition-base);
}

.security-pillar:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(45, 72, 153, 0.3);
}

.security-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d4899, #4abdd0);
  border-radius: 24px;
  color: white;
  box-shadow: 
    0 12px 32px rgba(45, 72, 153, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
  overflow: hidden;
}

.security-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
}

.security-pillar-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.security-pillar-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
}

.security-note {
  text-align: center;
  margin-top: 48px;
}

.security-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.security-note a:hover {
  text-decoration: underline;
}

/* Pricing with decorative circle */
.pricing {
  padding: 140px 0;
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 72, 153, 0.1), transparent 65%);
  border: 4px solid rgba(45, 72, 153, 0.16);
  z-index: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

[data-theme="dark"] .pricing::before {
  background: radial-gradient(circle, rgba(74, 189, 208, 0.12), transparent 65%);
  border-color: rgba(74, 189, 208, 0.18);
}

.pricing .section-header {
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
}

.pricing .section-title {
  margin-bottom: 24px;
}

.pricing-cards {
  position: relative;
  z-index: 1;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(45, 72, 153, 0.3);
}

.pricing-card-featured {
  background: var(--surface-glass);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-floating);
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2d4899, #4abdd0);
  color: white;
  padding: 6px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pricing-card-description {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 24px;
}

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

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

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

.pricing-badge {
  background: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

/* Press Mentions Section */
.press-mentions {
  position: relative;
  padding: 100px 0;
}

.press-grid-wrapper {
  margin-top: 64px;
  max-height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
  position: relative;
  /* Permite que el scroll del contenedor se escape en bordes en móvil */
  overscroll-behavior-y: contain;
  /* Scroll suave nativo para móvil */
  -webkit-overflow-scrolling: touch;
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 189, 208, 0.3) transparent;
}


.press-grid-wrapper::-webkit-scrollbar {
  width: 8px;
}

.press-grid-wrapper::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 4px;
}

.press-grid-wrapper::-webkit-scrollbar-thumb {
  background: rgba(74, 189, 208, 0.3);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.press-grid-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 189, 208, 0.5);
}

[data-theme="dark"] .press-grid-wrapper::-webkit-scrollbar-thumb {
  background: rgba(74, 189, 208, 0.4);
}

[data-theme="dark"] .press-grid-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 189, 208, 0.6);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 20px 0;
}

.press-card {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(10, 25, 41, 0.04),
    0 1px 3px rgba(10, 25, 41, 0.02);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.press-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 72, 153, 0.03) 0%, 
    rgba(74, 189, 208, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.press-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 189, 208, 0.3);
  box-shadow: 
    0 16px 40px rgba(45, 72, 153, 0.15),
    0 6px 16px rgba(74, 189, 208, 0.1),
    0 0 0 1px rgba(74, 189, 208, 0.1) inset;
}

.press-logo {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
  z-index: 1;
}

.press-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--foreground);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

.press-card:hover .press-logo-text {
  opacity: 0.7;
}

.press-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--foreground);
  margin: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.press-date {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.7;
}

.press-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: transform 0.3s ease;
  display: inline-block;
}

.press-card:hover .press-cta {
  transform: translateX(4px);
}

[data-theme="dark"] .press-card::before {
  background: linear-gradient(135deg, 
    rgba(74, 189, 208, 0.05) 0%, 
    rgba(45, 72, 153, 0.05) 100%);
}

/* Final CTA - Premium look */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, #28306c, #2c4798);
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 189, 208, 0.15), transparent 50%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 32px;
  color: white;
}

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

.cta-note {
  font-size: 16px;
  opacity: 0.8;
}

/* FAQ Section */
.faq {
  position: relative;
  background: var(--background);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
}

.faq-item {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 2px 8px rgba(10, 25, 41, 0.04),
    0 1px 3px rgba(10, 25, 41, 0.02);
}

.faq-item:hover {
  border-color: rgba(74, 189, 208, 0.2);
  box-shadow: 
    0 8px 24px rgba(45, 72, 153, 0.08),
    0 2px 8px rgba(74, 189, 208, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(45, 72, 153, 0.03) 0%, 
    rgba(74, 189, 208, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-question:hover::before {
  opacity: 1;
}

.faq-question span {
  position: relative;
  z-index: 1;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 32px 24px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.faq-answer strong {
  color: var(--foreground);
  font-weight: 600;
}

[data-theme="dark"] .faq-question::before {
  background: linear-gradient(135deg, 
    rgba(74, 189, 208, 0.05) 0%, 
    rgba(45, 72, 153, 0.05) 100%);
}

/* Footer */
.footer {
  background: var(--surface-elevated);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--foreground);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  opacity: 0.6;
}

/* Botón demo - por defecto mostrar versión desktop */
.btn-demo-mobile {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  /* Prevenir scroll horizontal en móvil */
  body * {
    max-width: 100%;
  }
  
  /* Excepciones: permitir que carruseles sean más anchos para drag */
  .clients-track,
  .testimonials-track,
  .client-logo-card,
  .testimonial-card {
    max-width: none !important;
  }
  
  /* Navbar compacto en móvil */
  .navbar-content {
    gap: 0;
    justify-content: flex-start;
  }
  
  .logo {
    margin-right: 4px;
  }
  
  .nav-actions {
    gap: 0;
    margin: 0;
    padding: 0;
  }
  
  .language-selector {
    margin-right: 2px;
  }
  
  .theme-toggle,
  .language-toggle {
    padding: 4px;
    min-width: 30px;
    height: 30px;
  }
  
  .theme-toggle {
    margin-right: 2px;
  }
  
  .theme-toggle svg,
  .language-toggle svg {
    width: 15px;
    height: 15px;
  }
  
  .flag-icon {
    width: 16px;
    height: 16px;
  }
  
  .mobile-menu-toggle {
    padding: 4px;
    margin-left: auto;
  }
  
  .mobile-menu-toggle span {
    width: 20px;
  }
  
  .nav-actions .btn-small {
    padding: 5px 8px;
    font-size: 12px;
    margin: 0 2px;
  }
  
  /* Cambiar a versión corta del botón en móvil */
  .btn-demo-desktop {
    display: none;
  }
  
  .btn-demo-mobile {
    display: inline-flex;
  }
  
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    display: none;
    box-shadow: var(--shadow-card);
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .split-panel,
  .two-columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-size: 14px;
  }

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

  .press-grid-wrapper {
    max-height: 750px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  
  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }

  .section {
    padding: 80px 0;
  }

  .pricing {
    padding: 100px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-card {
    padding: 24px;
  }

  .problem-icon {
    width: 56px;
    height: 56px;
  }

  .problem-title {
    font-size: 18px;
  }

  .suite-carousel,
  .security-pillars,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .testimonials-carousel-wrapper {
    margin: 48px 0;
  }

  .testimonials-track {
    gap: 20px;
    animation: scroll-testimonials 45s linear infinite;
  }

  .testimonial-card {
    padding: 24px;
    gap: 16px;
    min-width: 320px;
    max-width: 320px;
  }

  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }

  .testimonial-avatar-default span {
    font-size: 16px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .clients-carousel-wrapper {
    margin: 48px 0;
  }

  .clients-track {
    gap: 20px;
    animation: scroll-logos 30s linear infinite;
  }

  .client-logo-card {
    padding: 24px 32px;
    min-width: 180px;
    height: 110px;
  }

  .client-logo-card img {
    width: 140px;
    height: 56px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-header,
  .comparison-row {
    min-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 16px;
    gap: 16px;
  }

  .faq-answer {
    padding: 0 24px;
  }

  .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .press-mentions {
    padding: 80px 0;
  }

  .press-grid-wrapper {
    margin-top: 48px;
    max-height: none;
    overflow-y: visible;
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 16px;
    /* Scroll horizontal suave */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 189, 208, 0.3) transparent;
  }

  .press-grid-wrapper::-webkit-scrollbar {
    height: 4px;
    width: auto;
  }

  .press-grid-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .press-grid-wrapper::-webkit-scrollbar-thumb {
    background: rgba(74, 189, 208, 0.3);
    border-radius: 4px;
  }

  .press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 20px;
    padding: 0;
    width: max-content;
    min-width: 100%;
  }

  .press-card {
    padding: 24px;
    min-width: 280px;
    max-width: 320px;
  }

  /* Gradiente fade-out a la derecha */
  .press-grid-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 16px;
    width: 60px;
    background: linear-gradient(to left, var(--background) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
  }

  /* Indicador de scroll horizontal (flecha minimalista) */
  .press-mentions::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    margin-top: 24px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 6 15 12 9 18' stroke='%234abdd0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: swipeHintMobile 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.4s ease, transform 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(74, 189, 208, 0.3));
  }

  /* Ocultar hint después de scrollear */
  .press-mentions.scrolled::after {
    opacity: 0;
    transform: translateY(calc(-50% + 24px)) translateX(20px);
  }

  @keyframes swipeHintMobile {
    0%, 100% {
      transform: translateY(calc(-50% + 24px)) translateX(0);
      opacity: 0.6;
    }
    50% {
      transform: translateY(calc(-50% + 24px)) translateX(10px);
      opacity: 0.9;
    }
  }

  /* Dark mode para el indicador */
  [data-theme="dark"] .press-mentions::after {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  }

  .press-title {
    font-size: 16px;
  }

  .press-excerpt {
    font-size: 13px;
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.clients svg, .suite svg, .pricing svg, .problem-section svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Imágenes decorativas que sobresalen a la derecha: limitar overflow */
.split-right, .suite { overflow: hidden; }
