:root {
  --text: #ffffff;
  --muted: #e8edf3;
  --glass-bg: rgba(0, 0, 0, 0.72);
  --glass-border: rgba(56, 189, 248, 0.22);
  --accent: #ffffff;
  /* Primario en frío (compatibilidad con nombre --accent-orange en el resto del CSS) */
  --accent-orange: #38bdf8;
  --accent-orange-hover: #7dd3fc;
  --cta-text: #020617;
  --hero-max-width: 1920px;
  --page-bg-deep: #000000;
  --page-bg-mid: #000000;
  --page-uniform-bg: #000000;
  --page-glow-1: rgba(56, 189, 248, 0.08);
  --page-glow-2: rgba(37, 99, 235, 0.05);
  /* Scrollbar estilo “píldora” fina, track invisible (paleta del sitio) */
  --scroll-width: 6px;
  --scroll-track: transparent;
  --scroll-thumb: rgba(56, 130, 180, 0.5);
  --scroll-thumb-hover: rgba(100, 180, 220, 0.8);
  --scroll-thumb-edge: rgba(0, 0, 0, 0.6);
  /* Barra nav: cristal gris; borde y sombra neutros (sin halo azul exterior) */
  --nav-bar-bg: rgba(16, 16, 18, 0.82);
  --nav-bar-border: rgba(255, 255, 255, 0.12);
  --nav-bar-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  --nav-cta-bg: #0ea5e9;
  --nav-cta-hover: #38bdf8;
  --nav-cta-text: #ffffff;
  --nav-link: #ffffff;
  --nav-link-hover: #ffffff;
  /* Aire vertical entre secciones y dentro de bloques densos */
  --section-breathe-y: clamp(2.75rem, 6.5vw, 5rem);
  --section-pad-y: clamp(3.5rem, 9vw, 6.75rem);
  --section-pad-y-loose: clamp(4rem, 10vw, 7.5rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Barra de scroll: píldora fina + track invisible (Chromium/Safari/Edge + Firefox) */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: var(--scroll-width);
  height: var(--scroll-width);
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: 999px;
  border: 2px solid var(--scroll-thumb-edge);
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
  background-clip: padding-box;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent;
}

main {
  position: relative;
  z-index: 1;
}

html {
  min-height: 100%;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: clamp(5.75rem, 10vw, 6.75rem);
  /* Siempre hueco a la derecha + barra clásica (evita overlay que se oculta solo) */
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) transparent;
  background-color: var(--page-uniform-bg);
  background-image: none;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: transparent;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(0.7rem, 2.2vw, 1.05rem) 0.35rem clamp(0.55rem, 1.6vw, 0.85rem);
  z-index: 50;
  display: flex;
  justify-content: center;
}

.nav-glass {
  position: relative;
  z-index: 41;
  width: fit-content;
  max-width: calc(100vw - 0.65rem);
  margin-inline: auto;
  min-height: 54px;
  border-radius: 11px;
  border: 1px solid var(--nav-bar-border);
  background: var(--nav-bar-bg);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  box-shadow: var(--nav-bar-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.2rem;
  padding: 0.34rem 0.48rem 0.34rem 0.42rem;
}

.nav-menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin: 0 0.1rem 0 -0.05rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-menu-toggle:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.65);
  outline-offset: 2px;
}

.nav-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 16px;
}

.nav-menu-toggle__bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #f8fafc;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-glass.is-menu-open .nav-menu-toggle__bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-glass.is-menu-open .nav-menu-toggle__bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-glass.is-menu-open .nav-menu-toggle__bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.nav-mobile-scrim.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav-links {
  list-style: none;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0.1rem;
  padding-inline-start: 0;
  margin: 0;
  flex: 0 1 auto;
  justify-content: center;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-links > li {
  list-style: none;
  list-style-type: none;
}

.nav-links > li::marker {
  content: none;
}

.nav-links a {
  display: inline-block;
  padding: 0.42rem 0.28rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  color: var(--nav-link);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: transparent;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.is-active {
  color: #ffffff;
  background: transparent;
}

.nav-glass__right {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.62rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--nav-cta-text);
  background: var(--nav-cta-bg);
  border: 1px solid rgba(56, 189, 248, 0.45);
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover {
  background: var(--nav-cta-bg);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: none;
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-login {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-login:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
}

.nav-login:active {
  transform: scale(0.96);
}

.nav-login-icon {
  display: block;
  width: 22px;
  height: 22px;
}

/* Ventana modal — iniciar sesión */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.login-modal:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.login-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: clamp(1.35rem, 3.5vw, 1.75rem);
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.6);
}

.login-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.login-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.login-modal-title {
  margin: 0 2.25rem 0.35rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.login-modal-lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(190, 200, 220, 0.65);
  line-height: 1.45;
}

.login-modal-status {
  min-height: 1.25rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 200, 140, 0.92);
}

.login-modal-status:empty {
  margin: 0;
  min-height: 0;
}

.login-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.login-modal-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(180, 190, 210, 0.55);
}

.login-modal-field input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 12, 0.75);
  color: #f2f5ff;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.72rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-modal-field input::placeholder {
  color: rgba(140, 150, 175, 0.45);
}

.login-modal-field input:focus {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.login-modal-submit {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  background: var(--accent-orange);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.login-modal-submit:hover {
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35);
  background: var(--accent-orange-hover);
}

.login-modal-submit:active {
  transform: scale(0.99);
}

.login-modal-forgot {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
}

.login-modal-forgot:hover {
  color: #fff;
  text-decoration: underline;
}

body.login-modal-open {
  overflow: hidden;
}

/* —— Hero: negro + un halo azul suave + ruido mínimo —— */
.hero.hero--minimal {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
  background: #000000;
}

.hero.hero--minimal .hero-frame {
  position: relative;
  width: min(100vw, var(--hero-max-width));
  height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: #000000;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-backdrop__base {
  position: absolute;
  inset: 0;
  background: #000000;
}

.hero-backdrop__glow {
  position: absolute;
  left: 50%;
  top: -32vh;
  width: min(130vw, 200vmin);
  height: min(85vmin, 75vh);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    rgba(56, 189, 248, 0.2) 0%,
    rgba(37, 99, 235, 0.08) 42%,
    transparent 68%
  );
  filter: blur(20px);
  pointer-events: none;
}

.hero-backdrop__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.055;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 72% 65% at 50% 50%, rgba(0, 0, 0, 0.35) 0%, transparent 68%);
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(38vh, 420px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.88) 28%, transparent 100%);
}

.hero-main {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.25rem, 8vw, 5.75rem) clamp(1.25rem, 4vw, 2rem) clamp(2.25rem, 5vh, 3rem);
  pointer-events: none;
}

.hero-main__inner {
  width: min(52rem, 94vw);
  text-align: center;
  pointer-events: auto;
}

@keyframes hero-title-row-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-title {
  margin: 0 0 clamp(1.35rem, 3.2vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.35rem, 1.2vw, 0.65rem);
  font-size: clamp(2.65rem, 7vw + 0.35rem, 4.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.78);
}

.hero-title__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.38em;
  row-gap: 0.2em;
  max-width: 100%;
}

.hero-title__row--1 {
  animation: hero-title-row-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title__row--2 {
  animation: hero-title-row-in 1s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title__light {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: -0.028em;
  color: #e2e8f0;
}

.hero-title__serif {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.03em;
  color: #7dd3fc;
  text-shadow: 0 0 28px rgba(56, 189, 248, 0.28);
}

.hero-title__mid {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.98em;
  letter-spacing: -0.05em;
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title__row--1,
  .hero-title__row--2 {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.hero-subtitle {
  margin: 0 auto clamp(1.5rem, 3.5vw, 2.15rem);
  max-width: 38rem;
  font-size: clamp(0.95rem, 1.35vw + 0.2rem, 1.12rem);
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(226, 232, 240, 0.72);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.hero-btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.82rem 1.55rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition:
    background 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease,
    transform 0.2s ease,
    box-shadow 0.32s ease;
}

.hero-btn__text {
  position: relative;
  z-index: 2;
}

/* Brillo que cruza al hover (una pasada, estilo “carga”) */
.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 64%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.hero-btn:not(:hover)::before {
  animation: none;
  transform: translateX(-120%);
  opacity: 0;
}

.hero-btn:hover::before {
  opacity: 1;
  animation: hero-btn-shine 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Barra inferior que se “llena” al hover */
.hero-btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 14%;
  right: 14%;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.85;
  pointer-events: none;
  transition: transform 0.22s ease;
}

.hero-btn:hover::after {
  transform: scaleX(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-btn-shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.hero-btn--solid {
  color: #020617;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%);
  border-color: rgba(186, 230, 253, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 12px 28px rgba(14, 165, 233, 0.22);
}

.hero-btn--solid::after {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.45));
}

.hero-btn--solid:hover {
  background: linear-gradient(180deg, #7dd3fc 0%, #38bdf8 100%);
  border-color: rgba(240, 249, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 16px 36px rgba(14, 165, 233, 0.32);
}

.hero-btn--line {
  color: #f0f9ff;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.hero-btn--line::after {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.15), rgba(125, 211, 252, 0.85));
}

.hero-btn--line:hover {
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.hero-btn:active {
  transform: translateY(1px) scale(0.99);
}

@media (max-width: 520px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-btn {
    transition: none;
  }

  .hero-btn::before,
  .hero-btn:hover::before {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-btn::after,
  .hero-btn:hover::after {
    transition: none;
    transform: none;
    opacity: 0;
  }
}

/* —— Comparativa: otras agencias vs RA Solutions —— */
.compare-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: var(--section-pad-y-loose) clamp(1.2rem, 4vw, 2.25rem) var(--section-pad-y-loose);
  background: #000000;
}

.compare-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(92vw, 760px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  pointer-events: none;
}

.compare-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 55% at 50% -15%, rgba(56, 189, 248, 0.07), transparent 58%);
}

.compare-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.compare-heading {
  margin: 0 auto clamp(2.75rem, 6vw, 4rem);
  max-width: 54rem;
  text-align: center;
  font-size: clamp(1.92rem, 4vw + 0.35rem, 3rem);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.12;
  color: #ffffff;
  text-wrap: balance;
}

.compare-heading__line {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
}

.compare-heading__emph {
  display: block;
  margin-top: 0.08em;
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -0.018em;
  color: #f8fafc;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.65rem, 3.8vw, 2.85rem);
  align-items: stretch;
}

.compare-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.compare-col-label {
  display: flex;
  align-items: center;
  min-height: 2.85rem;
  margin: 0 0 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

.compare-brand {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 2.85rem;
  margin: 0 0 0.75rem;
}

.compare-brand-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0f172a;
  background: linear-gradient(160deg, #ffffff 0%, #e2e8f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.05) inset,
    0 6px 18px rgba(0, 0, 0, 0.35);
}

.compare-brand-text {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.15;
}

@keyframes compare-glass-liquid {
  0%,
  100% {
    transform: translate(0%, 0%) scale(1);
  }
  40% {
    transform: translate(2.2%, -1.8%) scale(1.02);
  }
  70% {
    transform: translate(-1.8%, 1.4%) scale(1.01);
  }
}

@keyframes compare-glass-glow-drift {
  0%,
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
  50% {
    transform: translate(-4%, 3%);
    opacity: 0.88;
  }
}

.compare-card {
  position: relative;
  isolation: isolate;
  flex: 1;
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 2.8vw, 1.75rem);
  min-height: 0;
  overflow: hidden;
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

/* Capa de “líquido” / luz interna (debajo del ruido) */
.compare-card--muted::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 70% 55% at 15% 8%, rgba(255, 255, 255, 0.09), transparent 52%),
    radial-gradient(ellipse 60% 50% at 92% 88%, rgba(148, 163, 184, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 45% at 50% 110%, rgba(56, 189, 248, 0.05), transparent 55%);
  animation: compare-glass-liquid 20s ease-in-out infinite;
  pointer-events: none;
}

.compare-card--muted {
  background: linear-gradient(155deg, rgba(42, 42, 48, 0.42) 0%, rgba(18, 18, 22, 0.38) 100%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.09) inset,
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 26px 60px rgba(0, 0, 0, 0.48);
}

.compare-card--highlight {
  background: linear-gradient(160deg, rgba(32, 38, 52, 0.4) 0%, rgba(10, 12, 16, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 30px 70px rgba(0, 0, 0, 0.52);
}

.compare-card--highlight::before {
  content: "";
  position: absolute;
  inset: -48% -28% auto -28%;
  z-index: 0;
  height: 78%;
  border-radius: inherit;
  background: radial-gradient(ellipse 78% 68% at 96% 0%, rgba(249, 115, 22, 0.13), transparent 62%),
    radial-gradient(ellipse 68% 58% at 62% -8%, rgba(56, 189, 248, 0.14), transparent 54%),
    radial-gradient(ellipse 55% 50% at 20% 100%, rgba(125, 211, 252, 0.06), transparent 50%);
  animation: compare-glass-glow-drift 22s ease-in-out infinite;
  pointer-events: none;
}

/* Ruido fino tipo cristal (encima del brillo, debajo del texto) */
.compare-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.075;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.compare-card--highlight .compare-list,
.compare-card--muted .compare-list {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .compare-card--muted::before,
  .compare-card--highlight::before {
    animation: none;
  }
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.95rem, 2vw, 1.2rem);
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.48;
  padding-bottom: clamp(0.85rem, 2vw, 1.05rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.compare-list--bad li {
  color: rgba(156, 163, 184, 0.9);
  font-weight: 400;
}

.compare-list--good li {
  color: #ffffff;
  font-weight: 500;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.compare-ico {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-top: 0.06rem;
  display: grid;
  place-items: center;
  border-radius: 9px;
}

.compare-ico--bad {
  color: rgba(148, 163, 184, 0.95);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-ico--good {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}

.compare-ico svg {
  display: block;
  width: 18px;
  height: 18px;
}

@media (max-width: 720px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* Solo envuelve la franja: sin min-height extra ni sticky (evita hueco vacío que “sigue bajando”). */
.hero-banner-scroll-wrap {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: var(--section-breathe-y) 0;
  border: none;
  box-shadow: none;
  background: #000000;
}

/* Franja 1920×600 debajo de #planes. */
.hero-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--page-uniform-bg);
  border-top: none;
}

.hero-banner--scroll {
  position: relative;
  z-index: 2;
  padding: 0;
}

.hero-banner-frame {
  position: relative;
  width: min(100%, 1920px);
  /* Altura según el contenido del panel (sin scroll interno); el fondo absoluto sigue el alto del marco */
  overflow: hidden;
}

/* Franja central: negro profundo + halo azul cinematográfico (sin vídeo). */
.hero-banner-static-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--page-uniform-bg);
}

.hero-banner-static-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0;
  mix-blend-mode: screen;
}

.hero-banner-static-blob--1 {
  width: min(95%, 900px);
  height: min(70%, 480px);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 40%, rgba(56, 189, 248, 0.16), transparent 62%);
}

.hero-banner-static-blob--2 {
  width: 55%;
  height: 48%;
  left: -8%;
  top: 18%;
  background: radial-gradient(circle at 60% 50%, rgba(60, 60, 60, 0.25), transparent 68%);
  filter: blur(76px);
  opacity: 0.35;
}

.hero-banner-static-blob--3 {
  width: 50%;
  height: 42%;
  right: -12%;
  bottom: 8%;
  background: radial-gradient(circle at 40% 45%, rgba(40, 40, 40, 0.3), transparent 65%);
  filter: blur(68px);
  opacity: 0.32;
}

.hero-banner-static-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
}

.hero-banner-static-noise {
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-banner-end-panel {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  min-height: clamp(460px, 54vw, 720px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 1.6rem);
  text-align: center;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(0.85rem, 2.5vw, 1.5rem) clamp(1.85rem, 4.5vw, 2.75rem);
  /* Sin scroll propio: el documento hace el scroll vertical (evita que la rueda mueva solo esta capa) */
  overflow: visible;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.62) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: none;
}

.hero-banner-process-kicker {
  margin: 0;
  padding: 0.35rem 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.55;
  color: rgba(56, 189, 248, 0.75);
}

.hero-banner-end-title {
  width: min(48rem, 94vw);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  font-size: clamp(1.65rem, 3.4vw + 0.2rem, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.038em;
  color: #fafcff;
  text-wrap: balance;
  text-shadow: none;
}

.hero-banner-end-title__sans {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-banner-end-title__serif {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.12em;
  letter-spacing: -0.02em;
  color: #7dd3fc;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.22);
}

.hero-banner-end-title__sans--trail {
  font-size: 0.88em;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.92);
}

.hero-banner-process-tagline {
  margin: 0 0 clamp(0.85rem, 2.6vw, 1.45rem);
  max-width: 32rem;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.68);
}

/* Pasos: carrusel — centrado estable; viñeta lateral para difuminar bordes del carril */
.process-wheel {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 1120px;
  margin: clamp(0.75rem, 2.2vw, 1.5rem) auto 0;
}

.process-wheel__halo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(118%, 880px);
  height: min(48vw, 380px);
  transform: translate(-50%, -40%);
  border-radius: 50%;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(56, 189, 248, 0.09), transparent 72%);
  filter: blur(56px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  /* Evita una franja horizontal “azulada” con bordes duros arriba/abajo al recortarse con el carril */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 14%,
    #000 28%,
    #000 72%,
    rgba(0, 0, 0, 0.45) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.45) 14%,
    #000 28%,
    #000 72%,
    rgba(0, 0, 0, 0.45) 86%,
    transparent 100%
  );
  mask-mode: alpha;
}

.process-wheel__shell {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.process-wheel__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 9vw, 4.25rem);
  pointer-events: none;
  z-index: 3;
}

.process-wheel__edge--left {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%
  );
}

.process-wheel__edge--right {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 38%,
    rgba(0, 0, 0, 0.12) 72%,
    transparent 100%
  );
}

.process-wheel__viewport {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(1.25rem, 5vw, 2.25rem);
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(0.5rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.75rem);
  /* Suaviza el corte vertical de sombras/glow (overflow-y hidden deja líneas duras) */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 9%,
    #000 91%,
    transparent 100%
  );
  mask-mode: alpha;
}

.process-wheel__viewport::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.process-wheel__viewport:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, 0.35);
  border-radius: 16px;
}

.process-wheel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(1.35rem, 3.5vw, 2.25rem);
  width: max-content;
  margin: 0;
  padding: 0 clamp(1.5rem, 5vw, 3.25rem);
}

.process-wheel__hint {
  position: relative;
  z-index: 1;
  margin: 0.65rem 0 0;
  padding: 0 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.48);
  border: none;
}

.process-step {
  position: relative;
  isolation: isolate;
  flex: 0 0 min(92vw, 580px);
  max-width: 100%;
  scroll-snap-align: center;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(4.5rem, 5.75rem) minmax(0, 1fr);
  column-gap: clamp(1.35rem, 3vw, 2rem);
  align-items: start;
  text-align: left;
  padding: clamp(1.85rem, 4.2vw, 2.75rem) clamp(1.85rem, 4.5vw, 2.85rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 16, 20, 0.88);
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s ease,
    border-color 0.65s ease,
    background 0.65s ease;
}

.process-step:not(.is-active) {
  opacity: 0.46;
  transform: scale(0.97);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(12, 14, 18, 0.92);
  box-shadow: none;
}

.process-step.is-active {
  opacity: 1;
  transform: scale(1.01) translateZ(0);
  border-color: rgba(186, 230, 253, 0.38);
  background: rgba(10, 14, 22, 0.55);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  /* Sombras más contenidas en Y para que el recorte del viewport no marque límites tan duros */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.42),
    0 0 56px rgba(56, 189, 248, 0.1);
  z-index: 2;
}

.process-step:focus-visible {
  outline: none;
}

.process-step:not(.is-active):focus-visible {
  box-shadow: inset 0 0 0 2px rgba(125, 211, 252, 0.5);
}

.process-step.is-active:focus-visible {
  box-shadow:
    inset 0 0 0 2px rgba(125, 211, 252, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.42),
    0 0 56px rgba(56, 189, 248, 0.1);
}

.process-step__index {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.85rem, 7vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
  padding-top: 0.15rem;
}

.process-step.is-active .process-step__index {
  color: rgba(186, 230, 253, 0.35);
}

.process-step__main {
  min-width: 0;
  padding: 0.2rem 0 0;
}

.process-step__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.42rem, 3vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.038em;
  font-weight: 600;
  color: #f8fafc;
}

.process-step__title-sans {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.036em;
}

.process-step__title-serif {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #bae6fd;
}

.process-step__title-sans + .process-step__title-serif,
.process-step__title-serif + .process-step__title-sans {
  margin-left: 0.14em;
}

.process-step__desc {
  margin: 0;
  font-size: clamp(1.02rem, 1.65vw, 1.15rem);
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: rgba(226, 232, 240, 0.88);
  text-wrap: pretty;
}

.services-focus {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding-top: var(--section-pad-y);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-bottom: var(--section-pad-y);
  background: #000000;
  color: #fff;
  border: none;
  margin: 0;
  box-shadow: none;
}

.help-section {
  position: relative;
  padding: var(--section-pad-y) clamp(1.1rem, 4vw, 2.4rem) var(--section-pad-y-loose);
  background: var(--page-uniform-bg);
}

.help-section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.help-section-header {
  text-align: center;
  margin-bottom: clamp(1.3rem, 3.2vw, 2rem);
}

.help-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(156, 163, 175, 0.85);
}

.help-title {
  margin: 0;
  font-size: clamp(1.55rem, 3.3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f8fbff;
}

.help-lead {
  margin: 0.7rem auto 0;
  width: min(46rem, 94vw);
  font-size: clamp(0.93rem, 1.45vw, 1.04rem);
  line-height: 1.55;
  color: var(--muted);
}

.help-survey-launch {
  display: grid;
  place-items: center;
}

.help-start-button {
  border: 1px solid rgba(56, 189, 248, 0.42);
  background: var(--accent-orange);
  color: #fff;
  font-family: inherit;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  min-width: min(420px, 94vw);
  padding: clamp(0.95rem, 2.4vw, 1.25rem) clamp(1.5rem, 5vw, 2.6rem);
  box-shadow: 0 22px 44px rgba(14, 165, 233, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.help-start-button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
  box-shadow: 0 26px 52px rgba(14, 165, 233, 0.32);
}

.help-survey {
  margin: clamp(1.2rem, 3.2vw, 1.7rem) auto 0;
  width: min(760px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.4);
}

.help-progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.help-progress-label {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.9);
}

.help-progress-value {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #f4f8ff;
}

.help-progress-track {
  margin-top: 0.6rem;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.help-progress-fill {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8 0%, var(--accent-orange) 55%, #1d4ed8 100%);
  transition: width 260ms ease;
}

.help-survey-form {
  margin-top: 1rem;
}

.help-survey-step {
  display: none;
}

.help-survey-step.is-active {
  display: block;
  animation: help-step-enter 220ms ease;
}

@keyframes help-step-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-step-kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 0.85);
}

.help-step-title {
  margin: 0.48rem 0 0;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.25;
  color: #f7fbff;
}

.help-step-description {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.help-options {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.56rem;
}

.help-conditional {
  margin-top: 0.75rem;
  padding: 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.help-conditional.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.help-conditional[hidden] {
  display: none !important;
}

.help-subquestion {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
}

.help-options label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.88rem 0.96rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(231, 239, 255, 0.92);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 180ms ease, transform 160ms ease;
  font-size: 1rem;
  font-weight: 560;
}

.help-options label:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.help-options label:nth-child(1) {
  transition-delay: 0ms;
}
.help-options label:nth-child(2) {
  transition-delay: 35ms;
}
.help-options label:nth-child(3) {
  transition-delay: 70ms;
}
.help-options label:nth-child(4) {
  transition-delay: 105ms;
}
.help-options label:nth-child(5) {
  transition-delay: 140ms;
}

.help-options label:has(input:checked) {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(56, 189, 248, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.help-options--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.help-options--cards label {
  min-height: 74px;
  align-items: center;
}

.help-options input[type="radio"],
.help-options input[type="checkbox"] {
  margin-top: 0.12rem;
}

.help-input-label {
  display: grid !important;
  gap: 0.45rem;
}

.help-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.45);
  color: #eef4ff;
  font: inherit;
  font-size: 1rem;
  padding: 0.84rem 0.92rem;
}

.help-textarea {
  resize: vertical;
  min-height: 6.2rem;
}

.help-highlight-message {
  margin: 0.85rem 0 0;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  background: rgba(56, 189, 248, 0.1);
  color: rgba(233, 244, 255, 0.97);
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.72rem 0.84rem;
}

.help-survey-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.help-final-message {
  margin: 0.85rem 0 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(236, 244, 255, 0.98);
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.74rem 0.86rem;
}

.templates-section {
  position: relative;
  padding: var(--section-pad-y) clamp(1.1rem, 4vw, 2.4rem) var(--section-pad-y-loose);
  background: var(--page-uniform-bg);
}

.templates-section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.templates-header {
  text-align: center;
  margin-bottom: clamp(1.2rem, 3vw, 1.9rem);
}

.templates-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(156, 163, 175, 0.85);
}

.templates-title {
  margin: 0;
  font-size: clamp(1.45rem, 2.9vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #f8fbff;
}

.templates-lead {
  margin: 0.72rem auto 0;
  width: min(48rem, 94vw);
  font-size: clamp(0.92rem, 1.4vw, 1.03rem);
  line-height: 1.55;
  color: var(--muted);
}

.templates-lead__link {
  color: #7dd3fc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.templates-lead__link:hover {
  color: #bae6fd;
}

.templates-empty {
  margin: clamp(1.35rem, 3.5vw, 2.25rem) auto 0;
  max-width: min(32rem, 94vw);
  padding: clamp(1.15rem, 2.8vw, 1.65rem) clamp(1.1rem, 2.5vw, 1.45rem);
  text-align: center;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.58;
  letter-spacing: -0.01em;
  color: rgba(196, 210, 236, 0.82);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

@media (max-width: 720px) {
  .help-options--cards {
    grid-template-columns: 1fr;
  }
}

.help-nav-btn {
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.62rem 0.95rem;
  cursor: pointer;
}

.help-nav-btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(227, 236, 252, 0.9);
}

.help-nav-btn--primary {
  background: var(--accent-orange);
  border-color: rgba(56, 189, 248, 0.45);
  color: #f9fbff;
}

.services-focus-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.services-focus-header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.services-focus-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.services-focus-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}

.services-focus-title__sans {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.services-focus-title__serif {
  font-family: "Instrument Serif", "Georgia", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  letter-spacing: -0.02em;
  color: #e0f2fe;
}

.services-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.services-list-column {
  min-height: 0;
}

.services-list-stage {
  position: relative;
  padding-left: 3rem;
  perspective: 900px;
}

.services-arrow {
  position: absolute;
  left: 0;
  top: var(--services-arrow-top, 50%);
  transform: translateY(-50%);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1;
  pointer-events: none;
  transition: top 420ms cubic-bezier(0.33, 1, 0.68, 1);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  transform-style: preserve-3d;
  transform: rotateY(8deg);
  transform-origin: left center;
}

.services-list li {
  margin: 0;
  padding: 0;
}

.services-item {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: clamp(1.45rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  padding: 0.35rem 0;
  margin: 0;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    filter 380ms ease,
    opacity 380ms ease,
    transform 380ms ease,
    color 220ms ease;
}

.services-item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}

.services-item.is-active {
  filter: none;
  opacity: 1;
  transform: translateX(4px);
  color: #fff;
}

.services-detail {
  margin: 0;
  padding: clamp(1.15rem, 2.5vw, 1.65rem) clamp(1.15rem, 2.5vw, 1.65rem);
  min-height: 0;
  border-radius: 18px;
  border: none;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.services-detail-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #fff;
  transition: opacity 240ms ease;
}

.services-detail-content {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
  max-width: 48ch;
  transition: opacity 240ms ease;
}

.services-detail-intro {
  margin: 0 0 1.15rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}

.services-detail-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.services-detail-bullets li {
  position: relative;
  padding-left: 1.05rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.62);
}

.services-detail-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.75);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

.services-detail-content strong,
.services-detail-intro strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

[data-scroll-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--scroll-delay, 0ms);
}

[data-scroll-animate].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(18, 22, 32, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f4f7ff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(2, 6, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(32, 38, 52, 0.72);
  border-color: rgba(255, 255, 255, 0.38);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.55);
  outline-offset: 3px;
}

/* —— Planes (cristal / nebula), debajo del hero en franja —— */
.pricing-showcase {
  position: relative;
  z-index: 1;
  min-height: min(114vh, 1420px);
  padding: clamp(5rem, 13vw, 9rem) clamp(1.25rem, 4vw, 2rem) clamp(5.5rem, 14vw, 9.25rem);
  background: var(--page-uniform-bg);
  border-top: none;
  overflow: hidden;
}

/* Fondo de la zona de precios (resplandor + “Precios” detrás de las tarjetas). */
.pricing-showcase-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: none;
}

.pricing-wave-scene {
  position: absolute;
  inset: 0;
}

.pricing-wave-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  mix-blend-mode: screen;
}

.pricing-wave-blob--1 {
  width: min(120%, 900px);
  height: min(70%, 520px);
  left: 50%;
  bottom: -18%;
  transform: translateX(-42%) rotate(-8deg);
  background: radial-gradient(circle at 40% 40%, rgba(40, 40, 40, 0.5), transparent 70%);
}

.pricing-wave-blob--2 {
  width: 70%;
  height: 45%;
  right: -10%;
  top: 20%;
  background: radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.12), transparent 72%);
  filter: blur(48px);
  opacity: 0.55;
}

.pricing-wave-blob--3 {
  width: 50%;
  height: 35%;
  left: 5%;
  top: 35%;
  background: radial-gradient(circle, rgba(30, 30, 30, 0.4), transparent 65%);
  filter: blur(40px);
  opacity: 0.4;
}

.pricing-bg-word {
  position: absolute;
  left: 50%;
  /* Más arriba para que quede en la “mitad superior” y las tarjetas no lo tapen */
  top: clamp(5.5rem, 15vh, 9.5rem);
  transform: translateX(-50%);
  margin: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: clamp(3rem, 15vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: none;
  opacity: 0.35;
  user-select: none;
}

.pricing-wave-noise {
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.pricing-showcase-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  /* Deja la palabra “Precios” del fondo sola arriba; el copy tuyo empieza más abajo */
  padding-top: clamp(9.5rem, 24vh, 17rem);
}

.pricing-brand {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.35rem;
}

.pricing-section-heading {
  position: relative;
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.pricing-lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(226, 232, 248, 0.88);
  line-height: 1.5;
}

.pricing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.pricing-toggle-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(235, 240, 255, 0.88);
}

.pricing-toggle {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.pricing-toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pricing-toggle-knob {
  position: absolute;
  top: 50%;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.pricing-showcase.is-yearly .pricing-toggle-track {
  background: rgba(14, 165, 233, 0.22);
  border-color: rgba(56, 189, 248, 0.38);
}

.pricing-showcase.is-yearly .pricing-toggle-knob {
  transform: translate(20px, -50%);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.15rem, 2.4vw, 1.85rem);
  align-items: stretch;
  margin-top: clamp(3rem, 9vw, 6.5rem);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: clamp(1.85rem, 3.6vw, 2.35rem) clamp(1.55rem, 3.2vw, 2.05rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(22, 26, 36, 0.94) 0%, rgba(14, 16, 22, 0.92) 100%);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 56px rgba(0, 0, 0, 0.55);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.pricing-card:hover {
  z-index: 2;
  transform: scale(1.028);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5);
}

.pricing-card--featured {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(165deg, rgba(18, 32, 48, 0.96) 0%, rgba(12, 18, 28, 0.95) 100%);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.28),
    0 0 52px rgba(56, 189, 248, 0.18),
    0 28px 64px rgba(0, 0, 0, 0.55);
}

.pricing-card--featured:hover {
  border-color: rgba(255, 140, 80, 0.55);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.2),
    0 0 44px rgba(56, 189, 248, 0.2),
    0 32px 72px rgba(0, 0, 0, 0.52);
}

.pricing-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 246, 0.92);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.pricing-card-price {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}

.pricing-card-price small {
  display: block;
  margin-top: 0.35rem;
  margin-left: 0;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(226, 236, 255, 0.78);
}

.pricing-price--y {
  display: none;
}

.pricing-showcase.is-yearly .pricing-price--m {
  display: none;
}

.pricing-showcase.is-yearly .pricing-price--y {
  display: inline;
}

.pricing-card-desc {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  line-height: 1.58;
  color: rgba(210, 220, 242, 0.88);
}

.pricing-features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.62rem;
  font-size: 0.8rem;
  line-height: 1.48;
  color: rgba(238, 242, 255, 0.88);
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: rgba(38, 44, 58, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.55rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.125rem;
  text-align: center;
}

.pricing-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: min(100%, 240px);
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #fff;
  background: var(--accent-orange);
  border: 1px solid rgba(56, 189, 248, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pricing-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.35);
  background: var(--accent-orange-hover);
}

/* —— Contacto (debajo de planes) —— */
.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--page-uniform-bg);
  border-top: none;
  padding: var(--section-pad-y-loose) clamp(1.25rem, 4vw, 2rem) var(--section-pad-y-loose);
}

.contact-section-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0;
  mix-blend-mode: screen;
}

.contact-blob--1 {
  width: min(90%, 720px);
  height: min(55%, 420px);
  left: -12%;
  top: 8%;
  background: radial-gradient(circle at 40% 40%, rgba(35, 35, 35, 0.6), transparent 68%);
}

.contact-blob--2 {
  width: 55%;
  height: 40%;
  right: -8%;
  bottom: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.08), transparent 70%);
  filter: blur(56px);
  opacity: 0.4;
}

.contact-blob--3 {
  width: 45%;
  height: 35%;
  left: 35%;
  bottom: -5%;
  background: radial-gradient(circle, rgba(28, 28, 28, 0.5), transparent 65%);
  filter: blur(48px);
  opacity: 0.35;
}

.contact-section-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.75rem;
}

.contact-title {
  margin: 0 0 1.75rem;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: rgba(245, 248, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 0.2s ease, background 0.2s ease;
}

.contact-info li:first-child .contact-info-row {
  padding-top: 0;
}

.contact-info li:last-child .contact-info-row {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info-row:hover {
  color: #fff;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(209, 213, 219, 0.9);
}

.contact-info-text {
  word-break: break-word;
}

.contact-form-card {
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 1.85rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 18, 26, 0.72);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 64px rgba(0, 0, 0, 0.45);
}

.contact-form-heading {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(200, 210, 230, 0.55);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 8, 14, 0.65);
  color: #f0f4ff;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 0.72rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(160, 170, 195, 0.45);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.contact-field textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.contact-submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 12, 20, 0.9);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: rgba(18, 18, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-submit:active {
  transform: translateY(1px);
}

/* Pie de página — tarjeta compacta */
.site-footer {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3rem);
  background: var(--page-uniform-bg);
  border-top: none;
}

.site-footer-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.site-footer-brand {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.site-footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-links a:hover {
  color: #fff;
}

.site-footer-legal {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: rgba(160, 170, 195, 0.55);
  line-height: 1.45;
}

.site-footer-legal a {
  color: rgba(186, 230, 253, 0.65);
  text-decoration: none;
}

.site-footer-legal a:hover {
  color: rgba(224, 242, 254, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 520px) {
  .site-footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 900px) {
  .help-start-button {
    min-width: min(100%, 420px);
  }

  .help-survey {
    width: 100%;
  }

  .contact-section-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-scroll-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .back-to-top {
    transition: none;
  }

  .pricing-card,
  .pricing-card:hover {
    transform: none;
    transition: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(0, 0, 0, 0.2),
      0 24px 56px rgba(0, 0, 0, 0.42);
  }

  .pricing-card--featured,
  .pricing-card--featured:hover {
    box-shadow:
      0 0 0 1px rgba(56, 189, 248, 0.16),
      0 0 48px rgba(56, 189, 248, 0.16),
      0 28px 64px rgba(0, 0, 0, 0.5);
  }

  .hero-banner-end-punch {
    background: none !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    color: rgba(255, 205, 155, 0.95) !important;
    -webkit-text-fill-color: rgba(255, 205, 155, 0.95) !important;
  }

  .login-modal {
    transition: none;
  }

  .process-step {
    transition: none;
  }

  .process-step:not(.is-active) {
    opacity: 1;
    transform: none;
  }

  .process-step.is-active {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(56, 189, 248, 0.2);
  }
}

@media (max-width: 860px) {
  .hero-banner-end-title {
    font-size: clamp(1.4rem, 7.4vw, 2rem);
    line-height: 1.12;
  }

  .process-wheel {
    width: 100%;
    margin-top: 0.35rem;
  }

  .process-wheel__viewport {
    padding-inline: 0.25rem;
  }

  .process-wheel__track {
    padding: 0 clamp(1rem, 4vw, 1.5rem);
    gap: 1rem;
  }

  .process-step {
    flex: 0 0 min(90vw, 540px);
    grid-template-columns: minmax(3.25rem, 4.5rem) minmax(0, 1fr);
    column-gap: clamp(1rem, 3vw, 1.35rem);
    padding: clamp(1.55rem, 4vw, 2.15rem) clamp(1.35rem, 4vw, 1.85rem);
  }

  .process-step:not(.is-active) {
    opacity: 0.44;
    transform: scale(0.96);
  }

  .process-step__index {
    font-size: clamp(2.35rem, 10vw, 3.25rem);
  }

  .process-step__main {
    padding-top: 0.1rem;
  }

  .services-focus-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-detail {
    margin-top: 0.25rem;
    padding: clamp(1.1rem, 3vw, 1.45rem);
  }

  .services-list {
    transform: rotateY(4deg);
  }

  .services-list-stage {
    padding-left: 2.5rem;
  }
}

/* Teléfonos: mismo carrusel horizontal, afinado para tacto y pantallas estrechas */
@media (max-width: 640px) {
  .hero-banner-end-panel {
    padding-bottom: clamp(2rem, 8vw, 2.85rem);
  }

  .process-wheel {
    margin-top: 0.45rem;
    margin-bottom: 0.35rem;
  }

  .process-wheel__halo {
    opacity: 0.26;
    height: min(34vw, 240px);
    filter: blur(42px);
  }

  .process-wheel__edge {
    width: clamp(1rem, 5.5vw, 1.75rem);
  }

  .process-wheel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(0.65rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
    padding: 0.75rem 0.15rem 0.95rem;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      #000 6%,
      #000 94%,
      transparent 100%
    );
    mask-mode: alpha;
  }

  .process-wheel__track {
    flex-direction: row;
    width: max-content;
    padding: 0 clamp(0.55rem, 2.5vw, 0.95rem);
    gap: 0.75rem;
  }

  .process-step {
    flex: 0 0 min(86vw, 400px);
    scroll-snap-align: center;
    grid-template-columns: minmax(2.35rem, 3.35rem) minmax(0, 1fr);
    column-gap: clamp(0.7rem, 2.5vw, 1rem);
    padding: clamp(1.05rem, 3.2vw, 1.4rem) clamp(0.95rem, 2.8vw, 1.25rem);
    border-radius: 18px;
  }

  .process-step:not(.is-active) {
    opacity: 0.56;
    transform: scale(0.988);
  }

  .process-step.is-active {
    transform: scale(1.008) translateZ(0);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 0 0 1px rgba(56, 189, 248, 0.2),
      0 10px 28px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(56, 189, 248, 0.1);
  }

  .process-step__index {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .process-wheel__hint {
    margin-top: 0.45rem;
    padding: 0 0.45rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    max-width: 22rem;
  }

  .services-list {
    transform: none;
  }

  .services-list-stage {
    padding-left: 1.2rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: clamp(0.6rem, 2vw, 0.85rem) 0.45rem clamp(0.5rem, 1.6vw, 0.75rem);
  }

  .nav-glass {
    width: min(calc(100vw - 0.9rem), 520px);
    max-width: calc(100vw - 0.9rem);
    border-radius: 12px;
    justify-content: space-between;
    padding: 0.38rem 0.45rem 0.38rem 0.4rem;
    gap: 0.45rem;
    min-height: 52px;
  }

  .nav-cta {
    padding: 0.42rem 0.58rem;
    font-size: 0.84rem;
  }

  .hero.hero--minimal {
    padding-top: 0;
  }
}

/* Móvil: barra compacta + panel tipo hoja bajo la barra (DOM: toggle → enlaces → CTA) */
@media (max-width: 768px) {
  html {
    scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 4.35rem);
  }

  .site-header {
    padding: max(0.45rem, env(safe-area-inset-top, 0px)) 0.55rem 0.55rem;
  }

  .nav-menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 11px;
  }

  .nav-glass {
    position: relative;
    overflow: visible;
    width: calc(100vw - 1.1rem);
    max-width: 100%;
    min-height: 3.35rem;
    border-radius: 14px;
    padding: 0.32rem 0.42rem 0.32rem 0.38rem;
    gap: 0.35rem;
    justify-content: flex-start;
    align-items: center;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 10px 40px rgba(0, 0, 0, 0.5);
  }

  /* Menú abierto: barra al ancho del contenido (sin hueco negro enorme) + hoja pegada debajo */
  .nav-glass.is-menu-open {
    width: min(20.5rem, calc(100vw - 1.1rem));
    margin-inline: auto;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.34rem 0.48rem 0.34rem 0.42rem;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.06) inset,
      0 12px 36px rgba(0, 0, 0, 0.48);
  }

  .nav-glass__right {
    gap: 0.38rem;
  }

  .nav-glass.is-menu-open .nav-glass__right {
    margin-left: 0;
    position: relative;
    z-index: 58;
  }

  .nav-links {
    position: absolute;
    z-index: 55;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(62vh, calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 6.5rem));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    margin: 0;
    padding: 0.55rem 0.5rem 0.75rem;
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.04) inset,
      0 18px 44px rgba(0, 0, 0, 0.52);
    transform-origin: top center;
    transform: translateY(-6px) scale(0.99);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease,
      visibility 0.24s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav-glass.is-menu-open .nav-links {
    z-index: 60;
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    border-radius: 12px;
    border: none;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    touch-action: manipulation;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(56, 189, 248, 0.12);
    color: #fff;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.28);
  }

  .nav-links a:active {
    transform: scale(0.99);
  }

  .nav-links a.is-active {
    background: rgba(56, 189, 248, 0.14);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.35);
  }

  .nav-cta {
    padding: 0.48rem 0.72rem;
    font-size: 0.8rem;
    border-radius: 8px;
    min-height: 40px;
  }

  .nav-login {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }

  .pricing-showcase-inner {
    padding-top: clamp(5.5rem, 18vw, 9rem);
  }

  .pricing-bg-word {
    opacity: 0.22;
    top: clamp(4rem, 12vw, 6rem);
  }

  .pricing-cards {
    margin-top: clamp(1.75rem, 6vw, 2.75rem);
  }

  .pricing-card {
    padding: clamp(1.45rem, 4vw, 1.85rem) clamp(1.2rem, 3.5vw, 1.55rem);
  }

  .pricing-card-price {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .nav-links {
    transition: opacity 0.16s ease, visibility 0.16s ease;
  }

  .nav-links,
  .nav-glass.is-menu-open .nav-links {
    transform: none;
  }

  .nav-mobile-scrim {
    transition: opacity 0.16s ease, visibility 0.16s ease;
  }
}
