/* Importar Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0db2c756c9c896e272d_founders-grotesk-condensed-medium.woff2)format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e39bb63e57bbfe4ab1_founders-grotesk-condensed-regular.woff2)format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e9b73b1390605d01fb_founders-grotesk-condensed-semibold.woff2)format("woff2");font-weight:600;font-style:normal;font-display:swap}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
    
    :root {
      --bg: #ffffff;
      --surface: #f6f8fa;
      --fg: #24292f;
      --fg-muted: #57606a;
      --fg-subtle: #6e7781;
      --border: #33414f;
      --accent: #46D1E4;
      --accent-hover: #57ebff;
      --shadow: 0 1px 3px rgba(0,0,0,.08);
    }

    [data-theme="dark"] {
      --bg: #0d1117;
      --surface: #161b22;
      --fg: #c9d1d9;
      --fg-muted: #8b949e;
      --fg-subtle: #6e7681;
      --border: #30363d;
      --accent: #46D1E4;
      --accent-hover: #57ebff;
      --shadow: 0 1px 3px rgba(0,0,0,.3);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    body {
      margin: 0;
      background: var(--bg);
      color: var(--fg);
      font-family: 'Inter', -apple-system, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      transition: background-color 0.2s, color 0.2s;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Nav */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 64px;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 600;
      color: var(--fg);
      text-decoration: none;
    }

    .logo-mark {
      width: 24px;
      height: 24px;
    }

    .logo-mark svg {
      width: 100%;
      height: 100%;
      fill: var(--accent);
    }

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

    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      transition: color 0.2s;
    }

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

    /* Theme toggle */
    .theme-toggle {
      width: 40px;
      height: 40px;
      padding: 8px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .theme-toggle:hover {
      background: var(--surface);
      border-color: var(--fg-muted);
    }

    .theme-toggle svg {
      width: 100%;
      height: 100%;
      stroke: var(--fg);
      fill: none;
      stroke-width: 2;
    }

    .btn {
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-block;
      cursor: pointer;
    }

    .btn-primary {
      background: transparent;
      color: white;
      border: 1px solid white;
      font-size: 18px;
    }

    .btn-primary:hover {
      background: var(--accent-hover);
      border-color: var(--accent-hover);
    }

    .btn-secondary {
      background: transparent;
      color: var(--fg);
      font-size: 18px;
      border: 1px solid var(--border);
    }

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

    /* Hero */
    .hero {
      padding: 80px 0;
    }

    .hero-grid {
      display: grid;
      gap: 64px;
      align-items: start;
    }

    .hero h1 {
      font-size: 75px;
      font-weight: 700;
      line-height: 80px;
      margin-bottom: 16px;
      color: #fff;
      text-align: center;
      padding: 0 30px;
    }

    .hero .tagline {
      font-size: 14px;
      color: #fff;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 600;
    }

    .hero p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 35px;
  text-align: center;
  margin-top: 30px;
  padding: 0 50px;
}

.hero p.tagline {
    margin-top: 0px!important;
}

    .hero-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
    }

    /* Stats */
    .stats-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 32px;
    }

    .stat-number {
      font-size: 48px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 8px;
      font-family: Founders Grotesk Condensed, 'Poppins', -apple-system, sans-serif;
    }

    .stat-label {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .stat-description {
      font-size: 14px;
      color: var(--fg-muted);
      margin-bottom: 24px;
    }

    .stat-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
    }

    .stat-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
    }

    .stat-dot.active {
      background: var(--accent);
      width: 24px;
      border-radius: 4px;
    }

    /* Logo marquee */
    .logo-marquee {
      padding: 48px 0;
      border-top: 1px solid #ffffff14;
      border-bottom: 1px solid #ffffff14;
      overflow: hidden;
      position: relative;
    }

    .marquee-content {
      display: flex;
      gap: 64px;
      animation: scroll 30s linear infinite;
    }

    .marquee-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-muted);
      opacity: 0.7;
    }

    .marquee-item:hover {
      opacity: 1;
    }

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

    /* Section */
    .section {
      padding: 80px 0;
    }

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

    .section-header h2 {
      font-size: 60px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-transform: uppercase;
    }

    .section-header p {
      font-size: 20px;
    }

    /* Grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }

    /* Card */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 15px;
      padding: 24px;
      transition: all 0.2s;
    }

    .card:hover {
      box-shadow: var(--shadow);
      border-color: var(--fg-muted);
    }

    .card h3 {
      font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
  text-transform: uppercase;
    }

    .card p {
      color: var(--fg-muted);
      font-size: 16px;
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .card ul {
      list-style: none;
    }

    .card ul li {
      color: var(--fg-muted);
      font-size: 16px;
      padding: 6px 0;
      padding-left: 16px;
      position: relative;
    }

    .card ul li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
    }

    /* Work */
    .work-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.2s;
    }

    .work-item:hover {
      box-shadow: var(--shadow);
    }

    .work-image {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
    }

    .work-info {
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .work-title {
      font-weight: 600;
    }

    .work-stats {
      color: var(--accent);
      font-size: 13px;
      font-weight: 500;
    }

    /* Contact */
    .contact-wrapper {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 64px;
      text-align: center;
    }

    .contact-wrapper h2 {
      font-size: 60px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  text-transform: uppercase;
    }

    .contact-wrapper p {
      color: var(--fg-muted);
      font-size: 20px;
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 0;
      margin-top: 80px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--fg-muted);
    }

    .footer-content a {
      color: var(--accent);
      text-decoration: none;
    }

    .footer-content a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      #navbar .btn-primary {
          display: none;
      }
      .logo {
          margin: 0 auto;
      }
      .nav-links a:not(.btn) {
        display: none;
      }
      .hero h1 {
        font-size: 36px;
        line-height: 40px;
      }
      .section-header h2 {
  font-size: 36px;
}
      .hero p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 28px;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}
      .contact-wrapper {
        padding: 32px 24px;
      }
    }

    /* Fondo animado - agregar después del body */
body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s;
}

/* Fondo animado azul a negro - REEMPLAZA TODO EL CÓDIGO ANTERIOR */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: 
    linear-gradient(135deg, 
      #000133 0%,
      #181148 20%,
      #190044 40%,
      #001133 60%,
      #000814 80%,
      #000000 100%
    );
  background-size: 400% 400%;
  animation: gradientFlow 25s ease infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

[data-theme="dark"] body::before {
  opacity: 1;
}

/* Stats Card con efecto vidrio */
.stats-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .stats-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* Borde superior con gradiente */
.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.6) 50%, 
    transparent 100%
  );
  opacity: 0.6;
}

/* Reflejo de luz en la parte superior */
.stats-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

/* Colores de fondo cuando cambian los slides */
.stats-card[data-color="blue"] {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.stats-card[data-color="purple"] {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
}

.stats-card[data-color="green"] {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

.stats-card[data-color="orange"] {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(0, 61, 102, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 34, 68, 0.3) 0%, transparent 60%);
  background-size: 200% 200%;
  animation: depthMove 35s ease-in-out infinite;
  opacity: 0;
}

[data-theme="dark"] body::after {
  opacity: 1;
}

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

@keyframes depthMove {
  0%, 100% {
    background-position: 0% 0%;
    filter: hue-rotate(0deg) brightness(1);
  }
  33% {
    background-position: 50% 50%;
    filter: hue-rotate(8deg) brightness(1.05);
  }
  66% {
    background-position: 100% 100%;
    filter: hue-rotate(-8deg) brightness(0.98);
  }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

[data-theme="dark"] body::after {
  opacity: 1;
  background-image: 
    linear-gradient(90deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(88, 166, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
}

@keyframes gradientShift {
  0%, 100% { 
    filter: hue-rotate(0deg) brightness(1);
  }
  25% { 
    filter: hue-rotate(5deg) brightness(1.02);
  }
  50% { 
    filter: hue-rotate(-5deg) brightness(0.98);
  }
  75% { 
    filter: hue-rotate(3deg) brightness(1);
  }
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Cards totalmente transparentes con blur */
.card,
.service-card,
.work-item,
.pricing-card,
.story-card {
  background: transparent !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .card,
[data-theme="light"] .service-card,
[data-theme="light"] .work-item,
[data-theme="light"] .pricing-card,
[data-theme="light"] .story-card {
  background: transparent !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

/* Contact wrapper transparente */
.contact-wrapper {
  background: transparent !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .contact-wrapper {
  background: transparent !important;
}

/* Footer transparente */
.site-footer {
  background: #010101 !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Stats card transparente */
.stats-card {
  background: transparent !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.stats-card[data-color="blue"],
.stats-card[data-color="purple"],
.stats-card[data-color="green"],
.stats-card[data-color="orange"] {
  background: transparent !important;
}

    /* Stats Card Premium */
.stats-card {
  border-radius: 12px;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0969da 0%, #0066ff 100%);
  opacity: 0.6;
}

.stats-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(9, 105, 218, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

[data-theme="dark"] .stats-card::after {
  background: radial-gradient(circle at 50% 0%, rgba(88, 166, 255, 0.15) 0%, transparent 60%);
}

.stat-display {
  text-align: center;
  position: relative;
  min-height: 280px;
}

.stat-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.stat-icon-large::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #0969da 0%, #0066ff 100%);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.6s;
  z-index: -1;
  filter: blur(12px);
}

[data-theme="dark"] .stat-icon-large::before {
  background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
}

.stat-icon-large.active::before {
  opacity: 0.5;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.stat-icon-large svg {
  width: 40px;
  height: 40px;
  stroke: #0969da;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.6s ease;
}

[data-theme="dark"] .stat-icon-large svg {
  stroke: #58a6ff;
}

.stat-icon-large.zoom-out {
  transform: scale(0.5) rotate(-90deg);
  opacity: 0;
}

.stat-icon-large.zoom-in {
  transform: scale(1.3) rotate(90deg);
  opacity: 0;
}

.stat-number {
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, #0969da 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] .stat-number {
  background: linear-gradient(135deg, #58a6ff 0%, #79c0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.stat-number.zoom-in {
  transform: scale(1.2);
  opacity: 0;
}

.stat-number.zoom-out {
  transform: scale(0.8);
  opacity: 0;
}

.stat-label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.6s ease;
  opacity: 1;
  text-align: center;
  color: #fff;
}

.stat-label.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.stat-description {
  font-size: 16px;
  color: #fff;
  max-width: 280px;
  margin: 0 auto 24px;
  transition: all 0.6s ease;
  opacity: 1;
  text-align: center;
}

.stat-description.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.stat-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.stat-dot.active {
  background: #0969da;
  width: 24px;
  border-radius: 4px;
}

[data-theme="dark"] .stat-dot.active {
  background: #58a6ff;
}

.stat-dot:hover {
  background: #0969da;
  opacity: 0.7;
}

[data-theme="dark"] .stat-dot:hover {
  background: #58a6ff;
}

/* Image Showcase con glassmorphism */
.image-showcase {
  padding: 80px 0;
  position: relative;
}

.glass-frame {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

[data-theme="dark"] .glass-frame {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.glass-frame:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .glass-frame:hover {
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

/* Efecto de reflexión */
.glass-frame::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 100%
  );
  border-radius: 12px 12px 0 0;
  pointer-events: none;
  opacity: 0.5;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card-featured {
  border: 2px solid #46D1E4;
  box-shadow: 0 4px 20px rgba(9, 105, 218, 0.1);
}

[data-theme="dark"] .pricing-card-featured {
  box-shadow: 0 4px 20px rgba(88, 166, 255, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #46D1E4;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 500;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
}

.pricing-features li:first-child {
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-right: 4px;
}

.pricing-detail {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-commitment {
  text-align: center;
  font-size: 15px;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pricing-total {
  text-align: center;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.pricing-note {
  max-width: 800px;
  margin: 64px auto 0;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
}

.pricing-note h4 {
  font-size: 40px;
  margin-bottom: 12px;
  color: #fff;
}

.pricing-note p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* Animaciones de scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Delays escalonados para múltiples elementos */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* Variantes de animación */
.animate-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.animate-fade.is-visible {
  opacity: 1;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Customer Stories Section */
.customer-stories {
  padding: 80px 0;
  background: #151435;
}

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

.story-card {
  position: relative;
  min-height: 400px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  transition: all 0.3s ease;
}

[data-theme="light"] .story-card {
  background: linear-gradient(135deg, #e5e5e5 0%, #d0d0d0 100%);
}

.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(100, 100, 120, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(80, 80, 100, 0.2) 0%, transparent 50%);
  opacity: 0.6;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent);
}

[data-theme="dark"] .story-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.story-logo {
  position: relative;
  z-index: 2;
  margin-bottom: auto;
}

.story-logo svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

[data-theme="light"] .story-logo svg text {
  fill: #1a1a1a;
}

.story-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-category {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

[data-theme="light"] .story-category {
  color: rgba(0, 0, 0, 0.6);
}

.story-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: white;
  margin: 0;
}

[data-theme="light"] .story-content h3 {
  color: #1a1a1a;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: 8px;
}

.story-link:hover {
  gap: 10px;
}

.story-link svg {
  stroke: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .story-card {
    min-height: 350px;
    padding: 32px;
  }
  
  .story-content h3 {
    font-size: 20px;
  }
}

/* Fondo animado con degradado azul a negro */
body {
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: 
    linear-gradient(135deg, 
      #000428 0%, 
      #170732 25%,
      #001f3f 50%,
      #100227 75%,
      #000000 100%
    );
  background-size: 400% 400%;
  animation: gradientFlow 20s ease infinite;
}

/* Capa adicional con efecto de profundidad */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 78, 146, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 31, 63, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 4, 40, 0.2) 0%, transparent 70%);
  background-size: 200% 200%;
  animation: depthMove 30s ease infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

[data-theme="dark"] body::after {
  opacity: 1;
}

/* Animación del gradiente principal */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Animación de profundidad */
@keyframes depthMove {
  0%, 100% {
    background-position: 0% 0%;
    filter: hue-rotate(0deg);
  }
  25% {
    background-position: 50% 50%;
    filter: hue-rotate(5deg);
  }
  50% {
    background-position: 100% 100%;
    filter: hue-rotate(-5deg);
  }
  75% {
    background-position: 50% 0%;
    filter: hue-rotate(3deg);
  }
}

/* Glass frame con glow perimetral */
.glass-frame {
  position: sticky;
  top: 80px;
  z-index: 10;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px 10px rgba(88, 166, 255, 0.4),
    0 0 100px 20px rgba(138, 43, 226, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}

/* Efecto de glow animado alrededor */
.glass-frame::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 26px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(88, 166, 255, 0.3) 0%,
    rgba(138, 43, 226, 0.2) 30%,
    transparent 70%
  );
  z-index: -1;
  opacity: 0.8;
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

/* Borde interno brillante */
.glass-frame::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 80px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: 12px 12px 0 0;
}

[data-theme="dark"] .glass-frame {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 60px 10px rgba(88, 166, 255, 0.5),
    0 0 100px 20px rgba(138, 43, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-frame:hover {
  transform: translateY(-20px);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 80px 15px rgba(88, 166, 255, 0.6),
    0 0 120px 30px rgba(138, 43, 226, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .glass-frame:hover {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 80px 15px rgba(88, 166, 255, 0.7),
    0 0 120px 30px rgba(138, 43, 226, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Animación del glow */
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Glass frame con z-index menor */
.glass-frame {
  position: sticky;
  top: 80px;
  z-index: 5; /* Reducido para que customer stories pase por encima */
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px 10px rgba(88, 166, 255, 0.4),
    0 0 100px 20px rgba(138, 43, 226, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0 auto;
  max-width: 1280px;
}

/* Customer Stories con z-index mayor */
.customer-stories {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  z-index: 10; /* Mayor que glass-frame */
}

/* Añadir gradiente fade en la parte superior de customer stories */
.customer-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--bg) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Asegurar que el contenido de customer stories esté por encima */
.customer-stories .container {
  position: relative;
  z-index: 2;
}

/* Ajustar spacing para que el efecto sea visible */
.image-showcase {
  padding: 0;
  margin: 80px 0 -80px 0; /* Margen negativo para que se solape */
}

.image-showcase + .customer-stories {
  margin-top: 0;
}

/* Header con efecto glassmorphism al hacer scroll */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

/* Estado inicial - transparente */
nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Estado con scroll - efecto vidrio */
nav.scrolled {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

/* Para tema claro */
[data-theme="light"] nav.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.1),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

[data-theme="light"] .faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(70, 209, 228, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--fg);
  font-size: 23px;
  font-weight: 300;
  transition: color 0.2s;
}

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

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  stroke: var(--fg-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  stroke: var(--accent);
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 20px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
}

/* Emergency Button Container */
.emergency-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
}

/* Emergency Button */
.emergency-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 
    0 10px 40px rgba(255, 71, 87, 0.4),
    0 0 0 0 rgba(255, 71, 87, 0.4);
  transition: all 0.3s ease;
  overflow: visible;
  animation: emergencyBounce 2s ease-in-out infinite;
}

.emergency-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 60px rgba(255, 71, 87, 0.5),
    0 0 0 8px rgba(255, 71, 87, 0.1);
  animation: none;
}

.emergency-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Pulse Effect */
.emergency-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid #ff4757;
  opacity: 0;
  animation: emergencyPulse 2s ease-out infinite;
}

@keyframes emergencyPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Bounce Animation */
@keyframes emergencyBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Icon */
.emergency-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  animation: emergencyIconPulse 1.5s ease-in-out infinite;
}

@keyframes emergencyIconPulse {
  0%, 100% {
    background: rgba(255, 255, 255, 0.2);
  }
  50% {
    background: rgba(255, 255, 255, 0.4);
  }
}

.emergency-icon svg {
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Text */
.emergency-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.emergency-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.emergency-subtitle {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1;
}

/* Arrow */
.emergency-arrow {
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.emergency-btn:hover .emergency-arrow {
  transform: translateX(4px);
}

/* Versión alternativa para el navbar */
.nav-emergency-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff4757 0%, #ff6348 100%);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(255, 71, 87, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-emergency-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

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

.nav-emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 71, 87, 0.4);
}

.nav-emergency-btn svg {
  width: 16px;
  height: 16px;
  animation: emergencyShake 0.5s ease-in-out infinite;
}

@keyframes emergencyShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .emergency-container {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }
  
  .emergency-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
  
  .emergency-text {
    flex: 1;
  }
}

/* Dark mode adjustment */
[data-theme="light"] .emergency-btn {
  box-shadow: 
    0 10px 40px rgba(255, 71, 87, 0.3),
    0 0 0 0 rgba(255, 71, 87, 0.3);
}
  </style>

  <!-- Reemplaza este import en el <head> -->
<style>
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');
  
  /* Aplicar Poppins a todos los títulos */
  h1, h2, h3, h4, h5, h6,
  .hero h1,
  .section-header h2,
  .card h3,
  .pricing-header h3,
  .testimonials-title,
  .why-not-header h2,
  .why-not-item h3,
  .faq-question {
    font-family: Founders Grotesk Condensed, 'Poppins', -apple-system, sans-serif;
  }
  
  /* Mantener Inter para el resto del texto */
  body {
    font-family: 'Inter', -apple-system, sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
  font-family: Founders Grotesk Condensed, 'Poppins', -apple-system, sans-serif;
}

/* Process Section */
.process-section {
  position: relative;
  overflow: hidden;
}

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

/* Línea vertical central (solo visible en desktop) */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    #273859 10%,
    #273859 90%,
    transparent 100%
  );
  transform: translateX(-50%);
}

/* Process Step */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Alternar lados (zigzag) */
.process-step:nth-child(even) {
  direction: rtl;
}

.process-step:nth-child(even) .step-content {
  direction: ltr;
  text-align: left;
}

.process-step:nth-child(odd) .step-content {
  text-align: right;
}

/* Step Number */
.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.step-number span {
  width: 72px;
  height: 96px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-number span:last-child {
  height: 72px;
}

.process-step:hover .step-number span {
  transform: scale(1.15) rotate(360deg);
}

/* Connector line */
.step-connector {
  width: 2px;
  height: 100%;
  background: #273859;
}

.process-step:last-child .step-connector {
  display: none;
}

/* Step Content */
.step-content {
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .step-content {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

/* Hover glow effect */
.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(70, 209, 228, 0.2);
}

.process-step:hover .step-content::before {
  opacity: 1;
}

/* Step Icon */
.step-icon {
  width: 64px;
  height: 64px;
  border: 1px solid #d9d9d952;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.process-step:nth-child(odd) .step-icon {
  float: right;
}

.step-icon svg {
  stroke: var(--accent);
  transition: all 0.3s ease;
}

.process-step:hover .step-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(360deg);
}

.process-step:hover .step-icon svg {
  stroke: white;
}

.step-content h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  clear: both;
  text-transform: uppercase;
}

.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

/* Step Meta */
.step-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step:nth-child(odd) .step-meta {
  justify-content: flex-end;
}

.step-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #d9d9d952;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  transition: all 0.3s ease;
}

.step-meta .duration::before {
  content: '⏱';
}

.step-meta .cost::before {
  content: '💰';
}

.process-step:hover .step-meta span {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Process CTA */
.process-cta {
  text-align: center;
  margin-top: 80px;
  padding: 48px 32px;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.process-cta p {
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
  .process-timeline::before {
    left: 36px;
  }

  .process-step {
    grid-template-columns: 72px 1fr;
    gap: 24px;
  }

  .process-step:nth-child(even) {
    direction: ltr;
  }

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

  .process-step:nth-child(odd) .step-icon {
    float: none;
  }

  .process-step:nth-child(odd) .step-meta {
    justify-content: flex-start;
  }

  .step-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .step-number span {
    width: 56px;
    height: 62px;
    font-size: 20px;
  }

  .step-content {
    padding: 24px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .step-icon svg {
    width: 22px;
    height: 22px;
  }

  .process-cta {
    padding: 32px 24px;
  }
}

/* Step Content - Frosted Glass Effect */
.step-content {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .step-content {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.15),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

/* Reflejo superior (highlight) */
.step-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

/* Borde brillante superior */
.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .step-content {
  transform: translateY(-8px);
  border-color: rgba(70, 209, 228, 0.4);
  box-shadow: 
    0 12px 48px 0 rgba(70, 209, 228, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: rgba(70, 209, 228, 0.08);
}

[data-theme="light"] .process-step:hover .step-content {
  box-shadow: 
    0 12px 48px 0 rgba(70, 209, 228, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
  background: rgba(70, 209, 228, 0.12);
}

.process-step:hover .step-content::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
}

.hero {
  position: relative;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#hero-particles canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Contenido del hero por encima */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Efecto de velocidad para "speed" */
.speed-word {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255) 0%, 
    rgba(255, 255, 255) 50%, 
    #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: speedReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left center;
}

@keyframes speedReveal {
  0% {
    transform: translateX(-100px) skewX(-15deg) scale(0.8);
    opacity: 0;
    filter: blur(20px);
  }
  60% {
    transform: translateX(10px) skewX(-8deg) scale(1.05);
    opacity: 0.8;
    filter: blur(8px);
  }
  80% {
    transform: translateX(-5px) skewX(-3deg) scale(1.02);
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    transform: translateX(0) skewX(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* Estelas de velocidad (opcional) */
.speed-word::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(70, 209, 228, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(-10px);
  opacity: 0;
  animation: speedTrail 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes speedTrail {
  0% {
    transform: translateX(-50px) skewX(-15deg);
    opacity: 0.6;
    filter: blur(15px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(-5px) skewX(0deg);
    opacity: 0;
    filter: blur(5px);
  }
}

/* Efecto de luz violeta desde los logos */
.hero-glow {
  position: absolute;
  bottom: -200px; /* Posicionado justo debajo de los botones */
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.4) 0%,
    rgba(168, 85, 247, 0.2) 30%,
    rgba(139, 92, 246, 0.1) 50%,
    transparent 70%
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

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

/* Asegúrate que el hero tenga position relative */
.hero {
  position: relative;
  overflow: visible; /* Cambiado de hidden a visible */
}

/* Los botones deben estar por encima de la luz */
.hero-buttons {
  position: relative;
  z-index: 2;
}

/* La barra de logos debe estar por encima de la luz */
.logo-marquee {
  position: relative;
  z-index: 3;
}

/* El contenido del hero por encima de todo */
.hero .container {
  position: relative;
  z-index: 2;
}

/* Opcional: añadir un segundo glow más concentrado */
.hero-glow::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.6) 0%,
    rgba(139, 92, 246, 0.3) 40%,
    transparent 70%
  );
  filter: blur(40px);
  animation: glowPulse 3s ease-in-out infinite reverse;
}

/* Añade esto al CSS */
.hero {
  position: relative;
  overflow: hidden; /* Cambia de visible a hidden */
  width: 100%;
}

.hero h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 75px;
  margin-bottom: 16px;
  color: #fff;
  text-align: center;
  padding: 0 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

/* Mejora responsive del hero */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
    line-height: 40px;
    padding: 0 20px;
  }
  
  .hero p {
    font-size: 18px;
    line-height: 28px;
    padding: 0 20px;
  }
}

/* Video de fondo */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.1); /* Scale para evitar bordes */
  object-fit: cover;
  filter: brightness(1) contrast(1.2); /* Oscurecer el video */
}

/* Overlay con el gradiente animado existente */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, 
      rgba(0, 1, 51, 0.95) 0%,    /* Aumentada opacidad */
      rgba(24, 17, 72, 0.9) 20%,
      rgba(25, 0, 68, 0.85) 40%,
      rgba(0, 17, 51, 0.9) 60%,
      rgba(0, 8, 20, 0.95) 80%,
      rgba(0, 0, 0, 0.98) 100%
    );
  background-size: 400% 400%;
  animation: gradientFlow 25s ease infinite;
  mix-blend-mode: multiply; /* Mezcla con el video */
}

/* Capa adicional de color para mayor control */
.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(0, 61, 102, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 34, 68, 0.4) 0%, transparent 60%);
  animation: depthMove 35s ease-in-out infinite;
}

/* Asegurar que las partículas estén sobre el video */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Sobre el video pero bajo el contenido */
  pointer-events: none;
}

/* El contenido debe estar sobre todo */
.hero .container {
  position: relative;
  z-index: 3;
}

/* Ajuste para el navbar si es necesario */
.hero {
  position: relative;
  overflow: hidden;
}

/* Responsive - pausar video en móviles para performance */
@media (max-width: 768px) {
  .hero-video {
    filter: brightness(0.3) contrast(1.1); /* Más oscuro en móvil */
  }
  
  .hero-video-overlay {
    background: 
      linear-gradient(135deg, 
        rgba(0, 1, 51, 0.98) 0%,
        rgba(0, 0, 0, 1) 100%
      );
  }
}

/* Performance - reducir calidad en dispositivos lentos */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none; /* Ocultar video si el usuario prefiere menos movimiento */
  }
  
  .hero-video-overlay {
    opacity: 1;
    background: var(--bg); /* Fallback al fondo normal */
  }
}











/* Importar Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0db2c756c9c896e272d_founders-grotesk-condensed-medium.woff2)format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e39bb63e57bbfe4ab1_founders-grotesk-condensed-regular.woff2)format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Founders Grotesk Condensed;src:url(https://cdn.prod.website-files.com/686c09a33211842a0ac0183d/68d3d0e9b73b1390605d01fb_founders-grotesk-condensed-semibold.woff2)format("woff2");font-weight:600;font-style:normal;font-display:swap}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   SISTEMA DE ESCALADO FLUIDO Y RESPONSIVE
   ============================================ */

:root {
  --bg: #ffffff;
  --surface: #f6f8fa;
  --fg: #24292f;
  --fg-muted: #57606a;
  --fg-subtle: #6e7781;
  --border: #33414f;
  --accent: #46D1E4;
  --accent-hover: #57ebff;
  --shadow: 0 1px 3px rgba(0,0,0,.08);
  
  /* Sistema de espaciado fluido */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2rem);
  --space-xl: clamp(2rem, 4vw, 3rem);
  --space-2xl: clamp(3rem, 5vw, 5rem);
  
  /* Contenedor máximo */
  --container-max: min(90%, 80rem);
  
  /* Bordes y radios */
  --radius-sm: clamp(0.375rem, 0.5vw, 0.5rem);
  --radius-md: clamp(0.5rem, 0.75vw, 0.75rem);
  --radius-lg: clamp(0.75rem, 1vw, 1rem);
}

[data-theme="dark"] {
  --bg: #0d1117;
  --surface: #161b22;
  --fg: #c9d1d9;
  --fg-muted: #8b949e;
  --fg-subtle: #6e7681;
  --border: #30363d;
  --accent: #46D1E4;
  --accent-hover: #57ebff;
  --shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* ============================================
   TIPOGRAFÍA FLUIDA Y RESPONSIVE
   ============================================ */

/* Escala base fluida para todo el documento */
html {
  font-size: clamp(14px, 0.8vw + 0.5rem, 18px);
}

/* Para pantallas muy grandes (monitores 4K, etc) */
@media (min-width: 1920px) {
  html {
    font-size: clamp(16px, 0.5vw + 0.6rem, 20px);
  }
}

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s, color 0.2s;
}

/* Tipografía escalable */
h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 6rem);
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 4.5rem);
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 2rem);
  line-height: 1.4;
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.5rem);
  line-height: 1.6;
}

/* ============================================
   CONTENEDOR RESPONSIVE
   ============================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

@media (min-width: 1400px) {
  .container {
    max-width: min(85%, 90rem);
    padding: 0 var(--space-xl);
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: min(80%, 100rem);
    padding: 0 var(--space-2xl);
  }
}

/* ============================================
   NAVEGACIÓN
   ============================================ */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(3.5rem, 5vw, 5rem);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}

.logo-mark {
  width: clamp(1.5rem, 2vw, 2rem);
  height: clamp(1.5rem, 2vw, 2rem);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  fill: var(--accent);
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 600;
  transition: color 0.2s;
}

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

/* Theme toggle */
.theme-toggle {
  width: clamp(2.25rem, 3vw, 2.75rem);
  height: clamp(2.25rem, 3vw, 2.75rem);
  padding: var(--space-xs);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: var(--surface);
  border-color: var(--fg-muted);
}

.theme-toggle svg {
  width: 100%;
  height: 100%;
  stroke: var(--fg);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   BOTONES RESPONSIVE
   ============================================ */

.btn {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border-radius: 50px;
  font-size: clamp(0.875rem, 1.2vw, 1.25rem);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

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

/* ============================================
   HERO SECTION - TOTALMENTE RESPONSIVE
   ============================================ */

.hero {
  padding: clamp(3rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: #fff;
  text-align: center;
  padding: 0 var(--space-md);
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Para pantallas muy grandes */
@media (min-width: 1920px) {
  .hero h1 {
    font-size: clamp(4rem, 4vw + 2rem, 8rem);
  }
}

.hero .tagline {
  font-size: clamp(0.75rem, 1vw, 1rem);
  color: #fff;
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.hero p {
  font-size: clamp(1.25rem, 2vw + 0.25rem, 2rem);
  color: #fff;
  margin-bottom: var(--space-xl);
  line-height: 1.5;
  text-align: center;
  margin-top: var(--space-lg);
  padding: 0 var(--space-lg);
}

.hero p.tagline {
  margin-top: 0 !important;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   STATS CARDS
   ============================================ */

.stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw + 0.5rem, 4rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-xs);
  font-family: Founders Grotesk Condensed, 'Poppins', -apple-system, sans-serif;
}

.stat-label {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.stat-description {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  color: var(--fg-muted);
  margin-bottom: var(--space-md);
}

.stat-dots {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
}

.stat-dot {
  width: clamp(0.5rem, 0.6vw, 0.625rem);
  height: clamp(0.5rem, 0.6vw, 0.625rem);
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.stat-dot.active {
  background: var(--accent);
  width: clamp(1.25rem, 1.5vw, 1.75rem);
  border-radius: var(--radius-sm);
}

/* ============================================
   LOGO MARQUEE
   ============================================ */

.logo-marquee {
  padding: clamp(2rem, 4vw, 4rem) 0;
  border-top: 1px solid #ffffff14;
  border-bottom: 1px solid #ffffff14;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  animation: scroll 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 500;
  color: var(--fg-muted);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.marquee-item:hover {
  opacity: 1;
}

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

/* ============================================
   SECCIONES
   ============================================ */

.section {
  padding: clamp(3rem, 6vw, 8rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 4.5rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: white;
  text-transform: uppercase;
}

.section-header p {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.5rem);
}

/* ============================================
   GRID SYSTEM RESPONSIVE
   ============================================ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
    gap: var(--space-lg);
  }
}

@media (min-width: 1400px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
    gap: var(--space-xl);
  }
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--fg-muted);
  transform: translateY(-0.25rem);
}

.card h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: white;
  text-transform: uppercase;
}

.card p {
  color: var(--fg-muted);
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.card ul {
  list-style: none;
}

.card ul li {
  color: var(--fg-muted);
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  padding: var(--space-xs) 0;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

/* ============================================
   IMÁGENES RESPONSIVE
   ============================================ */

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

.image-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Para imágenes de hero/banner */
.hero-image,
.banner-image {
  width: 100%;
  height: auto;
  min-height: clamp(15rem, 30vw, 35rem);
  object-fit: cover;
}

/* Para avatares y logos */
.avatar,
.logo-image {
  width: clamp(2rem, 4vw, 4rem);
  height: clamp(2rem, 4vw, 4rem);
  object-fit: cover;
  border-radius: 50%;
}

/* ============================================
   PROCESO/STEPS
   ============================================ */

.process-step {
  position: relative;
  padding: var(--space-lg);
}

.step-number {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  font-family: Founders Grotesk Condensed, 'Poppins', -apple-system, sans-serif;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .step-content {
  transform: translateY(-0.5rem);
  border-color: rgba(70, 209, 228, 0.4);
  box-shadow: 
    0 clamp(0.5rem, 1vw, 1rem) clamp(2rem, 3vw, 4rem) 0 rgba(70, 209, 228, 0.3),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  background: rgba(70, 209, 228, 0.08);
}

[data-theme="light"] .process-step:hover .step-content {
  box-shadow: 
    0 clamp(0.5rem, 1vw, 1rem) clamp(2rem, 3vw, 4rem) 0 rgba(70, 209, 228, 0.2),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
  background: rgba(70, 209, 228, 0.12);
}

.process-step:hover .step-content::before {
  opacity: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
}

/* ============================================
   EFECTOS VISUALES
   ============================================ */

/* Partículas del hero */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#hero-particles canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Efecto de velocidad para "speed" */
.speed-word {
  display: inline-block;
  position: relative;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255) 0%, 
    rgba(255, 255, 255) 50%, 
    #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: speedReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left center;
}

@keyframes speedReveal {
  0% {
    transform: translateX(-100px) skewX(-15deg) scale(0.8);
    opacity: 0;
    filter: blur(20px);
  }
  60% {
    transform: translateX(10px) skewX(-8deg) scale(1.05);
    opacity: 0.8;
    filter: blur(8px);
  }
  80% {
    transform: translateX(-5px) skewX(-3deg) scale(1.02);
    opacity: 1;
    filter: blur(2px);
  }
  100% {
    transform: translateX(0) skewX(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

.speed-word::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(70, 209, 228, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(-10px);
  opacity: 0;
  animation: speedTrail 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes speedTrail {
  0% {
    transform: translateX(-50px) skewX(-15deg);
    opacity: 0.6;
    filter: blur(15px);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(-5px) skewX(0deg);
    opacity: 0;
    filter: blur(5px);
  }
}

/* Efecto de luz violeta */
.hero-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(30rem, 50vw, 60rem);
  height: clamp(20rem, 25vw, 30rem);
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.4) 0%,
    rgba(168, 85, 247, 0.2) 30%,
    rgba(139, 92, 246, 0.1) 50%,
    transparent 70%
  );
  filter: blur(clamp(2rem, 4vw, 4rem));
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

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

.hero-buttons {
  position: relative;
  z-index: 2;
}

.logo-marquee {
  position: relative;
  z-index: 3;
}

.hero-glow::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(20rem, 25vw, 30rem);
  height: clamp(10rem, 12.5vw, 15rem);
  background: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.6) 0%,
    rgba(139, 92, 246, 0.3) 40%,
    transparent 70%
  );
  filter: blur(clamp(1.5rem, 2.5vw, 3rem));
  animation: glowPulse 3s ease-in-out infinite reverse;
}

/* ============================================
   VIDEO DE FONDO RESPONSIVE
   ============================================ */

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.1);
  object-fit: cover;
  filter: brightness(1) contrast(1.2);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, 
      rgba(0, 1, 51, 0.95) 0%,
      rgba(24, 17, 72, 0.9) 20%,
      rgba(25, 0, 68, 0.85) 40%,
      rgba(0, 17, 51, 0.9) 60%,
      rgba(0, 8, 20, 0.95) 80%,
      rgba(0, 0, 0, 0.98) 100%
    );
  background-size: 400% 400%;
  animation: gradientFlow 25s ease infinite;
  mix-blend-mode: multiply;
}

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

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(0, 61, 102, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0, 34, 68, 0.4) 0%, transparent 60%);
  animation: depthMove 35s ease-in-out infinite;
}

@keyframes depthMove {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   MEDIA QUERIES ADICIONALES
   ============================================ */

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }
  
  .hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
  }
}

/* Laptops pequeñas */
@media (min-width: 1024px) and (max-width: 1399px) {
  .hero h1 {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }
}

/* Pantallas grandes (monitores de escritorio) */
@media (min-width: 1400px) {
  body {
    font-size: 1.125rem;
  }
  
  .hero h1 {
    font-size: clamp(4.5rem, 5vw + 1rem, 7rem);
  }
  
  .section-header h2 {
    font-size: clamp(3rem, 4vw, 5rem);
  }
  
  .card h3 {
    font-size: clamp(2rem, 2.5vw, 3rem);
  }
}

/* Pantallas muy grandes (monitores 4K, ultrawide) */
@media (min-width: 1920px) {
  .container {
    max-width: 100rem;
  }
  
  .hero h1 {
    font-size: clamp(5rem, 4vw + 2rem, 8rem);
  }
  
  .hero p {
    font-size: clamp(1.5rem, 2vw, 2.5rem);
  }
  
  .section-header h2 {
    font-size: clamp(3.5rem, 4vw, 6rem);
  }
  
  .stat-number {
    font-size: clamp(3rem, 4vw, 5rem);
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    padding: 0 var(--space-sm);
  }
  
  .hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    padding: 0 var(--space-sm);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-sm);
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .nav-links {
    gap: var(--space-sm);
  }
  
  .nav-links a {
    font-size: clamp(0.75rem, 3vw, 0.875rem);
  }
}

/* Performance - reducir calidad en dispositivos lentos */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-video {
    display: none;
  }
  
  .hero-video-overlay {
    opacity: 1;
    background: var(--bg);
  }
}

/* Optimización para móviles */
@media (max-width: 768px) {
  .hero-video {
    filter: brightness(0.3) contrast(1.1);
  }
  
  .hero-video-overlay {
    background: 
      linear-gradient(135deg, 
        rgba(0, 1, 51, 0.98) 0%,
        rgba(0, 0, 0, 1) 100%
      );
  }
  
  /* Reducir efectos en móviles para mejor performance */
  .hero-glow,
  .speed-word::before,
  #hero-particles {
    display: none;
  }
}

/* Modo de alto contraste */
@media (prefers-contrast: high) {
  :root {
    --border: #000;
  }
  
  [data-theme="dark"] {
    --border: #fff;
  }
  
  .card,
  .stats-card,
  .step-content {
    border-width: 2px;
  }
}

/* Impresión */
@media print {
  .hero-video-wrapper,
  .hero-glow,
  #hero-particles,
  .theme-toggle,
  nav {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}