/* ============================================================
   DEXAR SOLUTIONS — styles.css v20260520
   Tema blanco minimalista
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ——— Variables ——— */
:root {
  --blue:       #0A6FFF;
  --blue-hover: #0058E0;
  --blue-light: #EEF4FF;
  --blue-mid:   #BFDBFE;
  --green:      #25D366;

  --bg:         #FFFFFF;
  --bg-alt:     #F7F9FC;
  --bg-card:    #FFFFFF;

  --text:       #111827;
  --muted:      #6B7280;
  --dim:        #9CA3AF;

  --border:     #E5E7EB;
  --border-mid: #D1D5DB;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.1);
  --shadow-blue:0 6px 24px rgba(10,111,255,0.28);

  --grad:       linear-gradient(135deg, #0A6FFF, #00D4FF);

  --ff-head: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-mono: 'Space Mono', monospace;

  --nav-h: 72px;
  --r:     14px;
  --r-lg:  20px;

  --ease-expo:   cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ——— Splash ——— */
#splash {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-expo), visibility 0.6s;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.splash-logo {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.splash-bar {
  width: 140px; height: 2px;
  background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.splash-fill {
  height: 100%; background: var(--grad);
  animation: splashBar 1.4s var(--ease-expo) forwards;
}
@keyframes splashBar { from { width: 0; } to { width: 100%; } }

/* ——— Layout ——— */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ——— Reveal ——— */
[data-reveal] { opacity: 0; transform: translateY(28px); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--ff-head); font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, background 0.2s;
  white-space: nowrap; line-height: 1;
}

.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10,111,255,0.38);
}

.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent; color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn-nav {
  background: var(--blue); color: #fff;
  padding: 10px 20px; font-size: 14px;
  box-shadow: 0 3px 12px rgba(10,111,255,0.3);
}
.btn-nav:hover { background: var(--blue-hover); transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-xl { padding: 20px 48px; font-size: 18px; }

.btn-white {
  background: #fff; color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ——— Logo image ——— */
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.splash-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo needs white pill on dark bg */
.footer-brand .logo-img {
  height: 52px;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}

/* ——— Navigation ——— */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; gap: 40px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 13px;
  color: #fff; flex-shrink: 0;
}

.logo-name {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 16px; color: var(--text); letter-spacing: -0.01em;
}

.nav-links { list-style: none; display: flex; gap: 8px; margin-left: auto; }

.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 7px 12px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover  { color: var(--text); background: var(--bg-alt); }
.nav-links a.active { color: var(--blue); font-weight: 600; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none;
  border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer; padding: 9px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ——— Mobile menu ——— */
#mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease-expo);
  padding: 16px 20px 20px;
}
#mobile-menu.open { transform: translateY(0); }

#mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }

#mobile-menu a {
  display: block; padding: 12px 16px;
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
#mobile-menu a:hover { background: var(--bg-alt); color: var(--text); }
#mobile-menu .btn { color: #fff; margin-top: 8px; text-align: center; justify-content: center; }

/* ——— Page wrapper ——— */
.page-wrap { padding-top: var(--nav-h); }

/* ——— Section helpers ——— */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px;
}

.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { justify-content: center; }

h2.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.025em; color: var(--text);
}

.section-sub {
  margin-top: 14px;
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 560px;
}
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ——— Hero ——— */
#hero {
  padding: 96px 0 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}

/* Subtle blue gradient top-right */
#hero::after {
  content: '';
  position: absolute; top: -100px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,111,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-line  { display: block; overflow: hidden; }
.ds-inner { display: block; }

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}

.trust-icon {
  width: 18px; height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg { color: var(--blue); }

/* Hero visual (right side) */
.hero-visual {
  position: relative; z-index: 1;
}

.hero-card-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mock-bar {
  height: 44px; background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 16px; gap: 6px;
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }

.mock-url {
  flex: 1; height: 24px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; margin-left: 8px;
  display: flex; align-items: center; padding: 0 10px;
}
.mock-url span {
  font-size: 11px; color: var(--dim); font-family: var(--ff-mono);
}

.mock-body { padding: 28px; }

.mock-nav-sim {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.mock-logo-sim {
  width: 80px; height: 12px;
  background: var(--border); border-radius: 6px;
}
.mock-links-sim {
  display: flex; gap: 12px;
}
.mock-link-sim {
  width: 40px; height: 10px;
  background: var(--border); border-radius: 4px;
}

.mock-hero-sim { margin-bottom: 28px; }
.mock-h1-sim {
  height: 16px; background: var(--text);
  border-radius: 4px; margin-bottom: 10px; width: 85%;
  opacity: 0.15;
}
.mock-h1-sim.sm { height: 14px; width: 65%; }
.mock-p-sim {
  height: 9px; background: var(--border);
  border-radius: 3px; margin-bottom: 7px;
}
.mock-p-sim:last-child { width: 70%; }

.mock-btn-sim {
  width: 100px; height: 30px;
  background: var(--blue); border-radius: 50px;
  opacity: 0.9;
}

.mock-cards-sim {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.mock-card-sim {
  height: 64px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 8px;
}

/* Floating stats on hero visual */
.hero-float {
  position: absolute;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.hero-float--1 { top: 20px; right: -16px; }
.hero-float--2 { bottom: 32px; left: -16px; }

.hf-icon {
  width: 36px; height: 36px;
  background: var(--blue-light);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.hf-text strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.hf-text span   { font-size: 11px; color: var(--muted); }

/* ——— Services overview ——— */
#servicios {
  padding: 100px 0;
  background: var(--bg-alt);
}

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}

.srv-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0;
  transition: opacity 0.3s ease;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-mid);
}
.srv-card:hover::before { opacity: 1; }

.srv-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 28px;
  transition: background 0.3s;
}
.srv-card:hover .srv-icon { background: rgba(10,111,255,0.15); }

.srv-num {
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--dim); letter-spacing: 0.06em; margin-bottom: 10px;
}

.srv-card h3 {
  font-family: var(--ff-head); font-size: 1.55rem;
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 14px; line-height: 1.2;
}

.srv-card p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }

.srv-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 32px; flex: 1;
}
.srv-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted); line-height: 1.45;
}
.srv-list li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%230A6FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.srv-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); text-decoration: none;
  font-weight: 600; font-size: 14px;
  font-family: var(--ff-head);
  transition: gap 0.2s var(--ease-spring);
}
.srv-link:hover { gap: 12px; }

/* ——— Process ——— */
#proceso { padding: 100px 0; }

.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100%/6); right: calc(100%/6);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-mid));
  border-top: 1px dashed var(--blue-mid);
}

.step {
  text-align: center; padding: 0 24px;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 18px;
  color: var(--blue);
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  background: #fff;
}

.step h4 {
  font-family: var(--ff-head); font-size: 1.05rem;
  font-weight: 700; margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ——— Industries ——— */
#sectores {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.sector-icon {
  font-size: 2rem; margin-bottom: 16px; line-height: 1;
}

.sector-card h4 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 10px;
}
.sector-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ——— CTA banner ——— */
#cta-banner {
  padding: 100px 0;
  background: var(--blue);
  position: relative; overflow: hidden;
}

#cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner-inner {
  text-align: center; position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto;
}

.cta-banner-inner .section-tag {
  color: rgba(255,255,255,0.7);
}
.cta-banner-inner .section-tag::before { background: rgba(255,255,255,0.5); }

.cta-banner-inner h2 {
  color: #fff; margin-bottom: 18px;
}

.cta-banner-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem; line-height: 1.75; margin-bottom: 36px;
}

.cta-banner-inner small {
  display: block; margin-top: 18px;
  color: rgba(255,255,255,0.6); font-size: 13px;
}

/* ——— Contact / Booking page ——— */
#contacto-page { padding: 80px 0 120px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}

.contact-info h1 {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 18px;
}
.contact-info p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }

.contact-method {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; padding: 16px 18px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-method:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }

.cm-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0;
}
.cm-icon.green { background: #DCFCE7; color: #16A34A; }

.cm-text strong { display: block; font-size: 14px; font-weight: 600; }
.cm-text span   { font-size: 13px; color: var(--muted); }

/* ——— Booking form ——— */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}

.booking-form-wrap h2 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 1.5rem; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.booking-form-wrap > p { color: var(--muted); font-size: 14px; margin-bottom: 32px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px; font-weight: 600; color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-body); font-size: 14px;
  padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg); color: var(--text);
  outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10,111,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}

.form-submit { margin-top: 8px; width: 100%; justify-content: center; border-radius: 10px; }

.form-note {
  text-align: center; margin-top: 14px;
  font-size: 12px; color: var(--dim);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-note svg { color: var(--blue); }

.form-success {
  display: none; text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 60px; height: 60px;
  background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.form-success h3 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-success p  { color: var(--muted); font-size: 14px; }

/* ——— Interior page hero ——— */
.page-hero {
  padding: 72px 0 64px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em; line-height: 1.12;
  margin-bottom: 18px;
}
.page-hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p { font-size: 1.1rem; color: var(--muted); line-height: 1.75; max-width: 560px; margin: 0 auto 28px; }

/* ——— Feature blocks (service detail pages) ——— */
.feature-block { padding: 100px 0; }
.feature-block + .feature-block { border-top: 1px solid var(--border); }

.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.feature-grid.reverse .feature-visual { order: -1; }

.feature-text .section-tag { margin-bottom: 12px; }

.feature-text h2 {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 16px;
}

.feature-text p { color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

.feature-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 11px; margin-bottom: 32px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text); line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--blue-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5 3.5-4' stroke='%230A6FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.feature-visual {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Animated visual placeholder */
.visual-diagram {
  width: 100%; max-width: 320px;
}
.vd-node {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.vd-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.vd-dot.blue   { background: var(--blue); }
.vd-dot.green  { background: #22C55E; }
.vd-dot.orange { background: #F59E0B; }
.vd-node span { font-size: 13px; font-weight: 500; }
.vd-arrow { text-align: center; color: var(--blue); font-size: 18px; margin: -4px 0 8px; }

/* ——— Pricing / Packages ——— */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
}
.pkg-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  position: relative;
}
.pkg-card.featured::before {
  content: 'Más elegido';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px;
  font-family: var(--ff-mono); letter-spacing: 0.05em;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pkg-name {
  font-family: var(--ff-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 8px;
}
.pkg-card h3 {
  font-family: var(--ff-head); font-weight: 700;
  font-size: 1.3rem; margin-bottom: 16px;
}
.pkg-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }

.pkg-list { list-style: none; flex: 1; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.pkg-list li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.pkg-list li::before {
  content: '✓';
  color: var(--blue); font-weight: 700; font-size: 13px; flex-shrink: 0;
}

/* ——— About page ——— */
.about-story { padding: 100px 0; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}

.about-text h2 {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 20px;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
}
.value-card h5 { font-family: var(--ff-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.value-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ——— Footer ——— */
#footer {
  background: var(--text); color: #fff;
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; text-decoration: none;
}
.footer-brand .logo-img {
  height: 44px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }

.footer-col h5 {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ——— WhatsApp float ——— */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { color: #fff; }

/* ——— Responsive ——— */
@media (max-width: 1024px) {
  .hero-grid       { gap: 40px; }
  .pillars-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .packages-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .container  { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; gap: 0; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid     { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual   { display: none; }
  #hero          { padding: 56px 0 60px; }

  .services-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .sectors-grid   { grid-template-columns: 1fr; }
  .feature-grid   { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-visual { order: 0; }
  .contact-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .values-grid    { grid-template-columns: 1fr; }
  .form-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .booking-form-wrap { padding: 28px 20px; }

  #servicios, #proceso, #sectores, .feature-block,
  .about-story, #contacto-page { padding: 60px 0; }
  #cta-banner { padding: 72px 0; }

  .whatsapp-float { bottom: 20px; right: 20px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   DEXAR SOLUTIONS — Visual Enhancement v2
   Animaciones, efectos y movimiento moderno
   ============================================================ */

/* ——— Scroll progress bar ——— */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9998; pointer-events: none;
}
#scroll-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #0A6FFF, #00D4FF, #0A6FFF);
  background-size: 200% 100%;
  animation: progressShine 2s linear infinite;
  box-shadow: 0 0 10px rgba(10,111,255,0.7), 0 0 4px rgba(0,212,255,0.5);
  transition: width 0.12s linear;
  border-radius: 0 2px 2px 0;
}
@keyframes progressShine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ——— Cursor glow (desktop) ——— */
.cursor-glow {
  position: fixed; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,111,255,0.07) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  will-change: left, top;
  z-index: 0;
  transition: opacity 0.4s ease;
}

/* ——— Hero background enhancements ——— */
#hero { z-index: 0; }

/* Dot grid */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,111,255,0.09) 1.2px, transparent 1.2px);
  background-size: 34px 34px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Aurora orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(72px); will-change: transform;
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(10,111,255,0.22) 0%, transparent 65%);
  top: -130px; right: -100px;
  animation: orbDrift1 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
  bottom: -60px; left: 3%;
  animation: orbDrift2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.11) 0%, transparent 65%);
  top: 35%; right: 18%;
  animation: orbDrift3 11s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-28px, 48px) scale(1.06); }
  66%       { transform: translate(22px, -22px) scale(0.94); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(46px, -36px) scale(1.1); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-22px, 32px); }
}

/* ——— Hero floating cards bobbing ——— */
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-11px); }
}
.hero-float--1 {
  animation: floatBob 4.2s ease-in-out infinite;
}
.hero-float--2 {
  animation: floatBob 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

/* ——— Mock browser skeleton shimmer ——— */
.mock-h1-sim,
.mock-p-sim,
.mock-link-sim,
.mock-logo-sim,
.mock-card-sim {
  background: linear-gradient(
    90deg,
    var(--border) 25%,
    #dce4ef 50%,
    var(--border) 75%
  );
  background-size: 300% 100%;
  animation: skelShimmer 2.2s linear infinite;
}
@keyframes skelShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ——— Hero title em gradient flow ——— */
.hero-title em {
  background: linear-gradient(90deg, #0A6FFF 0%, #00D4FF 40%, #0A6FFF 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradientFlow 4s linear infinite;
}
@keyframes titleGradientFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ——— Nav scrolled state ——— */
#nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.05);
}

/* ——— Logo image nav hover ——— */
.nav-logo .logo-img {
  transition: transform 0.3s var(--ease-spring), filter 0.3s ease;
}
.nav-logo:hover .logo-img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

/* ——— Section tag line pulse ——— */
.section-tag::before {
  background: var(--grad);
  animation: tagPulse 2.4s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 1; width: 24px; }
  50%       { opacity: 0.55; width: 16px; }
}

/* ——— Process connector animated flow ——— */
.process-steps::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--blue) 20%,
    #00D4FF 50%,
    var(--blue) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: lineFlow 3.5s linear infinite;
  border-top: none;
  height: 2px;
}
@keyframes lineFlow {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ——— Step number hover enlarge ——— */
.step-num {
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, background 0.3s;
}
.step:hover .step-num {
  transform: scale(1.12);
  background: var(--blue-light);
  box-shadow: 0 0 0 8px rgba(10,111,255,0.1), 0 0 0 2px var(--blue-mid);
}

/* ——— Service cards enhanced hover glow ——— */
.srv-card:hover {
  box-shadow: 0 24px 60px rgba(10,111,255,0.14), 0 4px 16px rgba(0,0,0,0.04);
}

/* ——— Sector cards enhanced hover ——— */
.sector-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 12px 40px rgba(10,111,255,0.1), 0 2px 8px rgba(0,0,0,0.04);
}
.sector-card:hover .sector-icon {
  display: inline-block;
  animation: iconBounce 0.55s var(--ease-spring);
}
@keyframes iconBounce {
  0%   { transform: scale(1) rotate(0deg); }
  30%  { transform: scale(1.3) rotate(-10deg); }
  65%  { transform: scale(0.9) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ——— CTA animated gradient ——— */
#cta-banner {
  background: linear-gradient(-45deg, #0030CC, #0A6FFF, #0055D4, #0090FF);
  background-size: 400% 400%;
  animation: ctaGradient 9s ease infinite;
}
@keyframes ctaGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ——— WhatsApp pulse ring ——— */
.whatsapp-float { overflow: visible; }
.whatsapp-float::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ——— Btn primary shimmer on hover ——— */
.btn-primary {
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.25) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0s;
}
.btn-primary:hover::after {
  left: 140%;
  transition: left 0.5s ease;
}

/* ============================================================
   PHONE CHAT DEMO
   ============================================================ */

/* ——— Override feature-visual for phone ——— */
.phone-visual {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: unset;
}

/* ——— Centering wrapper ——— */
.phone-demo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}

/* ——— Phone outer frame ——— */
.phone-frame {
  width: 252px;
  background: linear-gradient(160deg, #2e2e42 0%, #1a1a28 100%);
  border-radius: 46px;
  padding: 13px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 50px 120px rgba(0,0,0,0.45),
    0 0 60px rgba(10,111,255,0.12);
}

/* Volume buttons (left) */
.phone-btn-vol {
  position: absolute;
  left: -3px; top: 78px;
  width: 3px; height: 28px;
  background: #333;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 40px 0 #333;
}

/* Power button (right) */
.phone-btn-power {
  position: absolute;
  right: -3px; top: 96px;
  width: 3px; height: 52px;
  background: #333;
  border-radius: 0 3px 3px 0;
}

/* ——— Screen ——— */
.phone-screen {
  background: #E5DDD5;
  border-radius: 34px;
  overflow: hidden;
  height: 510px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ——— Status bar ——— */
.phone-status-bar {
  background: #056152;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 16px;
  flex-shrink: 0;
}

.phone-clock {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-head);
  letter-spacing: 0.02em;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ——— WhatsApp-style header ——— */
.chat-wa-header {
  background: #056152;
  padding: 8px 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.chat-wa-back {
  cursor: pointer;
  padding: 2px 4px;
  flex-shrink: 0;
}

.chat-wa-avatar {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.chat-wa-info {
  flex: 1;
  min-width: 0;
}
.chat-wa-info strong {
  display: block;
  font-size: 13px; font-weight: 700;
  color: #fff;
  font-family: var(--ff-head);
  line-height: 1.2;
}
.chat-wa-info span {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

.chat-wa-dots {
  padding: 4px;
  flex-shrink: 0;
}

/* ——— Messages area ——— */
.chat-wa-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  /* Subtle chat wallpaper */
  background-color: #E5DDD5;
  background-image:
    radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  scroll-behavior: smooth;
}

/* Hide scrollbar */
.chat-wa-body::-webkit-scrollbar { display: none; }
.chat-wa-body { -ms-overflow-style: none; scrollbar-width: none; }

/* ——— Message bubbles ——— */
.chat-msg-bubble {
  max-width: 82%;
  padding: 6px 9px 4px;
  border-radius: 7.5px;
  font-size: 12px;
  line-height: 1.45;
  color: #111;
  position: relative;
  animation: bubbleIn 0.25s cubic-bezier(0.34,1.3,0.64,1) both;
  word-break: break-word;
}

.chat-msg-bubble.bot {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
  margin-bottom: 2px;
}

.chat-msg-bubble.user {
  background: #D9FDD3;
  align-self: flex-end;
  border-top-right-radius: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
  margin-bottom: 2px;
}

.chat-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  margin-top: 2px;
}

.chat-msg-time {
  font-size: 9.5px;
  color: rgba(0,0,0,0.38);
  font-family: var(--ff-body);
  line-height: 1;
}

.chat-msg-ticks {
  font-size: 10px;
  color: #53BDEB;
  line-height: 1;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: scale(0.88) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ——— Typing indicator ——— */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  padding: 9px 12px;
  border-radius: 7.5px;
  border-top-left-radius: 0;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
  animation: bubbleIn 0.2s ease both;
  margin-bottom: 2px;
}

.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #8696A0;
  animation: typingPop 1.3s ease-in-out infinite;
  flex-shrink: 0;
}
.typing-dot:nth-child(2) { animation-delay: 0.22s; }
.typing-dot:nth-child(3) { animation-delay: 0.44s; }

@keyframes typingPop {
  0%, 57%, 100% { transform: translateY(0); opacity: 0.5; }
  28%            { transform: translateY(-6px); opacity: 1; }
}

/* ——— Date chip ——— */
.chat-date-chip {
  align-self: center;
  background: rgba(255,255,255,0.75);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 10px;
  color: #5a5a5a;
  margin: 6px 0 4px;
  font-family: var(--ff-body);
  backdrop-filter: blur(4px);
}

/* ——— Input bar ——— */
.chat-wa-input-bar {
  background: #F0F2F5;
  padding: 6px 8px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.chat-wa-emoji {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.chat-wa-field {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 11px;
  color: #aaa;
  font-family: var(--ff-body);
  line-height: 1;
}

.chat-wa-send {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

/* ——— Fade out before restart ——— */
.chat-wa-body.fading {
  transition: opacity 0.5s ease;
  opacity: 0;
}

/* ——— Responsive: disable heavy orbs on mobile ——— */
@media (max-width: 768px) {
  .hero-orb   { filter: blur(50px); opacity: 0.7; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 240px; height: 240px; }
  .hero-orb-3 { display: none; }
  .cursor-glow { display: none; }
}

/* ============================================================
   VISUAL v3 — Dark Hero · Marquee · Stats · Premium Effects
   ============================================================ */

/* ═══ DARK HERO ═══ */
#hero {
  background: #070B18;
  border-bottom: none;
  padding-bottom: 100px;
}

/* Canvas circuit */
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* Enhanced orbs on dark bg */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(10,111,255,0.38) 0%, transparent 65%);
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(124,58,237,0.26) 0%, transparent 65%);
}
.hero-orb-3 {
  background: radial-gradient(circle, rgba(0,212,255,0.22) 0%, transparent 65%);
}

/* Dot grid → white on dark */
#hero::before {
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
}
/* Remove the old right gradient blob */
#hero::after { display: none; }

/* Hero text on dark */
#hero .hero-title { color: #fff; }
#hero .hero-sub   { color: rgba(190,205,255,0.62); }

/* Trust badges on dark */
#hero .hero-trust .trust-item { color: rgba(190,205,255,0.55); }
#hero .hero-trust .trust-icon {
  background: rgba(10,111,255,0.22);
  border: 1px solid rgba(10,111,255,0.35);
}

/* Ghost button on dark */
#hero .btn-ghost {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.04);
}
#hero .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
  transform: translateY(-2px);
}

/* Floating cards glassmorphism on dark */
#hero .hero-float {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#hero .hero-float .hf-text strong { color: #fff; }
#hero .hero-float .hf-text span   { color: rgba(255,255,255,0.48); }
#hero .hf-icon {
  background: rgba(10,111,255,0.28);
  border: 1px solid rgba(10,111,255,0.38);
}

/* Browser mock on dark */
#hero .hero-card-mock {
  background: rgba(10,15,35,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(10,111,255,0.12);
  backdrop-filter: blur(12px);
}
#hero .mock-bar {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.07);
}
#hero .mock-url {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
#hero .mock-url span { color: rgba(255,255,255,0.3); }
#hero .mock-card-sim {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.07);
}
#hero .mock-h1-sim  { background: rgba(255,255,255,0.1); }
#hero .mock-p-sim   { background: rgba(255,255,255,0.06); }
#hero .mock-logo-sim  { background: rgba(255,255,255,0.1); }
#hero .mock-link-sim  { background: rgba(255,255,255,0.07); }

/* Shimmer on dark */
#hero .mock-h1-sim,
#hero .mock-p-sim,
#hero .mock-link-sim,
#hero .mock-logo-sim,
#hero .mock-card-sim {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.14) 50%,
    rgba(255,255,255,0.05) 75%
  );
  background-size: 300% 100%;
  animation: skelShimmer 2.2s linear infinite;
}

/* Fade-to-light at hero bottom */
#hero .hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #F7F9FC 100%);
  pointer-events: none; z-index: 1;
}

/* ═══ MARQUEE TICKER ═══ */
.marquee-band {
  background: #F7F9FC;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, #F7F9FC, transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, #F7F9FC, transparent);
}

.marquee-track { overflow: hidden; }

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.marquee-inner .msep {
  color: var(--blue);
  font-size: 10px;
  opacity: 0.6;
  font-weight: 400;
  text-transform: none;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-band:hover .marquee-inner {
  animation-play-state: paused;
}

/* ═══ STATS BAND ═══ */
#stats-band {
  padding: 80px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

#stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10,111,255,0.04), transparent);
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1; text-align: center;
  padding: 0 32px;
  position: relative;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-mid), transparent);
  flex-shrink: 0;
}

/* ═══ GRADIENT BORDER CARDS ═══ */
.srv-card {
  isolation: isolate;
}

.srv-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  background: linear-gradient(135deg, var(--blue), #00D4FF, #7C3AED, var(--blue));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradBorderMove 4s linear infinite;
}
.srv-card:hover::after { opacity: 1; }

@keyframes gradBorderMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Service icon animated gradient on hover */
.srv-card:hover .srv-icon {
  background: linear-gradient(135deg, rgba(10,111,255,0.2), rgba(0,212,255,0.2));
  box-shadow: 0 0 20px rgba(10,111,255,0.25);
  transform: scale(1.08) rotate(-3deg);
  transition: all 0.35s var(--ease-spring);
}
.srv-icon { transition: all 0.35s var(--ease-spring); }

/* ═══ SECTOR CARDS ENHANCED ═══ */
.sector-card {
  position: relative; isolation: isolate;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.3s;
}
.sector-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: calc(var(--r-lg) + 1px);
  background: linear-gradient(135deg, var(--blue), #00D4FF);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.sector-card:hover::after { opacity: 0.8; }
.sector-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(10,111,255,0.18), 0 4px 16px rgba(0,0,0,0.06);
}

/* ═══ MAGNETIC BUTTON WRAPPER ═══ */
.btn-mag { display: inline-block; }

/* ═══ NOISE TEXTURE OVERLAY CTA ═══ */
#cta-banner {
  position: relative;
}
#cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none; z-index: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
}
#cta-banner .container { position: relative; z-index: 1; }

/* ═══ ENHANCED NAV (dark-aware) ═══ */
#nav { transition: background 0.4s ease, box-shadow 0.4s ease; }

/* When hero is dark, nav can be fully transparent at top */
#nav.hero-top {
  background: rgba(7,11,24,0.7);
  border-bottom-color: rgba(255,255,255,0.06);
}
#nav.hero-top .nav-links a       { color: rgba(255,255,255,0.65); }
#nav.hero-top .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
#nav.hero-top .nav-links a.active { color: #60AFFF; }
#nav.hero-top .nav-toggle span   { background: #fff; }
#nav.hero-top .btn-nav {
  background: rgba(10,111,255,0.85);
  border: 1px solid rgba(10,111,255,0.5);
}

/* ═══ CLIP-PATH REVEAL ═══ */
[data-reveal-clip] {
  clip-path: inset(0 0 100% 0);
  opacity: 1 !important;
  transform: none !important;
}
[data-reveal-clip].revealed {
  clip-path: inset(0 0 0% 0);
  transition: clip-path 0.8s var(--ease-expo);
}

/* ═══ GLOW PULSE ON STEP NUMS ═══ */
.step-num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,111,255,0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.step:hover .step-num::after {
  opacity: 1; transform: scale(1.1);
}

/* ═══ FOOTER GRADIENT TOP ═══ */
#footer {
  position: relative;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(10,111,255,0.6) 30%, rgba(0,212,255,0.6) 50%, rgba(10,111,255,0.6) 70%, transparent 100%);
}

/* ═══ NAV WORDMARK ═══ */
.logo-wordmark {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
#nav.hero-top .logo-wordmark { color: #fff; }

/* ═══ BROWSER MOCKUP (hero, light theme) ═══ */
.browser-mock {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 50px 120px rgba(0,0,0,0.5),
    0 12px 32px rgba(0,0,0,0.22);
  position: relative; z-index: 2;
}

.browser-chrome {
  background: #F0F2F5;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid #E4E6E9;
}

.browser-dots { display: flex; gap: 5px; align-items: center; }
.bd { display: block; width: 10px; height: 10px; border-radius: 50%; }
.rd { background: #FF5F57; }
.yw { background: #FFBD2E; }
.gr { background: #28C840; }

.browser-addr {
  flex: 1; background: #fff;
  border: 1px solid #DDE0E6; border-radius: 6px;
  padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
  font-size: 10.5px; color: #555; font-family: var(--ff-body);
}

.browser-viewport { background: #fff; }

/* Mini nav */
.mw-nav {
  padding: 9px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #F0F2F5;
}
.mw-logo-block { display: flex; align-items: center; gap: 5px; }
.mw-logo-icon  { width: 16px; height: 16px; background: linear-gradient(135deg,#0A6FFF,#00D4FF); border-radius: 4px; }
.mw-logo-txt   { width: 38px; height: 7px; background: #1a1a2e; border-radius: 3px; }
.mw-nav-links  { display: flex; gap: 8px; margin-left: auto; }
.mw-nl         { display: block; width: 26px; height: 6px; background: #E5E7EB; border-radius: 3px; }
.mw-nav-cta    { width: 46px; height: 21px; background: #0A6FFF; border-radius: 10px; }

/* Mini hero section */
.mw-hero-section {
  background: linear-gradient(135deg, #EEF4FF 0%, #F3EEFF 100%);
  padding: 14px 14px 12px;
  display: flex; align-items: flex-start; gap: 12px;
}
.mw-hero-content { flex: 1.1; }

.mw-badge-pill { width: 58px; height: 13px; background: rgba(10,111,255,0.13); border: 1px solid rgba(10,111,255,0.2); border-radius: 7px; margin-bottom: 7px; }

.mw-h1 { height: 9px; background: #111827; border-radius: 4px; opacity: 0.78; }
.mw-h1.w90 { width: 90%; }
.mw-h1.w65 { width: 65%; }
.mw-h1.mt4 { margin-top: 4px; }

.mw-p  { height: 5.5px; background: #9CA3AF; border-radius: 3px; }
.mw-p.w95 { width: 95%; }
.mw-p.w75 { width: 75%; }
.mw-p.mt8 { margin-top: 8px; }

.mw-btns       { display: flex; gap: 6px; }
.mw-btns.mt10  { margin-top: 10px; }
.mw-btn-primary { width: 54px; height: 17px; background: #0A6FFF; border-radius: 8px; }
.mw-btn-ghost  { width: 42px; height: 17px; border: 1.5px solid #CBD5E1; border-radius: 8px; }

/* Mini hero card */
.mw-hero-card { flex: 0 0 auto; width: 106px; }
.mw-card-inner {
  background: #fff; border-radius: 10px; padding: 10px 10px 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.mw-avatar-row { display: flex; margin-bottom: 5px; }
.mw-avatar { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid #fff; margin-right: -5px; }
.av1 { background: linear-gradient(135deg,#0A6FFF,#60A5FA); }
.av2 { background: linear-gradient(135deg,#7C3AED,#A78BFA); }
.av3 { background: linear-gradient(135deg,#059669,#34D399); }
.mw-more-av {
  width: 17px; height: 17px; border-radius: 50%; background: #F3F4F6;
  border: 1.5px solid #fff; font-size: 7px; color: #6B7280; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head);
}
.mw-stars { font-size: 9px; color: #F59E0B; letter-spacing: 0.5px; margin-bottom: 5px; }
.mw-review-line { height: 5px; background: #E5E7EB; border-radius: 3px; }
.mw-review-line.w85 { width: 85%; }
.mw-review-line.w60 { width: 60%; }
.mw-review-line.mt3 { margin-top: 3px; }
.mw-live-pill {
  margin-top: 6px; font-size: 8px; font-weight: 600; color: #16A34A;
  background: #DCFCE7; border-radius: 4px; padding: 2px 5px;
  display: inline-block; font-family: var(--ff-head);
}

/* Feature cards row */
.mw-cards-row {
  display: flex; gap: 7px; padding: 9px 14px 12px; background: #fff;
}
.mw-feat-card {
  flex: 1; background: #F9FAFB; border: 1px solid #F0F2F5;
  border-radius: 6px; padding: 7px 7px; display: flex; align-items: center; gap: 6px;
}
.mw-feat-ico { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; }
.mw-feat-ico.blue   { background: rgba(10,111,255,0.18); }
.mw-feat-ico.purple { background: rgba(124,58,237,0.18); }
.mw-feat-ico.cyan   { background: rgba(0,212,255,0.25); }
.mw-feat-body { flex: 1; }
.mw-feat-title { height: 5.5px; background: #374151; border-radius: 3px; margin-bottom: 3px; width: 80%; }
.mw-feat-sub   { height: 4.5px; background: #D1D5DB; border-radius: 3px; width: 65%; }

/* Hero float 3rd badge */
.hero-float--3 {
  bottom: -16px; right: -20px;
  animation: floatBob 5.5s ease-in-out infinite;
  animation-delay: -1s;
}
.hf-icon.hf-green {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16A34A;
}

/* ═══ DARK PAGE HERO (todas las páginas internas) ═══ */
.page-hero {
  background: linear-gradient(135deg, #070B18 0%, #0D1528 100%);
  border-bottom: none;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,111,255,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .section-tag { color: rgba(100,160,255,0.85); }
.page-hero .section-tag::before { background: rgba(100,160,255,0.4); }
.page-hero h1 { color: #fff; }
.page-hero h1 em {
  background: linear-gradient(90deg, #60A5FA, #00D4FF, #60A5FA);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradientFlow 4s linear infinite;
}
.page-hero p { color: rgba(190,210,255,0.65); }
.page-hero .container { position: relative; z-index: 1; }

/* ═══ ENHANCED FEATURE VISUALS ═══ */

/* PageSpeed score rings (web.html SEO section) */
.seo-scores {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 340px;
}
.score-ring-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.score-ring-wrap:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.score-ring {
  position: relative; width: 64px; height: 64px;
}
.score-ring svg { transform: rotate(-90deg); }
.score-ring-bg  { fill: none; stroke: #F0F2F5; stroke-width: 6; }
.score-ring-fill { fill: none; stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 1.5s var(--ease-expo); }
.score-ring-fill.green  { stroke: #22C55E; }
.score-ring-fill.blue   { stroke: #0A6FFF; }
.score-ring-fill.orange { stroke: #F59E0B; }
.score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 15px; color: var(--text);
}
.score-label {
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-align: center; font-family: var(--ff-head);
}

/* Responsive phone mockup (web.html) */
.phone-mockup-wrap {
  display: flex; justify-content: center;
}
.phone-mockup {
  width: 160px;
  background: #1a1a2e; border-radius: 28px; padding: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.07);
}
.phone-mockup-screen {
  background: #fff; border-radius: 22px; overflow: hidden;
}
.pm-status { height: 6px; background: #0A6FFF; border-radius: 3px 3px 0 0; }
.pm-nav-bar { height: 20px; background: #F8F9FA; border-bottom: 1px solid #F0F2F5; display: flex; align-items: center; padding: 0 8px; gap: 4px; }
.pm-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#0A6FFF,#00D4FF); }
.pm-logo-text { width: 28px; height: 5px; background: #1a1a2e; border-radius: 2px; }
.pm-menu-icon { margin-left: auto; display: flex; flex-direction: column; gap: 2px; }
.pm-menu-icon span { display: block; width: 10px; height: 1.5px; background: #555; border-radius: 1px; }
.pm-hero-area { background: linear-gradient(135deg, #EEF4FF, #F3EEFF); padding: 12px 10px; }
.pm-hero-h1 { height: 8px; background: #111; opacity: 0.75; border-radius: 3px; margin-bottom: 4px; }
.pm-hero-h1.sm { width: 70%; }
.pm-hero-p  { height: 5px; background: #9CA3AF; border-radius: 2px; margin-bottom: 3px; }
.pm-hero-cta { height: 20px; background: #0A6FFF; border-radius: 10px; margin-top: 8px; width: 80%; }
.pm-content { padding: 8px 10px; }
.pm-card { background: #F9FAFB; border: 1px solid #F0F2F5; border-radius: 6px; padding: 7px; margin-bottom: 6px; }
.pm-card-icon { width: 14px; height: 14px; border-radius: 4px; background: rgba(10,111,255,0.18); margin-bottom: 4px; }
.pm-card-line { height: 5px; background: #E5E7EB; border-radius: 3px; margin-bottom: 2px; }
.pm-card-line.sm { width: 65%; }
.pm-wa-btn { height: 24px; background: #25D366; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 8px; color: #fff; font-weight: 700; font-family: var(--ff-head); margin: 0 10px 8px; }

/* ═══ NOSOTROS — Enhanced value cards ═══ */
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0;
  transition: opacity 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-mid); }
.value-card:hover::before { opacity: 1; }
.value-card h5 { font-family: var(--ff-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 7px; }
.value-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══ CONTACT PAGE — Enhanced ═══ */
.booking-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.booking-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0A6FFF, #00D4FF, #7C3AED);
}

/* ═══ RESPONSIVE v3 ═══ */
@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .marquee-inner { animation-duration: 18s; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
#testimonios {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
#testimonios::before {
  content: '';
  position: absolute; top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(10,111,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.3s;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: -8px; right: 24px;
  font-size: 100px; line-height: 1;
  font-family: Georgia, serif;
  color: rgba(10,111,255,0.06);
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,111,255,0.1), 0 4px 16px rgba(0,0,0,0.06);
  border-color: var(--blue-mid);
}

.testi-card.testi-featured {
  background: linear-gradient(145deg, #0A6FFF 0%, #004FCC 100%);
  border-color: transparent;
  color: #fff;
}
.testi-card.testi-featured:hover {
  box-shadow: 0 24px 70px rgba(10,111,255,0.4), 0 4px 16px rgba(0,0,0,0.1);
}
.testi-card.testi-featured .testi-stars { color: #FBBF24; }
.testi-card.testi-featured .testi-quote { color: rgba(255,255,255,0.9); }
.testi-card.testi-featured .testi-info strong { color: #fff; }
.testi-card.testi-featured .testi-info span { color: rgba(255,255,255,0.65); }

.testi-stars {
  font-size: 16px; color: #F59E0B;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 14.5px; line-height: 1.75; color: var(--text);
  font-style: italic; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-card.testi-featured .testi-author { border-top-color: rgba(255,255,255,0.15); }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px; color: #fff;
}
.testi-info strong { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--text); }
.testi-info span   { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ═══ PROC FLOW (web.html feature visual) ═══ */
.proc-flow {
  display: flex; flex-direction: column; gap: 0;
  max-width: 340px;
}

.proc-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}
.proc-step:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: var(--blue-mid); }

.proc-num {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px; background: rgba(10,111,255,0.1);
  border: 1.5px solid rgba(10,111,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 700;
  color: var(--blue); letter-spacing: 0.03em;
}
.proc-num.orange { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.25); color: #D97706; }
.proc-num.green  { background: rgba(34,197,94,0.1);  border-color: rgba(34,197,94,0.25);  color: #16A34A; }

.proc-body { flex: 1; }
.proc-body strong { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 3px; }
.proc-body span   { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.proc-connector {
  width: 1px; height: 14px;
  background: linear-gradient(to bottom, var(--border), rgba(10,111,255,0.3));
  margin-left: 37px;
}

/* ═══ NOSOTROS — Diferenciadores grid ═══ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.diff-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.3s;
}
.diff-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.diff-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(10,111,255,0.12), 0 4px 16px rgba(0,0,0,0.06); border-color: var(--blue-mid); }
.diff-card:hover::before { opacity: 1; }

.diff-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(10,111,255,0.08);
  border: 1.5px solid rgba(10,111,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.diff-card:hover .diff-icon { background: rgba(10,111,255,0.14); transform: scale(1.08) rotate(-3deg); }

.diff-card h4 {
  font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem;
  color: var(--text); margin-bottom: 10px;
}
.diff-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .diff-grid { grid-template-columns: 1fr; }
  .proc-flow { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════
   PROCESS SHOWCASE — Interactive stepper (index.html)
═══════════════════════════════════════════════════ */
.ps-showcase {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}

/* ── Tab list ── */
.ps-tabs {
  display: flex;
  flex-direction: column;
}

.ps-tab {
  padding: 22px 24px 18px;
  border-left: 3px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: border-color 0.35s ease, background 0.3s;
  border-radius: 0 var(--r) var(--r) 0;
}
.ps-tab:hover { background: rgba(10,111,255,0.03); }
.ps-tab.active {
  border-left-color: var(--blue);
  background: rgba(10,111,255,0.04);
}

.ps-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 5px;
  transition: color 0.3s;
}
.ps-tab.active .ps-num { color: var(--blue); }

.ps-tab-content strong {
  display: block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
  transition: color 0.3s;
}
.ps-tab-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin: 0;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease,
              margin-top 0.4s ease;
}
.ps-tab.active .ps-tab-content p {
  max-height: 80px;
  opacity: 1;
  margin-top: 5px;
}

/* Progress bar at bottom of active tab */
.ps-progress {
  height: 2px;
  background: rgba(10,111,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 14px;
  display: none;
}
.ps-tab.active .ps-progress { display: block; }
.ps-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), #00D4FF);
  border-radius: 2px;
}

/* ── Visual panels ── */
.ps-visual {
  position: relative;
  min-height: 380px;
}

.ps-panel {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(16px) scale(0.985);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.34,1.1,0.64,1);
  pointer-events: none;
}
.ps-panel.ps-exit {
  opacity: 0;
  transform: translateX(-16px) scale(0.985);
}
.ps-panel.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  position: relative;
}

.ps-panel-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  align-items: center;
}

/* ── PANEL 0: Booking ── */
.psp-booking {
  display: flex; flex-direction: column; gap: 16px; width: 100%;
}
.psp-b-head {
  display: flex; align-items: center; gap: 14px;
}
.psp-b-avatar {
  font-size: 2rem; width: 48px; height: 48px;
  background: rgba(10,111,255,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.psp-b-head strong { display: block; font-family: var(--ff-head); font-weight: 700; font-size: 0.95rem; }
.psp-b-head span   { font-size: 12px; color: var(--muted); }

.psp-cal-month { font-family: var(--ff-head); font-weight: 600; font-size: 12px; color: var(--text); margin-bottom: 8px; }
.psp-cal-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 4px;
}
.psd {
  font-size: 10px; font-weight: 700; color: var(--muted);
  text-align: center; padding: 2px 0;
  font-family: var(--ff-head);
}
.psc {
  font-size: 12px; font-weight: 500; color: var(--text-muted);
  text-align: center; padding: 5px 2px;
  border-radius: 6px; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.psc:hover { background: var(--bg-alt); }
.psc-today { color: var(--blue); font-weight: 700; }
.psc-sel   { background: var(--blue) !important; color: #fff !important; font-weight: 700; }

.psp-slots { display: flex; gap: 8px; flex-wrap: wrap; }
.psp-slot {
  padding: 6px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; font-family: var(--ff-head);
  color: var(--text); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.psp-slot:hover { border-color: var(--blue); color: var(--blue); }
.psp-slot-sel { background: rgba(10,111,255,0.08); border-color: var(--blue) !important; color: var(--blue) !important; }

.psp-confirm-btn {
  background: linear-gradient(135deg, var(--blue), #0090FF);
  color: #fff; text-align: center; padding: 12px 20px;
  border-radius: 10px; font-family: var(--ff-head); font-weight: 700; font-size: 14px;
  cursor: pointer; letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(10,111,255,0.3);
}
.psp-confirm-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,111,255,0.35); }

/* ── PANEL 1: Building ── */
.psp-build { display: flex; gap: 20px; align-items: flex-start; width: 100%; }

.psp-browser-mini {
  flex: 1; background: #fff;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border: 1px solid #E5E7EB;
}
.psp-brow-top {
  background: #F3F4F6; padding: 7px 10px;
  display: flex; align-items: center; gap: 5px;
  border-bottom: 1px solid #E5E7EB;
}
.psp-bdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.psp-bdot.r { background: #FF5F57; }
.psp-bdot.y { background: #FFBD2E; }
.psp-bdot.g { background: #28C840; }
.psp-brow-url {
  flex: 1; background: #fff; border: 1px solid #E5E7EB;
  border-radius: 4px; padding: 2px 8px;
  font-size: 9px; color: #888; font-family: var(--ff-body);
}
.psp-brow-body { padding: 14px 12px; }
.psp-bl { background: #E5E7EB; border-radius: 3px; height: 6px; }
.psp-bl.dark { background: #1F2937; opacity: 0.14; }
.psp-bl.sm   { height: 4.5px; }
.psp-bl.w85 { width: 85%; }
.psp-bl.w60 { width: 60%; }
.psp-bl.w90 { width: 90%; }
.psp-bl.w70 { width: 70%; }
.psp-bl.w50 { width: 50%; }
.psp-bl.mt5 { margin-top: 5px; }
.psp-bl.mt4 { margin-top: 4px; }
.psp-bl.mt3 { margin-top: 3px; }
.psp-bl.mt8 { margin-top: 8px; }
.psp-brow-cta { height: 22px; background: #0A6FFF; border-radius: 8px; width: 80%; }
.psp-brow-card { background: #F9FAFB; border: 1px solid #F0F2F5; border-radius: 6px; padding: 8px; }

.psp-checklist {
  flex: 0 0 148px;
  display: flex; flex-direction: column; gap: 14px;
  padding-top: 2px;
}
.psp-ck {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
  font-family: var(--ff-head);
}
.psp-ck.done     { color: #16A34A; }
.psp-ck.building { color: var(--blue); font-weight: 700; }
.psp-ck.pending  { opacity: 0.5; }

.psp-ck-spinner {
  width: 14px; height: 14px; flex-shrink: 0;
  border: 2px solid rgba(10,111,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: pspSpin 0.8s linear infinite;
}
@keyframes pspSpin { to { transform: rotate(360deg); } }

/* ── PANEL 2: Live ── */
.psp-live { display: flex; flex-direction: column; gap: 18px; width: 100%; }

.psp-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16A34A; padding: 6px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600; font-family: var(--ff-head);
  width: fit-content;
}
.psp-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E;
  animation: pspLivePulse 2s ease-in-out infinite;
}
@keyframes pspLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.psp-metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.psp-metric-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.psp-metric-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.psp-m-num {
  font-family: var(--ff-head); font-size: 1.8rem; font-weight: 800;
  color: var(--text); line-height: 1;
}
.psp-m-label { font-size: 11px; color: var(--muted); margin-top: 4px; }
.psp-m-trend { font-size: 11px; font-weight: 700; color: #16A34A; margin-top: 4px; }
.psp-m-trend.blue { color: var(--blue); }

.psp-google-box {
  background: #fff; border: 1px solid #E5E7EB;
  border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.psp-gb-label {
  font-size: 10px; color: #9CA3AF; margin-bottom: 8px;
  font-family: var(--ff-head); text-transform: uppercase; letter-spacing: 0.06em;
}
.psp-gb-row { display: flex; align-items: center; gap: 14px; }
.psp-gb-num {
  font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #00D4FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; flex-shrink: 0;
}
.psp-gb-text strong { display: block; font-family: var(--ff-head); font-size: 13px; color: #1a73e8; font-weight: 600; }
.psp-gb-text span   { font-size: 11.5px; color: #888; }

/* Responsive */
@media (max-width: 900px) {
  .ps-showcase { grid-template-columns: 1fr; gap: 32px; }
  .ps-visual { min-height: auto; }
  .ps-panel { position: relative; inset: auto; transform: none !important; }
  .ps-panel:not(.active) { display: none; }
}
@media (max-width: 600px) {
  .ps-panel-inner { padding: 20px; min-height: auto; }
  .psp-build { flex-direction: column; }
  .psp-checklist { flex: 1; flex-direction: row; flex-wrap: wrap; }
  .psp-metrics-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   VISUAL OVERHAUL V4 — Spectacular & Technological (2026)
   Todos los cambios agrupados aquí para fácil mantenimiento
══════════════════════════════════════════════════════════════ */

/* — Refinamientos globales — */
::selection { background: rgba(10,111,255,0.16); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #040C1E; }
::-webkit-scrollbar-thumb { background: rgba(10,111,255,0.45); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* — Marquee oscuro (impacto visual máximo) — */
.marquee-band {
  background: #070B18 !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 14px 0 !important;
}
.marquee-band .marquee-inner span:not(.msep) {
  color: rgba(140,175,255,0.45) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.marquee-band .msep {
  color: rgba(10,111,255,0.6) !important;
  font-size: 7px !important;
}
.marquee-track {
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
  mask-image: linear-gradient(90deg,transparent 0%,#000 8%,#000 92%,transparent 100%);
}

/* — Servicio cards: preview area en la parte superior — */
.srv-card { overflow: hidden; }

.srv-preview {
  height: 140px;
  border-radius: 12px;
  margin: -28px -28px 24px -28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #EEF4FF 0%, #F3EEFF 100%);
  flex-shrink: 0;
}

/* Mini browser en card 1 */
.spv-browser {
  position: absolute; inset: 10px 10px 0;
  background: #fff; border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 1px solid #E5E7EB;
}
.spv-b-dots {
  background: #F3F4F6; height: 18px;
  display: flex; align-items: center; gap: 4px; padding: 0 8px;
  border-bottom: 1px solid #E5E7EB;
}
.spv-b-dots i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.spv-b-dots i:nth-child(1) { background: #FF5F57; }
.spv-b-dots i:nth-child(2) { background: #FFBD2E; }
.spv-b-dots i:nth-child(3) { background: #28C840; }
.spv-b-body { padding: 8px 10px; }
.spv-hero-bar { height: 8px; background: #111; opacity: 0.13; border-radius: 3px; width: 68%; margin-bottom: 4px; }
.spv-hero-sub { height: 5px; background: #D1D5DB; border-radius: 3px; width: 48%; margin-bottom: 8px; }
.spv-btn      { height: 16px; background: #0A6FFF; border-radius: 6px; width: 55%; margin-bottom: 8px; }
.spv-cards    { display: flex; gap: 5px; }
.spv-card     { flex: 1; height: 28px; border-radius: 5px; border: 1px solid #F0F2F5; }
.spv-card.blue   { background: rgba(10,111,255,0.12); }
.spv-card.purple { background: rgba(124,58,237,0.10); }
.spv-card.cyan   { background: rgba(0,212,255,0.14); }

/* Mini chat en card 2 */
.srv-preview.ai-prev {
  background: linear-gradient(135deg, #0D1528 0%, #141B38 100%) !important;
}
.spv-chat {
  padding: 12px 14px 0;
  display: flex; flex-direction: column; gap: 6px;
}
.spv-msg {
  padding: 6px 10px; border-radius: 12px;
  font-size: 10px; font-family: var(--ff-body); font-weight: 500;
  max-width: 82%; line-height: 1.4;
}
.spv-msg.bot {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border-radius: 12px 12px 12px 3px; align-self: flex-start;
}
.spv-msg.user {
  background: #0A6FFF; color: #fff;
  border-radius: 12px 12px 3px 12px; align-self: flex-end;
}
.spv-typing {
  display: flex; gap: 3px; align-items: center;
  padding: 6px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px 12px 12px 3px;
  width: fit-content;
}
.spv-typing span {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  animation: spvDot 1.2s ease-in-out infinite;
}
.spv-typing span:nth-child(2) { animation-delay: 0.2s; }
.spv-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes spvDot {
  0%,60%,100% { transform: scale(1); opacity: 0.45; }
  30% { transform: scale(1.5); opacity: 1; }
}

/* Badge flotante en previews */
.srv-preview-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10,111,255,0.15);
  border-radius: 8px; padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  color: var(--blue); font-family: var(--ff-head);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.srv-preview.ai-prev .srv-preview-badge {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.3);
  color: #22C55E;
}

/* Tags en service cards */
.srv-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 14px 0 6px;
}
.srv-tag {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 11px;
  font-size: 11px; font-weight: 600; color: var(--muted);
  font-family: var(--ff-head); letter-spacing: 0.01em;
  transition: all 0.2s;
}
.srv-card:hover .srv-tag {
  border-color: var(--blue-mid); color: var(--blue);
  background: rgba(10,111,255,0.05);
}

/* — Sector icons: de emoji plano a contenedor estilizado — */
.sector-icon {
  font-size: 1.6rem;
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: background 0.35s var(--ease-spring),
              border-color 0.35s,
              transform 0.4s var(--ease-spring),
              box-shadow 0.35s;
}
.sector-card:hover .sector-icon {
  background: rgba(10,111,255,0.1);
  border-color: rgba(10,111,255,0.3);
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(10,111,255,0.18);
}
.sector-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.sector-card p  { font-size: 13.5px; line-height: 1.65; }

/* — #proceso: fondo con grid subtle — */
#proceso { position: relative; }
#proceso::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,111,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,111,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none; z-index: 0;
}
#proceso > .container { position: relative; z-index: 1; }

/* — Stats band: oscuro con números brillantes — */
#stats-band {
  background: #070B18 !important;
  border-top: none !important;
  border-bottom: none !important;
}
#stats-band::before {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10,111,255,0.07), transparent) !important;
}
#stats-band .stat-divider {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.07), transparent) !important;
}
#stats-band .stat-label { color: rgba(190,210,255,0.4) !important; }

/* — Testimonios: fondo oscuro para coherencia de paleta — */
#testimonios {
  background: #070B18 !important;
  border-top: none !important;
}
#testimonios::before {
  background: radial-gradient(ellipse 50% 60% at 50% -10%, rgba(10,111,255,0.08), transparent) !important;
}
#testimonios .section-tag { color: rgba(120,175,255,0.85) !important; }
#testimonios .section-tag::before { background: rgba(120,175,255,0.45) !important; }
#testimonios .section-title { color: #fff !important; }
.testi-card {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.testi-card:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(10,111,255,0.4) !important;
}
.testi-card .testi-quote { color: rgba(200,215,255,0.75) !important; }
.testi-card .testi-info strong { color: rgba(255,255,255,0.9) !important; }
.testi-card .testi-info span   { color: rgba(150,175,220,0.6) !important; }
.testi-card .testi-author { border-top-color: rgba(255,255,255,0.08) !important; }
.testi-card.testi-featured {
  background: linear-gradient(145deg, rgba(10,111,255,0.3) 0%, rgba(10,80,200,0.25) 100%) !important;
  border-color: rgba(10,111,255,0.4) !important;
  box-shadow: 0 0 0 1px rgba(10,111,255,0.2), 0 20px 60px rgba(10,111,255,0.25) !important;
}

/* — CTA Banner: espectacular, oscuro total con orbs — */
#cta-banner {
  background: #040C1E !important;
  animation: none !important;
  padding: 130px 0 !important;
  overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px); z-index: 0;
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,111,255,0.22) 0%, transparent 70%);
  top: -250px; left: -150px;
  animation: ctaOrb1 14s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  bottom: -150px; right: -80px;
  animation: ctaOrb2 18s ease-in-out infinite alternate;
}
.cta-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  top: 50%; left: 55%;
  animation: ctaOrb3 10s ease-in-out infinite alternate;
}
@keyframes ctaOrb1 { from { transform:translate(0,0); }    to { transform:translate(80px,50px); } }
@keyframes ctaOrb2 { from { transform:translate(0,0); }    to { transform:translate(-60px,-40px); } }
@keyframes ctaOrb3 { from { transform:translate(-50%,-50%) scale(1); } to { transform:translate(-50%,-50%) scale(1.35); } }

#cta-banner .container { position: relative; z-index: 2; }
#cta-banner::after { z-index: 1; }

#cta-banner .section-tag      { color: rgba(130,180,255,0.9) !important; }
#cta-banner .section-tag::before { background: rgba(130,180,255,0.5) !important; }
#cta-banner .section-title    { color: #fff !important; font-size: clamp(2rem,4vw,3.2rem) !important; }
#cta-banner .section-title em {
  background: linear-gradient(90deg,#60A5FA 0%,#00D4FF 40%,#A78BFA 80%,#60A5FA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradientFlow 5s linear infinite;
  font-style: normal;
}
#cta-banner p   { color: rgba(180,205,255,0.65) !important; font-size: 1.05rem !important; }
#cta-banner small { color: rgba(255,255,255,0.28) !important; letter-spacing: 0.03em; }

.cta-actions {
  display: flex; align-items: center; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin: 32px 0 18px;
}
.btn-ghost-white {
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-head); font-weight: 600;
  font-size: 15px; padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-white:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* — Footer: oscuro premium — */
#footer {
  background: #040C1E !important;
}
#footer::before { opacity: 0.4 !important; }
#footer .footer-brand p { color: rgba(150,180,230,0.5) !important; }
#footer h5 {
  color: rgba(255,255,255,0.9) !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}
#footer .footer-col ul li { margin-bottom: 10px; }
#footer .footer-col ul a { color: rgba(150,180,230,0.55) !important; font-size: 14px !important; transition: color 0.2s; }
#footer .footer-col ul a:hover { color: #fff !important; }
#footer .footer-bottom { border-top-color: rgba(255,255,255,0.06) !important; }
#footer .footer-bottom p { color: rgba(255,255,255,0.18) !important; }

/* Social links en footer */
.footer-social {
  display: flex; gap: 10px; margin-top: 18px;
}
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45) !important;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease-spring) !important;
}
.footer-social a:hover {
  background: rgba(10,111,255,0.18) !important;
  border-color: rgba(10,111,255,0.45) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

/* — Focus states accesibles — */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px;
}

/* — Nav: indicador activo con línea gradiente — */
.nav-links a { position: relative; }
.nav-links a.active {
  color: var(--blue) !important;
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 8px; right: 8px;
  height: 2px; border-radius: 2px;
  background: var(--grad);
}

/* — Responsive V4 — */
@media (max-width: 768px) {
  .cta-orb { display: none; }
  #cta-banner { padding: 80px 0 !important; }
  .cta-actions { flex-direction: column; }
  .srv-preview { margin: -20px -20px 20px; }
  #testimonios .testi-grid { max-width: 440px; }
}

/* ═══════════════════════════════════════════════════════════════
   FIX DE HOVER — Legibilidad garantizada en todos los cards
   Reemplazamos el gradiente border (que sangraba al fondo) por
   un box-shadow + border-color limpio y sin artefactos.
═══════════════════════════════════════════════════════════════ */
.srv-card::after    { content: none !important; }
.sector-card::after { content: none !important; }

.srv-card:hover {
  background: var(--bg-card) !important;
  border-color: rgba(10,111,255,0.4) !important;
  box-shadow: 0 0 0 1px rgba(10,111,255,0.15),
              0 24px 60px rgba(10,111,255,0.14),
              0 4px 16px rgba(0,0,0,0.05) !important;
}
.srv-card:hover .srv-preview { filter: brightness(1.02); }

.sector-card:hover {
  background: #fff !important;
  border-color: rgba(10,111,255,0.3) !important;
  box-shadow: 0 12px 40px rgba(10,111,255,0.1),
              0 2px 8px rgba(0,0,0,0.04) !important;
}

/* ═══════════════════════════════════════════════════════════════
   NOSOTROS — Founders section
═══════════════════════════════════════════════════════════════ */
.founders-section {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; gap: 24px; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.3s;
}
.founder-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.founder-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(10,111,255,0.1), 0 4px 16px rgba(0,0,0,0.06); border-color: var(--blue-mid); }
.founder-card:hover::before { opacity: 1; }

.founder-av-wrap { flex-shrink: 0; }
.founder-av {
  width: 76px; height: 76px; border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 800; font-size: 22px;
  color: #fff; letter-spacing: -0.03em;
}

.founder-info { flex: 1; min-width: 0; }
.founder-info h3 { font-family: var(--ff-head); font-weight: 800; font-size: 1.3rem; color: var(--text); margin-bottom: 6px; }

.founder-role {
  display: inline-flex; align-items: center;
  font-size: 11.5px; font-weight: 700; font-family: var(--ff-head);
  color: var(--blue); background: rgba(10,111,255,0.08);
  border: 1px solid rgba(10,111,255,0.18);
  border-radius: 50px; padding: 3px 11px; margin-bottom: 14px;
}
.founder-info > p { font-size: 14px; color: var(--muted); line-height: 1.72; margin-bottom: 16px; }

.founder-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.founder-tag {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 50px; padding: 3px 11px;
  font-size: 11px; font-weight: 600; color: var(--muted); font-family: var(--ff-head);
  transition: all 0.2s;
}
.founder-card:hover .founder-tag { border-color: var(--blue-mid); color: var(--blue); background: rgba(10,111,255,0.04); }

/* Mini stats row */
.about-stats-band {
  padding: 52px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  text-align: center;
}
.about-stat { padding: 0 20px; position: relative; }
.about-stat:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-mid), transparent);
}
.about-stat-num {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(2rem,3.5vw,2.8rem); line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 6px;
}
.about-stat-label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   CONTACTO — Pasos del proceso + FAQ
═══════════════════════════════════════════════════════════════ */
.contact-steps-section {
  padding: 80px 0 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.cs-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  margin-top: 52px; position: relative;
}
.cs-grid::before {
  content: '';
  position: absolute; top: 24px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-mid), rgba(10,111,255,0.2), var(--blue-mid));
}
.cs-step { text-align: center; padding: 0 28px; }
.cs-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(10,111,255,0.1); border: 2px solid rgba(10,111,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 13px; font-weight: 700;
  color: var(--blue); margin: 0 auto 20px;
  position: relative; z-index: 1; background: var(--bg-alt);
  border-color: var(--blue-mid);
}
.cs-step h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; margin-bottom: 10px; }
.cs-step p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* FAQ Accordion */
.faq-section {
  padding: 90px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 52px; max-width: 900px; margin-left: auto; margin-right: auto;
}
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] { border-color: var(--blue-mid); box-shadow: 0 4px 16px rgba(10,111,255,0.08); }
.faq-item summary {
  cursor: pointer; padding: 18px 20px;
  font-family: var(--ff-head); font-weight: 600; font-size: 14.5px;
  color: var(--text); list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 22px; font-weight: 300; line-height: 1;
  color: var(--blue); flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-body { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════
   WEB.HTML — Resultados + Stack tecnológico
═══════════════════════════════════════════════════════════════ */
.results-section {
  padding: 100px 0;
  background: #070B18;
  border-top: none;
  position: relative; overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(10,111,255,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.results-section .section-tag { color: rgba(120,175,255,0.85); }
.results-section .section-tag::before { background: rgba(120,175,255,0.45); }
.results-section .section-title { color: #fff; }
.results-section .section-sub { color: rgba(190,210,255,0.55); }
.results-section > .container { position: relative; z-index: 1; }

.results-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px;
}
.result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, background 0.3s;
}
.result-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); border-color: rgba(10,111,255,0.35); }
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.result-card:hover::before { opacity: 1; }

.result-sector {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; font-family: var(--ff-head);
  color: rgba(150,185,255,0.7); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 20px;
}
.result-sector-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.result-metrics { display: flex; gap: 20px; margin-bottom: 18px; }
.result-metric { }
.result-metric-num {
  font-family: var(--ff-head); font-size: 1.9rem; font-weight: 800; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.result-metric-label { font-size: 11px; color: rgba(190,210,255,0.5); margin-top: 3px; }
.result-card h4 { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 8px; }
.result-card p  { font-size: 13.5px; color: rgba(190,210,255,0.55); line-height: 1.65; }

/* Tech stack band */
.tech-stack-section {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-stack-label {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--ff-head); margin-bottom: 24px;
}
.tech-chips {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.tech-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--text); font-family: var(--ff-head);
  display: flex; align-items: center; gap: 7px;
  transition: all 0.25s var(--ease-spring);
}
.tech-chip:hover { border-color: var(--blue-mid); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tech-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* Responsive nuevas secciones */
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .cs-grid { grid-template-columns: 1fr; gap: 28px; }
  .cs-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .founder-card { flex-direction: column; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   MODO OSCURO — Dark mode toggle
═══════════════════════════════════════════════════════════════ */

[data-theme="dark"] {
  --bg:         #0D1117;
  --bg-alt:     #161B22;
  --bg-card:    #1C2128;
  --text:       #E6EDF3;
  --muted:      #8B949E;
  --dim:        #6E7681;
  --border:     rgba(240,246,252,0.1);
  --border-mid: rgba(240,246,252,0.18);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.4);
  --shadow:     0 4px 20px rgba(0,0,0,0.55);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.65);
  --blue-light: rgba(10,111,255,0.2);
  --blue-mid:   rgba(10,111,255,0.45);
}

/* Nav */
[data-theme="dark"] #nav { background: rgba(13,17,23,0.97) !important; border-bottom-color: rgba(255,255,255,0.07) !important; }
[data-theme="dark"] .nav-links a { color: rgba(230,237,243,0.65) !important; }
[data-theme="dark"] .nav-links a:hover { color: #fff !important; background: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .logo-wordmark { color: #fff !important; }

/* Mobile menu */
[data-theme="dark"] #mobile-menu { background: #161B22 !important; }
[data-theme="dark"] #mobile-menu ul a { color: rgba(255,255,255,0.75) !important; }

/* Splash */
[data-theme="dark"] #splash { background: #0D1117 !important; }

/* Feature blocks (secciones blancas/grises) */
[data-theme="dark"] .feature-block { background: var(--bg) !important; }
[data-theme="dark"] .about-story    { background: var(--bg) !important; }
[data-theme="dark"] section[style*="background:var(--bg-alt)"] { background: var(--bg-alt) !important; }

/* Service cards */
[data-theme="dark"] .srv-card { background: var(--bg-card) !important; }
[data-theme="dark"] .srv-preview {
  background: linear-gradient(135deg, rgba(10,111,255,0.14) 0%, rgba(124,58,237,0.1) 100%) !important;
}
[data-theme="dark"] .spv-browser { background: #0D1117 !important; border-color: rgba(255,255,255,0.08) !important; }
[data-theme="dark"] .spv-b-dots  { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .spv-preview-badge { background: rgba(30,40,60,0.95) !important; color: #60A5FA !important; }

/* Process stepper */
[data-theme="dark"] .ps-tab { border-left-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ps-tab.active { border-left-color: var(--blue); background: rgba(10,111,255,0.07) !important; }
[data-theme="dark"] .ps-panel-inner { background: var(--bg-card) !important; border-color: rgba(255,255,255,0.08) !important; }
[data-theme="dark"] .psp-booking .psc { color: rgba(230,237,243,0.7); }
[data-theme="dark"] .psp-slot { border-color: rgba(255,255,255,0.12); color: rgba(230,237,243,0.8); }
[data-theme="dark"] .psp-brow-top { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.08) !important; }
[data-theme="dark"] .psp-browser-mini { background: #0D1117 !important; border-color: rgba(255,255,255,0.08) !important; }
[data-theme="dark"] .psp-metric-card { background: rgba(255,255,255,0.04) !important; }
[data-theme="dark"] .psp-google-box { background: #1C2128 !important; border-color: rgba(255,255,255,0.08) !important; }
[data-theme="dark"] .psp-gb-text strong { color: #60A5FA !important; }

/* Sector cards */
[data-theme="dark"] .sector-card { background: var(--bg-card) !important; }

/* Valor cards */
[data-theme="dark"] .value-card { background: var(--bg-card) !important; }

/* Diff cards */
[data-theme="dark"] .diff-card { background: var(--bg-card) !important; }

/* Score rings */
[data-theme="dark"] .score-ring-wrap { background: var(--bg-card) !important; }
[data-theme="dark"] .score-ring-bg   { stroke: rgba(255,255,255,0.08) !important; }

/* Proc flow (web.html) */
[data-theme="dark"] .proc-step { background: var(--bg-card) !important; }

/* Browser mockup (hero) */
[data-theme="dark"] .browser-mock { box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 50px 120px rgba(0,0,0,0.7) !important; }
[data-theme="dark"] .browser-chrome { background: #1C2128 !important; border-color: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .browser-addr { background: #0D1117 !important; border-color: rgba(255,255,255,0.08) !important; color: rgba(255,255,255,0.4) !important; }
[data-theme="dark"] .browser-viewport { background: #161B22 !important; }
[data-theme="dark"] .mw-hero-section { background: linear-gradient(135deg, rgba(10,111,255,0.15), rgba(124,58,237,0.12)) !important; }
[data-theme="dark"] .mw-nav { background: #1C2128; border-color: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .mw-cards-row { background: #161B22 !important; }
[data-theme="dark"] .mw-feat-card { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .mw-card-inner { background: #1C2128 !important; box-shadow: none !important; }
[data-theme="dark"] .hero-float { background: rgba(30,43,65,0.8) !important; }

/* Packages */
[data-theme="dark"] .pkg-card { background: var(--bg-card) !important; }
[data-theme="dark"] .pkg-card.featured { background: var(--blue) !important; }

/* Forms */
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #E6EDF3 !important;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: rgba(139,148,158,0.7) !important; }
[data-theme="dark"] .booking-form-wrap { background: var(--bg-card) !important; }

/* Contact steps */
[data-theme="dark"] .contact-steps-section { background: var(--bg-alt) !important; }
[data-theme="dark"] .cs-num { background: var(--bg-alt) !important; }

/* FAQ */
[data-theme="dark"] .faq-section { background: var(--bg) !important; }
[data-theme="dark"] .faq-item { background: var(--bg-card) !important; }
[data-theme="dark"] .faq-body { color: rgba(139,148,158,0.9); }

/* About stats band */
[data-theme="dark"] .about-stats-band { background: var(--bg-alt) !important; }

/* Phone chat demo */
[data-theme="dark"] .phone-frame { box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 50px 120px rgba(0,0,0,0.7) !important; }

/* Packages section inline */
[data-theme="dark"] .packages-section { background: var(--bg-alt) !important; }

/* — Theme toggle button — */
.theme-toggle {
  width: 36px; height: 36px; border: none;
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 9px; color: var(--muted);
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--bg-alt); color: var(--text); }

.icon-moon { display: block; }
.icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .theme-toggle { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .theme-toggle:hover { background: rgba(255,255,255,0.07); color: #fff; }
#nav.hero-top .theme-toggle { color: rgba(255,255,255,0.55); }
#nav.hero-top .theme-toggle:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER — RGPD
═══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  width: min(660px, calc(100vw - 32px));
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 18px 22px;
  z-index: 9990;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  transition: transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
#cookie-banner.cb-show {
  transform: translateX(-50%) translateY(0);
}
.cb-text {
  flex: 1; min-width: 200px;
  font-size: 13.5px; color: rgba(200,215,255,0.75); line-height: 1.6;
  font-family: var(--ff-body);
}
.cb-text a { color: #60A5FA; text-decoration: underline; }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cb-btn {
  padding: 9px 18px; border-radius: 50px; cursor: pointer;
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  border: none; transition: all 0.2s var(--ease-spring);
  white-space: nowrap;
}
.cb-btn.primary { background: var(--blue); color: #fff; }
.cb-btn.primary:hover { background: #0060E6; transform: translateY(-1px); }
.cb-btn.secondary {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}
.cb-btn.secondary:hover { background: rgba(255,255,255,0.13); color: #fff; }
@media (max-width: 500px) {
  #cookie-banner { bottom: 16px; padding: 16px; }
  .cb-actions { width: 100%; justify-content: stretch; }
  .cb-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   DARK MODE FIX v2 — Packages/Pricing + elementos pendientes
═══════════════════════════════════════════════════════════════ */

/* Packages section */
[data-theme="dark"] .packages-grid { }
[data-theme="dark"] .pkg-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
[data-theme="dark"] .pkg-card h3 { color: var(--text) !important; }
[data-theme="dark"] .pkg-card p  { color: var(--muted) !important; }
[data-theme="dark"] .pkg-name    { color: var(--muted) !important; }
[data-theme="dark"] .pkg-list li { color: var(--muted) !important; }
[data-theme="dark"] .pkg-list li::before { color: var(--blue) !important; }

/* Featured card: sutil en modo oscuro para mantener legibilidad */
[data-theme="dark"] .pkg-card.featured {
  background: rgba(10,111,255,0.1) !important;
  border-color: rgba(10,111,255,0.45) !important;
  box-shadow: 0 0 0 1px rgba(10,111,255,0.25), 0 8px 32px rgba(10,111,255,0.12) !important;
}
[data-theme="dark"] .pkg-card.featured h3 { color: #fff !important; }
[data-theme="dark"] .pkg-card.featured p  { color: rgba(200,215,255,0.7) !important; }
[data-theme="dark"] .pkg-card.featured .pkg-name { color: rgba(100,160,255,0.8) !important; }
[data-theme="dark"] .pkg-card.featured .pkg-list li { color: rgba(200,215,255,0.75) !important; }
[data-theme="dark"] .pkg-card.featured .pkg-list li::before { color: #60A5FA !important; }
[data-theme="dark"] .pkg-card.featured .btn-primary { background: #0A6FFF !important; }
[data-theme="dark"] .pkg-card.featured .btn-outline {
  color: rgba(200,215,255,0.8) !important;
  border-color: rgba(200,215,255,0.3) !important;
}
[data-theme="dark"] .pkg-card.featured::before { background: #0A6FFF !important; }

/* Section with inline bg-alt */
[data-theme="dark"] section[style*="background:var(--bg-alt)"],
[data-theme="dark"] div[style*="background:var(--bg-alt)"] {
  background: var(--bg-alt) !important;
}
[data-theme="dark"] section[style*="background:#fff"] {
  background: var(--bg) !important;
}

/* Values grid */
[data-theme="dark"] .value-card h5 { color: var(--text) !important; }
[data-theme="dark"] .value-card p  { color: var(--muted) !important; }

/* Testimonials in light mode (index.html) */
[data-theme="dark"] .testi-card.testi-featured .testi-author { border-top-color: rgba(255,255,255,0.15) !important; }

/* Phone mockup colors in dark mode */
[data-theme="dark"] .phone-mockup-screen { background: #161B22 !important; }
[data-theme="dark"] .pm-hero-area { background: linear-gradient(135deg,rgba(10,111,255,0.2),rgba(124,58,237,0.15)) !important; }
[data-theme="dark"] .pm-card { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.06) !important; }

/* About story section inline colors */
[data-theme="dark"] .about-text h2,
[data-theme="dark"] .about-text p { color: inherit; }

/* Contact info trust items */
[data-theme="dark"] div[style*="background:var(--bg-alt)"][style*="border:1px solid var(--border)"] {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.08) !important;
}

/* Process numbers in contacto */
[data-theme="dark"] .cs-num {
  background: var(--bg-card) !important;
  border-color: rgba(10,111,255,0.4) !important;
}
[data-theme="dark"] .cs-step h4 { color: var(--text) !important; }
[data-theme="dark"] .cs-step p  { color: var(--muted) !important; }
[data-theme="dark"] .cs-grid::before { opacity: 0.3; }

/* Results section (web.html) */
[data-theme="dark"] .result-card h4 { color: rgba(240,246,252,0.9) !important; }
[data-theme="dark"] .result-card p  { color: rgba(190,210,255,0.5) !important; }

/* Feature list items */
[data-theme="dark"] .feature-list li { color: var(--text) !important; }
[data-theme="dark"] .feature-list li::before { background: var(--blue) !important; }

/* Srv list */
[data-theme="dark"] .srv-list li { color: var(--muted) !important; }
[data-theme="dark"] .srv-link { color: var(--blue) !important; }

/* Sector cards text */
[data-theme="dark"] .sector-card h4 { color: var(--text) !important; }
[data-theme="dark"] .sector-card p  { color: var(--muted) !important; }

/* Step numbers (index.html process) */
[data-theme="dark"] .step h4 { color: var(--text) !important; }
[data-theme="dark"] .step p  { color: var(--muted) !important; }
[data-theme="dark"] .process-steps::before { opacity: 0.3; }

/* ══════════════════════════════════════════════════════════════
   FINAL VISUAL POLISH — Pre-launch
   Tipografía, 3D, micro-interactions, UX, accesibilidad
══════════════════════════════════════════════════════════════ */

/* — Tipografía mejorada — */
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { letter-spacing: -0.025em; }

/* — Browser mockup 3D perspective (efecto premium Stripe/Linear) — */
.hero-visual { perspective: 1400px; perspective-origin: 60% 40%; }
.hero-visual .browser-mock {
  transform: rotateY(-14deg) rotateX(5deg) scale(0.95);
  transition: transform 0.8s var(--ease-spring);
  will-change: transform;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 60px 140px rgba(0,0,0,0.6),
    0 20px 40px rgba(0,0,0,0.3) !important;
}
.hero-visual:hover .browser-mock {
  transform: rotateY(-6deg) rotateX(2deg) scale(0.97);
}
@media (max-width: 900px) {
  .hero-visual .browser-mock { transform: none !important; }
}

/* — Nav: glassmorphism al hacer scroll — */
#nav {
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled:not(.hero-top) {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(22px) saturate(1.9);
  -webkit-backdrop-filter: blur(22px) saturate(1.9);
  box-shadow: 0 1px 32px rgba(0,0,0,0.08);
}
[data-theme="dark"] #nav.scrolled:not(.hero-top) {
  background: rgba(13,17,23,0.9) !important;
  backdrop-filter: blur(22px) saturate(1.5);
}

/* — Nav hover underline slide — */
.nav-links a:not(.active) {
  position: relative;
}
.nav-links a:not(.active)::before {
  content: '';
  position: absolute; bottom: 2px; left: 8px; right: 8px;
  height: 2px; border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease-spring);
}
.nav-links a:not(.active):hover::before { transform: scaleX(1); transform-origin: left; }

/* — Hero title "venda." gradient animado — */
.hero-title em {
  background: linear-gradient(90deg, #60A5FA 0%, #00D4FF 35%, #A78BFA 70%, #60A5FA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGradientFlow 4s linear infinite;
  font-style: normal;
}

/* — Hero floating badges glassmorphism mejorado — */
.hero-float {
  backdrop-filter: blur(28px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.5) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

/* — Hero: scroll hint (flecha que bota) — */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 2; opacity: 0;
  animation: scrollHintAppear 1s ease 3s forwards, scrollHintBounce 2s ease-in-out 3s infinite;
  cursor: pointer;
}
@keyframes scrollHintAppear { from { opacity:0; } to { opacity:0.45; } }
@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.25; }
}
.scroll-hint svg { color: rgba(255,255,255,0.8); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.scroll-hint span {
  font-family: var(--ff-head); font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 768px) { .scroll-hint { display: none; } }

/* — Section titles: em en gradiente — */
.section-title em, h2 em {
  background: linear-gradient(90deg, var(--blue), #00D4FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-style: normal;
}

/* — Featured package: pulso de brillo — */
@keyframes featPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(10,111,255,0.3), 0 8px 32px rgba(10,111,255,0.14); }
  50%       { box-shadow: 0 0 0 3px rgba(10,111,255,0.15), 0 16px 48px rgba(10,111,255,0.24); }
}
.pkg-card.featured { animation: featPulse 3.5s ease-in-out infinite; }

/* — Scroll-to-top button — */
#btn-top {
  position: fixed; bottom: 96px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(10,111,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(10,111,255,0.5);
  border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 997;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.35s var(--ease-spring), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(10,111,255,0.3);
  pointer-events: none;
}
#btn-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#btn-top:hover {
  background: var(--blue);
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 30px rgba(10,111,255,0.45);
}

/* — Button ripple — */
.btn-ripple {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(90); opacity: 0; } }

/* — Service cards: lift más dramático — */
.srv-card:hover { transform: translateY(-10px) !important; }

/* — Sector cards: icon rotation on hover — */
.sector-card:hover .sector-icon { transform: scale(1.12) rotate(-8deg); }

/* — Mobile menu: slide suave mejorado — */
#mobile-menu {
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-expo), opacity 0.3s ease;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* — Form inputs: focus glow — */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(10,111,255,0.15) !important;
  border-color: var(--blue) !important;
  outline: none;
}

/* — Scroll progress bar: thicker & gradient — */
#scroll-fill {
  background: linear-gradient(90deg, #0A6FFF, #00D4FF, #7C3AED) !important;
}

/* — Better section tags — */
.section-tag {
  font-size: 11.5px !important;
  letter-spacing: 0.08em !important;
}

/* — Diff cards: subtle gradient border top on hover — */
.diff-card:hover { transform: translateY(-7px) !important; }

/* — Process stepper active tab — */
.ps-tab.active .ps-num { color: var(--blue); font-weight: 700; }

/* — Testi featured card hover — */
.testi-card.testi-featured:hover {
  transform: translateY(-8px) scale(1.01) !important;
}

/* — Footer links: smooth underline — */
#footer .footer-col ul a {
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
#footer .footer-col ul a:hover { padding-left: 4px; }

/* — Print styles — */
@media print {
  #nav, #mobile-menu, .whatsapp-float, #cookie-banner,
  #btn-top, #scroll-progress, .scroll-hint { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a { color: #000 !important; text-decoration: underline; }
}

/* — Dark mode scroll-to-top — */
[data-theme="dark"] #btn-top {
  background: rgba(10,111,255,0.75);
  border-color: rgba(10,111,255,0.6);
  box-shadow: 0 4px 18px rgba(10,111,255,0.25);
}

/* ══════════════════════════════════════════════════════════════
   VISUAL UPGRADE — Imágenes / Ilustraciones / Diagramas
══════════════════════════════════════════════════════════════ */

/* ── Automation Flow Diagram ── */
.aflow-section {
  background: #070B18;
  padding: 0 0 80px;
  position: relative; overflow: hidden;
}
.aflow-section::before {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 300px;
  background: radial-gradient(ellipse, rgba(10,111,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.aflow-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px; padding: 48px 40px 40px;
  position: relative; overflow: hidden;
}
.aflow-wrapper::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,111,255,0.6), rgba(0,212,255,0.4), transparent);
}
.aflow-header { text-align: center; margin-bottom: 44px; position: relative; z-index: 1; }
.aflow-header .section-tag { color: rgba(120,175,255,0.8); margin-bottom: 10px; }
.aflow-header p { color: rgba(190,210,255,0.5); font-size: 14px; }

.aflow-nodes {
  display: flex; align-items: center; justify-content: center;
  gap: 0; position: relative; z-index: 1;
}
.aflow-node {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 0 0 auto; width: 130px;
  position: relative;
}
.aflow-node:hover .aflow-icon-box { transform: translateY(-4px); }

.aflow-icon-box {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.aflow-node.ai .aflow-icon-box {
  background: rgba(10,111,255,0.18);
  border-color: rgba(10,111,255,0.45);
  box-shadow: 0 0 36px rgba(10,111,255,0.28);
  color: #60A5FA;
}
.aflow-node.ok .aflow-icon-box {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.4);
  color: #22C55E;
}
.aflow-node.wa .aflow-icon-box {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.35);
  color: #25D366;
}
.aflow-step-num {
  font-family: var(--ff-mono); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.25); letter-spacing: 0.08em;
}
.aflow-title {
  font-family: var(--ff-head); font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3;
}
.aflow-subtitle { font-size: 10.5px; color: rgba(255,255,255,0.32); text-align: center; }

.aflow-connector {
  flex: 1; min-width: 36px; max-width: 70px;
  height: 1.5px; background: rgba(255,255,255,0.07);
  position: relative; margin-bottom: 30px; border-radius: 2px;
}
.aflow-pulse-dot {
  position: absolute; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #0A6FFF;
  box-shadow: 0 0 10px rgba(10,111,255,0.9);
  transform: translate(-4px, -4px);
  animation: afdMove 2.4s ease-in-out infinite;
}
.aflow-connector:nth-child(2) .aflow-pulse-dot { animation-delay: 0.6s; }
.aflow-connector:nth-child(4) .aflow-pulse-dot { animation-delay: 1.2s; }
.aflow-connector:nth-child(6) .aflow-pulse-dot { animation-delay: 1.8s; }
@keyframes afdMove {
  0%   { left: 0%;   opacity: 0;  transform: translate(-4px,-4px) scale(0.5); }
  15%  { opacity: 1; transform: translate(-4px,-4px) scale(1); }
  85%  { opacity: 1; }
  100% { left: 100%; opacity: 0; transform: translate(-4px,-4px) scale(0.5); }
}

.aflow-live-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 36px;
  font-size: 12px; color: rgba(190,210,255,0.4);
  font-family: var(--ff-head); font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 24px;
}
.aflow-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22C55E; flex-shrink: 0;
  animation: pspLivePulse 2s infinite;
}

@media (max-width: 700px) {
  .aflow-nodes { flex-direction: column; gap: 0; }
  .aflow-connector { width: 1.5px; height: 36px; min-width: auto; max-width: auto; margin-bottom: 0; margin-right: 30px; }
  .aflow-pulse-dot { top: 0; left: 50%; animation: afdMoveV 2.4s ease-in-out infinite; }
  @keyframes afdMoveV { 0%{top:0;opacity:0} 15%{opacity:1} 85%{opacity:1} 100%{top:100%;opacity:0} }
}

/* ── Lead Funnel (seguimiento section) ── */
.lead-funnel {
  display: flex; flex-direction: column; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.lf-step {
  padding: 16px 20px; position: relative;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.lf-step:last-child { border-bottom: none; }
.lf-step:hover { background: var(--bg-alt); }
.lf-step.lf-success { background: rgba(34,197,94,0.04); }
.lf-bar-track {
  flex: 1; height: 6px; background: var(--bg-alt);
  border-radius: 4px; overflow: hidden; min-width: 80px;
}
.lf-bar-fill {
  height: 100%; border-radius: 4px;
  transition: width 1.5s var(--ease-expo);
  background: linear-gradient(90deg, var(--blue), #00D4FF);
}
.lf-step.lf-success .lf-bar-fill { background: linear-gradient(90deg, #22C55E, #34D399); }
.lf-step-label {
  display: flex; align-items: center; gap: 8px; min-width: 180px;
}
.lf-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.lf-dot.blue   { background: var(--blue); }
.lf-dot.orange { background: #F59E0B; }
.lf-dot.green  { background: #22C55E; }
.lf-step-text { font-size: 13px; font-weight: 600; font-family: var(--ff-head); color: var(--text); }
.lf-count { font-family: var(--ff-head); font-weight: 800; font-size: 1.2rem; color: var(--text); min-width: 90px; text-align: right; }
.lf-step.lf-success .lf-count { color: #16A34A; }

/* ── Integrations grid ── */
.integrations-section {
  padding: 80px 0;
  background: #070B18;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.integrations-section .section-tag { color: rgba(120,175,255,0.8); }
.integrations-section .section-tag::before { background: rgba(120,175,255,0.45); }
.integrations-section .section-title { color: #fff; }
.integrations-section .section-sub   { color: rgba(190,210,255,0.5); }

.int-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  margin-top: 52px;
}
.int-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: default;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-spring);
}
.int-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-5px);
}
.int-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.int-name { font-family: var(--ff-head); font-weight: 600; font-size: 12.5px; color: rgba(255,255,255,0.7); text-align: center; }
.int-desc { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.4; }

@media (max-width: 768px) { .int-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .int-grid { grid-template-columns: 1fr 1fr; } }

/* ── Before/After visual (web.html) ── */
.before-after {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px;
  align-items: center;
}
.ba-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ba-card-header {
  padding: 6px 12px; font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.ba-before .ba-card-header { background: #FEF2F2; color: #DC2626; border-bottom: 1px solid #FECACA; }
.ba-after  .ba-card-header { background: rgba(10,111,255,0.08); color: var(--blue); border-bottom: 1px solid var(--blue-mid); }
.ba-card-body { background: var(--bg-card); padding: 14px; }

.ba-old-nav { display: flex; gap: 6px; margin-bottom: 10px; }
.ba-old-logo { width: 28px; height: 8px; background: #D1D5DB; border-radius: 3px; }
.ba-old-link { width: 22px; height: 6px; background: #E5E7EB; border-radius: 3px; margin-top: 1px; }
.ba-old-hero { height: 40px; background: linear-gradient(90deg,#F3F4F6,#E5E7EB); border-radius: 6px; margin-bottom: 8px; }
.ba-old-hero-text { height: 7px; background: #9CA3AF; border-radius: 3px; width: 70%; margin-bottom: 4px; }
.ba-old-hero-text.sm { width: 50%; }
.ba-old-btn  { height: 18px; width: 60px; background: #9CA3AF; border-radius: 4px; margin-top: 6px; }
.ba-old-body { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.ba-old-line { height: 5px; background: #E5E7EB; border-radius: 3px; }

.ba-divider {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.ba-arrow-icon { font-size: 1.5rem; color: var(--blue); }
.ba-divider-label { font-family: var(--ff-head); font-size: 9px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* The new site preview reuses existing mw-* classes from hero browser */

/* ── Background: circuit dots pattern on #proceso ── */
.ps-showcase { position: relative; }

/* ── Visual cards for index sectors (emoji upgrade) ── */
.sector-card { position: relative; }
.sector-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 0 var(--r-lg) 0 80px;
  background: var(--blue-light);
  opacity: 0; transition: opacity 0.35s;
}
.sector-card:hover::before { opacity: 1; }

/* ── Floating stats pill on services section ── */
.srv-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  color: #16A34A; padding: 5px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700; font-family: var(--ff-head);
  margin-bottom: 28px;
}
.srv-live-dot-green { width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: pspLivePulse 2s infinite; }

/* ── Image placeholder: hero visual label ── */
.visual-label {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(10,111,255,0.12); border: 1px solid rgba(10,111,255,0.25);
  border-radius: 50px; padding: 4px 14px;
  font-size: 11px; font-weight: 700; color: #60A5FA; font-family: var(--ff-head);
}

/* ══════════════════════════════════════════════════════════════
   DARK MODE FIX v3 — Contraste de texto pendiente
══════════════════════════════════════════════════════════════ */

/* Process stepper (index "Cómo trabajamos") — títulos de tabs */
[data-theme="dark"] .ps-tab-content strong { color: #E6EDF3 !important; }
[data-theme="dark"] .ps-tab-content p       { color: #8B949E !important; }
[data-theme="dark"] .ps-num                 { color: #8B949E; }
[data-theme="dark"] .ps-tab.active .ps-num  { color: #60A5FF; }
[data-theme="dark"] .ps-tab                 { border-left-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .ps-tab:hover           { background: rgba(255,255,255,0.03); }
[data-theme="dark"] .ps-tab.active          { background: rgba(10,111,255,0.1); border-left-color: #0A6FFF; }

/* Service tags — fondo adaptado a oscuro */
[data-theme="dark"] .srv-tag {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #8B949E !important;
}
[data-theme="dark"] .srv-card:hover .srv-tag {
  border-color: rgba(96,165,255,0.4) !important;
  color: #60A5FF !important;
  background: rgba(10,111,255,0.1) !important;
}

/* Founder tags + package name pills */
[data-theme="dark"] .founder-tag,
[data-theme="dark"] .pkg-card .pkg-name {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

/* Booking calendar dentro del stepper visual */
[data-theme="dark"] .psp-b-head strong { color: #E6EDF3; }
[data-theme="dark"] .psp-cal-month      { color: #E6EDF3; }

/* Section titles / subtítulos por defecto */
[data-theme="dark"] .section-title { color: #E6EDF3; }
[data-theme="dark"] .stat-label    { color: rgba(190,210,255,0.45) !important; }
[data-theme="dark"] .proc-body strong { color: #E6EDF3 !important; }

/* ══════════════════════════════════════════════════════════════
   ESTRUCTURA v5 — Hero claro, sección Resultados, ritmo de color
══════════════════════════════════════════════════════════════ */

/* ── Hero: pills de servicios (comunican el "qué" al instante) ── */
.hero-services {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 18px 0 22px;
}
.hero-svc-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(220,232,255,0.92);
  padding: 7px 14px; border-radius: 50px;
  font-family: var(--ff-head); font-weight: 600; font-size: 13px;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-spring);
}
.hero-svc-pill svg { color: #60A5FF; }
.hero-svc-pill:hover {
  background: rgba(10,111,255,0.16);
  border-color: rgba(96,165,255,0.4);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .hero-svc-pill { font-size: 12px; padding: 6px 12px; }
}

/* ── Sección RESULTADOS (clara, con imagen real) ── */
#resultados {
  padding: 84px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-layout {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: center;
}
.results-info .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; }
.results-info .section-tag { margin-bottom: 14px; }

.results-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.res-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 18px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
}
.res-metric:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-mid); }
.res-metric-num {
  font-family: var(--ff-head); font-weight: 800; font-size: 1.9rem; line-height: 1;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.res-metric-label { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

.results-visual { position: relative; }
.results-img-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
}
.results-img-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.results-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,111,255,0.12), transparent 50%);
  pointer-events: none;
}
.results-img-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px; padding: 7px 14px;
  font-family: var(--ff-head); font-weight: 700; font-size: 12px; color: #16A34A;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.res-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #22C55E; animation: pspLivePulse 2s infinite; }

[data-theme="dark"] #resultados { background: var(--bg-alt); }
[data-theme="dark"] .res-metric { background: var(--bg-card); }
[data-theme="dark"] .res-metric-label { color: var(--muted); }
[data-theme="dark"] .results-img-badge { background: rgba(28,33,40,0.95); border-color: rgba(255,255,255,0.1); }

@media (max-width: 880px) {
  .results-layout { grid-template-columns: 1fr; gap: 36px; }
  .results-visual { order: -1; }
}
@media (max-width: 460px) {
  .results-metrics { grid-template-columns: 1fr 1fr; gap: 10px; }
  .res-metric { padding: 14px 14px; }
  .res-metric-num { font-size: 1.6rem; }
}

/* ── TESTIMONIOS → ahora CLARO (rompe la racha de secciones oscuras) ── */
#testimonios {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
}
#testimonios::before {
  background: radial-gradient(ellipse 50% 60% at 50% -10%, rgba(10,111,255,0.05), transparent) !important;
}
#testimonios .section-tag    { color: var(--blue) !important; }
#testimonios .section-tag::before { background: rgba(10,111,255,0.4) !important; }
#testimonios .section-title  { color: var(--text) !important; }
.testi-card {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
}
.testi-card:hover {
  background: var(--bg-card) !important;
  border-color: var(--blue-mid) !important;
}
.testi-card .testi-quote      { color: var(--text) !important; }
.testi-card .testi-info strong { color: var(--text) !important; }
.testi-card .testi-info span   { color: var(--muted) !important; }
.testi-card .testi-author      { border-top-color: var(--border) !important; }
/* La card destacada se mantiene azul */
.testi-card.testi-featured {
  background: linear-gradient(145deg, #0A6FFF 0%, #004FCC 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 20px 60px rgba(10,111,255,0.25) !important;
}
.testi-card.testi-featured .testi-quote      { color: rgba(255,255,255,0.92) !important; }
.testi-card.testi-featured .testi-info strong { color: #fff !important; }
.testi-card.testi-featured .testi-info span   { color: rgba(255,255,255,0.7) !important; }
.testi-card.testi-featured .testi-author      { border-top-color: rgba(255,255,255,0.15) !important; }

/* Dark mode: testimonios claros se vuelven oscuros con el tema */
[data-theme="dark"] #testimonios { background: var(--bg) !important; }
[data-theme="dark"] #testimonios .section-title { color: #E6EDF3 !important; }
[data-theme="dark"] .testi-card {
  background: var(--bg-card) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
[data-theme="dark"] .testi-card .testi-quote { color: rgba(230,237,243,0.85) !important; }
[data-theme="dark"] .testi-card .testi-info strong { color: #E6EDF3 !important; }
[data-theme="dark"] .testi-card .testi-info span { color: #8B949E !important; }

/* ── Ritmo de color: sectores blanco, resultados gris, testimonios blanco ── */
#sectores { background: var(--bg); }
[data-theme="dark"] #sectores { background: var(--bg) !important; }

/* ══════════════════════════════════════════════════════════════
   ESPACIADO v5 — Reducir padding vertical (menos scroll vacío)
══════════════════════════════════════════════════════════════ */
#servicios, #proceso, #sectores, #testimonios,
.feature-block, .about-story, #contacto-page,
.founders-section, .integrations-section, .results-section,
.contact-steps-section, .faq-section {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}
#stats-band { padding: 56px 0 !important; }
.about-stats-band { padding: 44px 0 !important; }

/* Móvil: padding más ajustado para no perder espacio */
@media (max-width: 768px) {
  #servicios, #proceso, #sectores, #testimonios, #resultados,
  .feature-block, .about-story, #contacto-page,
  .founders-section, .integrations-section, .results-section,
  .contact-steps-section, .faq-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  #cta-banner { padding: 64px 0 !important; }
  .results-layout { gap: 28px; }
  .hero-services { margin: 14px 0 18px; }
}

/* ══════════════════════════════════════════════════════════════
   PÁGINAS INTERNAS v5 — Bandas de imagen + ritmo de color
══════════════════════════════════════════════════════════════ */

/* ── Banda de imagen (nosotros / web) ── */
.about-image-band {
  padding: 0 0 84px;
  background: var(--bg);
}
.aib-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  aspect-ratio: 12 / 5;
}
.aib-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aib-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,11,24,0.88) 0%, rgba(7,11,24,0.55) 45%, rgba(7,11,24,0.15) 100%);
  display: flex; align-items: center;
  padding: 0 clamp(28px, 6vw, 72px);
}
.aib-quote {
  position: relative; max-width: 540px;
  font-family: var(--ff-head); font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.9rem); line-height: 1.3; color: #fff;
}
.aib-quote-mark {
  font-size: 3.5rem; color: #60A5FF; line-height: 0;
  position: absolute; top: 10px; left: -8px; opacity: 0.5;
}
[data-theme="dark"] .about-image-band { background: var(--bg); }
@media (max-width: 768px) {
  .about-image-band { padding: 0 0 56px; }
  .aib-frame { aspect-ratio: 4 / 5; }
  .aib-overlay {
    background: linear-gradient(0deg, rgba(7,11,24,0.92) 0%, rgba(7,11,24,0.55) 55%, rgba(7,11,24,0.25) 100%);
    align-items: flex-end; padding: 28px 22px;
  }
}

/* ── Integraciones → CLARO (rompe racha oscura en automatizaciones) ── */
.integrations-section {
  background: var(--bg) !important;
  border-top: 1px solid var(--border) !important;
}
.integrations-section .section-tag    { color: var(--blue) !important; }
.integrations-section .section-tag::before { background: rgba(10,111,255,0.4) !important; }
.integrations-section .section-title  { color: var(--text) !important; }
.integrations-section .section-sub    { color: var(--muted) !important; }
.int-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
}
.int-card:hover {
  background: var(--bg-card) !important;
  border-color: var(--blue-mid) !important;
  box-shadow: var(--shadow) !important;
}
.int-name { color: var(--text) !important; }
.int-desc { color: var(--muted) !important; }

/* Dark mode: integraciones claras se adaptan al tema */
[data-theme="dark"] .integrations-section { background: #0D1117 !important; border-top-color: rgba(255,255,255,0.06) !important; }
[data-theme="dark"] .integrations-section .section-title { color: #E6EDF3 !important; }
[data-theme="dark"] .int-card {
  background: #1C2128 !important;
  border-color: rgba(255,255,255,0.08) !important;
}
[data-theme="dark"] .int-card:hover { border-color: rgba(96,165,255,0.4) !important; }
[data-theme="dark"] .int-name { color: #E6EDF3 !important; }
[data-theme="dark"] .int-desc { color: #8B949E !important; }

/* Reduce hueco entre la última feature y la sección integraciones */
.integrations-section { padding-top: 84px !important; padding-bottom: 84px !important; }
@media (max-width: 768px) {
  .integrations-section { padding-top: 56px !important; padding-bottom: 56px !important; }
}

/* ══════════════════════════════════════════════════════════════
   FONDOS ANIMADOS — Movimiento detrás de las secciones oscuras
══════════════════════════════════════════════════════════════ */

@keyframes auroraFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(8%, 6%) scale(1.15); }
  66%  { transform: translate(-6%, 4%) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes auroraFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-10%, -8%) scale(1.2); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}
@keyframes darkBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── HERO de páginas internas: gradiente vivo + glow flotante + dots ── */
.page-hero {
  background: linear-gradient(135deg, #070B18 0%, #0D1528 45%, #0A1226 70%, #070B18 100%) !important;
  background-size: 220% 220% !important;
  animation: darkBgShift 20s ease-in-out infinite;
}
.page-hero::before { animation: gridDrift 36s linear infinite; }
.page-hero::after {
  width: 620px; height: 620px;
  animation: auroraFloat1 16s ease-in-out infinite;
  will-change: transform;
}
/* Segundo orbe morado flotante en los heros internos */
.page-hero .container::before {
  content: '';
  position: absolute; bottom: -180px; left: -120px;
  width: 480px; height: 480px; z-index: -1;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  pointer-events: none;
  animation: auroraFloat2 19s ease-in-out infinite;
}
.page-hero .container { position: relative; }

/* ── STATS BAND: glow que respira y se desplaza ── */
#stats-band { position: relative; overflow: hidden; }
#stats-band::before {
  animation: auroraFloat1 14s ease-in-out infinite;
  will-change: transform;
}
#stats-band::after {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px; z-index: 0;
  background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 65%);
  pointer-events: none;
  animation: auroraFloat2 18s ease-in-out infinite;
}
#stats-band .container { position: relative; z-index: 1; }

/* ── FLOW DIAGRAM (automatizaciones): glow superior animado ── */
.aflow-section::before {
  animation: auroraFloat1 17s ease-in-out infinite;
  will-change: transform;
}

/* ── RESULTADOS REALES (web.html, oscuro): glow animado ── */
.results-section::before {
  animation: auroraFloat2 16s ease-in-out infinite;
  will-change: transform;
}

/* ── CTA "¿Tienes dudas?" / "¿Listo para…": reforzar movimiento orbs ── */
#cta-banner .cta-orb-1 { animation-duration: 13s; }
#cta-banner .cta-orb-2 { animation-duration: 17s; }
#cta-banner .cta-orb-3 { animation-duration: 11s; }
/* El glow original (::before) también flota suavemente */
#cta-banner::before {
  animation: auroraFloat1 15s ease-in-out infinite;
  will-change: transform;
}

/* ── Respeta a quien prefiere menos movimiento ── */
@media (prefers-reduced-motion: reduce) {
  .page-hero, .page-hero::before, .page-hero::after, .page-hero .container::before,
  #stats-band::before, #stats-band::after,
  .aflow-section::before, .results-section::before,
  #cta-banner::before, #cta-banner .cta-orb {
    animation: none !important;
  }
}
