/* halo · terapeutas landing
   estilos específicos. reutiliza tokens y clases base de styles.css */

/* ─── NAV · estado activo + variante dark ────────── */
.nav-links a.is-active {
  position: relative;
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--halo-pumpkin);
}

/* Cuando el nav se monta sobre un hero dark · charcoal sólido sin filtros */
.nav.nav--on-dark {
  background: var(--halo-charcoal);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}
.nav.nav--on-dark .nav-inner {
  height: 84px;
}
.nav.nav--on-dark .nav-brand svg {
  width: 108px;
  height: 44px;
}
.nav.nav--on-dark .nav-links {
  gap: 36px;
}
.nav.nav--on-dark .nav-links a {
  color: rgba(237, 228, 211, 0.82);
  font-size: 15px;
}
.nav.nav--on-dark .nav-links a:hover {
  color: var(--halo-bone);
}
.nav.nav--on-dark .nav-links a.is-active {
  color: var(--halo-bone);
}
.nav.nav--on-dark .btn-primary {
  font-size: 15px;
  padding: 12px 24px;
}

/* Estado scrolled: añadir borde inferior sutil para separar del cream debajo */
.nav.nav--on-dark.scrolled {
  border-bottom-color: rgba(237, 228, 211, 0.08);
}

/* ─── HERO TERAPEUTAS · dark, stacked, distintivo ── */
.ter-hero-section {
  position: relative;
  background: var(--halo-charcoal);
  color: var(--halo-bone);
  padding: 140px 0 96px;
  overflow: hidden;
}

/* Dot grid pattern · vibe wireframe/tech */
.ter-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(237, 228, 211, 0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
}

/* Wireframes + brackets + halo rings spotlight */
.ter-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.ter-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.ter-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(237, 228, 211, 0.06);
  border: 1px solid rgba(237, 228, 211, 0.14);
  border-radius: 999px;
}
.ter-hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--halo-pumpkin);
  box-shadow: 0 0 12px rgba(254, 127, 45, 0.6);
}
.ter-hero-eyebrow .t-micro {
  color: var(--halo-bone);
  letter-spacing: 0.18em;
}

.ter-hero-headline {
  font-family: 'General Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 7.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0;
  color: var(--halo-bone);
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-wrap: balance;
  hyphens: none;
  width: 100%;
  max-width: 100%;
}
.ter-hero-headline em {
  color: var(--halo-pumpkin);
  font-style: italic;
  font-weight: 500;
}

.ter-hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(237, 228, 211, 0.72);
  max-width: 640px;
  margin: 0;
}
.ter-hero-sub strong {
  color: var(--halo-bone);
  font-weight: 500;
}

.ter-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ter-hero-meta {
  margin-top: 4px;
  color: rgba(237, 228, 211, 0.45);
  letter-spacing: 0.04em;
}

/* Showcase mockup grande centered */
.ter-hero-showcase {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  position: relative;
}

.ter-mockup--showcase {
  max-width: 960px;
  width: 100%;
  transform: rotate(0) translateY(0);
  border: 1px solid rgba(237, 228, 211, 0.12);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(254, 127, 45, 0.12),
    0 0 80px rgba(254, 127, 45, 0.08);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.ter-mockup--showcase:hover {
  transform: translateY(-6px);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(254, 127, 45, 0.18),
    0 0 100px rgba(254, 127, 45, 0.14);
}

.ter-mockup--showcase .ter-mockup-body {
  padding: 36px 44px 44px;
  min-height: 480px;
}
.ter-mockup--showcase .ter-mockup-h {
  font-size: 38px;
}
.ter-mockup--showcase .ter-mockup-card {
  padding: 16px 14px;
  gap: 10px;
}
.ter-mockup--showcase .ter-mockup-card span {
  font-size: 12px;
}
.ter-mockup--showcase .ter-mockup-card-icon {
  width: 22px;
  height: 22px;
}

/* Botón ghost para hero dark */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(237, 228, 211, 0.22);
  color: var(--halo-bone);
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 15px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn-ghost:hover {
  background: rgba(237, 228, 211, 0.08);
  border-color: rgba(237, 228, 211, 0.4);
}

@media (max-width: 900px) {
  .ter-hero-section { padding: 100px 0 56px; }
  .ter-hero-section, .ter-hero-section .container { overflow-x: hidden; }
  .ter-hero-stack { gap: 20px; max-width: 100%; }
  .ter-hero-headline {
    font-size: clamp(26px, 8vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .ter-hero-eyebrow { padding: 7px 14px; max-width: 100%; }
  .ter-hero-eyebrow .t-micro {
    font-size: 10px;
    letter-spacing: 0.14em;
    white-space: normal;
    text-align: center;
  }
  .ter-hero-actions { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .ter-hero-actions .btn { width: 100%; justify-content: center; }
  .ter-hero-showcase { margin-top: 56px; }
  .ter-mockup--showcase { max-width: 100%; }
  .ter-mockup--showcase .ter-mockup-body { padding: 20px 18px 26px; min-height: 280px; }
  .ter-mockup--showcase .ter-mockup-h { font-size: 20px; }
  .ter-mockup--showcase .ter-mockup-card { padding: 12px 10px; gap: 8px; }
  .ter-mockup--showcase .ter-mockup-card span { font-size: 11px; }
  .ter-mockup--showcase .ter-mockup-card-icon { width: 18px; height: 18px; }

  /* Nav: en hero dark, mostrar CTA "empezar" (override global que lo oculta) */
  .nav.nav--on-dark .nav-cta-wrap { display: block; }
  .nav.nav--on-dark .nav-links { display: none; }
  .nav.nav--on-dark .nav-inner { grid-template-columns: 1fr auto; height: 68px; }
  .nav.nav--on-dark .nav-brand svg { width: 88px; height: 36px; }
}

@media (max-width: 480px) {
  .ter-hero-section { padding: 84px 0 44px; }
  .ter-hero-headline { font-size: 28px; letter-spacing: -0.03em; }
  .ter-hero-sub { font-size: 15px; padding: 0 8px; }
  .ter-hero-eyebrow { padding: 6px 12px; }
  .ter-hero-eyebrow .t-micro { font-size: 9.5px; letter-spacing: 0.12em; }
  .ter-hero-meta { font-size: 11px; padding: 0 16px; }

  .ter-mockup--showcase .ter-mockup-cards { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .ter-mockup--showcase .ter-mockup-card { padding: 10px 8px; }
  .ter-mockup--showcase .ter-mockup-card span { font-size: 9.5px; line-height: 1.15; }
  .ter-mockup--showcase .ter-mockup-card-icon { width: 16px; height: 16px; }

  .ter-mockup--showcase .ter-mockup-nav { gap: 8px; flex-wrap: wrap; }
  .ter-mockup--showcase .ter-mockup-link { font-size: 9px; }
  .ter-mockup--showcase .ter-mockup-cta { font-size: 9px; padding: 4px 10px; }
}

/* Safety net: nunca overflow horizontal en mobile */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .ter-hero-section { overflow: hidden; }
  .ter-mockup { overflow: hidden; max-width: 100%; }
  .ter-mockup-nav { flex-wrap: wrap; row-gap: 6px; }
  .ter-mockup-url { font-size: 9px !important; }
}

/* Fix iPhone: mockup nav simplificado, oculta links menos críticos */
@media (max-width: 480px) {
  .ter-mockup-nav .ter-mockup-link:nth-child(n+5) { display: none; }
  .ter-mockup--showcase .ter-mockup-nav .ter-mockup-link:nth-child(n+5) { display: inline; }
}

.ter-mockup {
  width: 100%;
  max-width: 520px;
  background: var(--halo-charcoal);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(35,61,77,0.18), 0 8px 20px rgba(35,61,77,0.10);
  transform: rotate(-1.2deg);
  transition: transform var(--dur-slow) var(--ease);
}
.ter-mockup:hover { transform: rotate(0deg); }

.ter-mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--halo-charcoal-800);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ter-mockup-bar > span:not(.ter-mockup-url) {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--halo-charcoal-600);
}
.ter-mockup-bar > span:nth-child(1) { background: #FF5F57; opacity: 0.85; }
.ter-mockup-bar > span:nth-child(2) { background: #FEBC2E; opacity: 0.85; }
.ter-mockup-bar > span:nth-child(3) { background: #28C840; opacity: 0.85; }

.ter-mockup-url {
  margin-left: auto;
  font-size: 11px;
  color: rgba(237,228,211,0.55);
  letter-spacing: -0.01em;
  font-family: 'General Sans', monospace;
}

.ter-mockup-body {
  background: var(--halo-bone);
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
}

.ter-mockup-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(35,61,77,0.06);
}
.ter-mockup-logo {
  font-family: 'General Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--halo-charcoal);
  font-size: 14px;
  letter-spacing: -0.02em;
}
.ter-mockup-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--halo-pumpkin);
}
.ter-mockup-link {
  font-size: 10px;
  color: var(--halo-charcoal-400);
  letter-spacing: -0.01em;
}
.ter-mockup-cta {
  margin-left: auto;
  font-size: 10px;
  color: var(--halo-bone);
  background: var(--halo-charcoal);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.ter-mockup-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 12px;
}
.ter-mockup-h {
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--halo-charcoal);
  letter-spacing: -0.03em;
  font-family: 'General Sans', serif;
  font-style: italic;
}
.ter-mockup-h em {
  color: var(--halo-pumpkin);
  font-style: italic;
  font-weight: 500;
}
.ter-mockup-p {
  font-size: 11px;
  color: var(--halo-charcoal-400);
  line-height: 1.4;
}
.ter-mockup-btn {
  display: inline-block;
  width: fit-content;
  padding: 8px 18px;
  font-size: 10px;
  color: var(--halo-bone);
  background: var(--halo-charcoal);
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.ter-mockup-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}

/* Card individual dentro del mockup · estructura icono + texto */
.ter-mockup-card {
  background: #ffffff;
  padding: 12px 10px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid rgba(35, 61, 77, 0.04);
}
.ter-mockup-card span {
  font-size: 10px;
  color: var(--halo-charcoal);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.ter-mockup-card-icon {
  width: 18px;
  height: 18px;
  color: var(--halo-pumpkin);
  flex-shrink: 0;
}

.ter-mockup--large { max-width: 100%; transform: rotate(0deg); }
.ter-mockup--large .ter-mockup-body { padding: 28px 32px 36px; min-height: 420px; }
.ter-mockup--large .ter-mockup-h { font-size: 32px; }

/* ─── SECTIONS BASE ───────────────────────────────── */
.ter-section {
  padding: var(--section-y) 0;
}
.ter-section--alt {
  background: var(--halo-bone-100);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

/* Sección dark · rompe el ritmo cream con contraste rotundo */
.ter-section--dark {
  background: var(--halo-charcoal);
  color: var(--halo-bone);
  position: relative;
  overflow: hidden;
}
.ter-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(237, 228, 211, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.ter-section--dark > .container {
  position: relative;
  z-index: 1;
}
.ter-section--dark .section-eyebrow .num {
  color: var(--halo-pumpkin);
}
.ter-section--dark .section-eyebrow .t-micro {
  color: rgba(237, 228, 211, 0.7);
}
.ter-section--dark .section-title {
  color: var(--halo-bone);
}
.ter-section--dark .section-title em {
  color: var(--halo-pumpkin);
  font-style: italic;
}
.ter-section--dark .muted {
  color: rgba(237, 228, 211, 0.5);
}

/* ─── PROBLEMA · 3 cards ──────────────────────────── */
.ter-prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ter-prob {
  background: var(--halo-bone-50);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--dur) var(--ease);
}
.ter-prob:hover { transform: translateY(-3px); }
.ter-prob-num {
  font-size: 36px;
  font-weight: 500;
  color: var(--halo-pumpkin);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* ─── BENEFICIOS · grid 3x2 ───────────────────────── */
.ter-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.ter-ben {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: rgba(237, 228, 211, 0.04);
  border: 1px solid rgba(237, 228, 211, 0.10);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ter-ben:hover {
  background: rgba(237, 228, 211, 0.07);
  border-color: rgba(237, 228, 211, 0.20);
  transform: translateY(-3px);
}
.ter-ben-mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--halo-pumpkin);
  border-radius: 50%;
  color: var(--halo-pumpkin);
  background: rgba(254, 127, 45, 0.08);
}
.ter-ben-mark svg { width: 22px; height: 22px; }
.ter-ben h3 { margin: 4px 0 0; color: var(--halo-bone); }
.ter-ben p { color: rgba(237, 228, 211, 0.65); margin: 0; }

/* ─── COMPARACIÓN antes/después ───────────────────── */
.ter-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.ter-vs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ter-vs-label {
  color: var(--halo-charcoal-400);
  padding-bottom: 4px;
}
.ter-vs--after .ter-vs-label {
  color: var(--halo-pumpkin);
}
.ter-vs-card {
  background: var(--halo-bone-50);
  border: 1px solid rgba(35, 61, 77, 0.04);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(35,61,77,0.06);
}

/* IG mockup específico */
.ter-vs-ig-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.ter-vs-ig-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE7F2D, #B34910);
  flex-shrink: 0;
}
.ter-vs-ig-meta {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.ter-vs-ig-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--halo-charcoal);
}
.ter-vs-ig-stats {
  font-size: 11px;
  color: var(--halo-charcoal-400);
}
.ter-vs-ig-follow {
  font-size: 11px;
  background: var(--halo-charcoal);
  color: var(--halo-bone);
  padding: 6px 14px;
  border-radius: 6px;
}
.ter-vs-ig-bio {
  padding: 14px 20px;
  font-size: 12px;
  color: var(--halo-charcoal-400);
  border-bottom: 1px solid var(--line);
}
.ter-vs-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 6px;
}
.ter-vs-ig-grid span {
  aspect-ratio: 1;
  background: var(--halo-bone-200);
}
.ter-vs-ig-grid span:nth-child(2) { background: var(--halo-charcoal-100); }
.ter-vs-ig-grid span:nth-child(4) { background: var(--halo-charcoal-100); }
.ter-vs-ig-grid span:nth-child(6) { background: var(--halo-charcoal-100); }
.ter-vs-ig-grid span:nth-child(8) { background: var(--halo-charcoal-100); }

.ter-vs--after .ter-vs-card { /* mismo estilo que mockup pero compactado */ }

.ter-vs-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ter-vs-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--halo-charcoal-400);
}
.ter-vs-list li::before {
  content: "−";
  position: absolute;
  left: 0;
  font-weight: 500;
  color: var(--halo-charcoal-200);
}
.ter-vs-list--good li {
  color: var(--halo-charcoal);
}
.ter-vs-list--good li::before {
  content: "+";
  color: var(--halo-pumpkin);
}

/* ─── CASO ERIKA ──────────────────────────────────── */
.ter-caso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: center;
}
.ter-caso-text { display: flex; flex-direction: column; gap: 24px; }
.ter-caso-quote {
  font-family: 'General Sans', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--halo-charcoal);
  margin: 0;
}
.ter-caso-attr {
  color: var(--halo-charcoal-400);
  margin: 0;
}
.ter-caso-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ter-caso-stat .caso-stat {
  font-size: 36px;
  font-weight: 500;
  color: var(--halo-charcoal);
  letter-spacing: -0.04em;
  line-height: 1;
}
.ter-caso-stat .caso-stat .unit {
  font-size: 13px;
  color: var(--halo-charcoal-400);
  margin-left: 4px;
  letter-spacing: 0;
}
.ter-caso-stat p {
  margin: 6px 0 0;
  color: var(--halo-charcoal-400);
  font-size: 12px;
  line-height: 1.4;
}
.ter-caso-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── PRICING ─────────────────────────────────────── */
.ter-pricing {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.ter-pricing-card {
  width: 100%;
  max-width: 880px;
  background: #ffffff;
  border-radius: var(--r-xl);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(35,61,77,0.06);
  position: relative;
  overflow: hidden;
}
.ter-pricing-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--halo-pumpkin-100);
  opacity: 0.4;
  z-index: 0;
}
.ter-pricing-head, .ter-pricing-body, .ter-pricing-cta {
  position: relative;
  z-index: 1;
}
.ter-pricing-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ter-pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'General Sans', sans-serif;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--halo-charcoal);
}
.ter-pricing-currency { font-size: 36px; }
.ter-pricing-number { font-size: 96px; line-height: 0.9; }
.ter-pricing-unit { font-size: 18px; color: var(--halo-charcoal-400); margin-left: 8px; letter-spacing: 0.05em; }
.ter-pricing-sub { color: var(--halo-charcoal-400); max-width: 540px; margin: 0; }

.ter-pricing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.ter-pricing-col-title { margin: 0 0 16px; }
.ter-pricing-col-title--muted { color: var(--halo-charcoal-400); }
.ter-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ter-pricing-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--halo-charcoal);
}
.ter-pricing-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--halo-pumpkin);
  font-weight: 500;
}
.ter-pricing-list--muted li {
  color: var(--halo-charcoal-400);
}
.ter-pricing-list--muted li::before {
  content: "−";
  color: var(--halo-charcoal-200);
}

.ter-pricing-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ter-pricing-cta .t-body-sm {
  color: var(--halo-charcoal-400);
  flex: 1;
  min-width: 240px;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .ter-prob-grid,
  .ter-ben-grid {
    grid-template-columns: 1fr;
  }
  .ter-vs-grid,
  .ter-caso-grid,
  .ter-pricing-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ter-pricing-card { padding: 32px 24px; }
  .ter-pricing-number { font-size: 72px; }
  .ter-mockup { transform: rotate(0deg); }
}

/* ─── CASO · disclaimer ────────── */
.ter-caso-disclaimer {
  display: inline-block;
  margin: -8px 0 32px;
  padding: 6px 14px;
  background: var(--halo-bone-100);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--fg-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ─── GARANTÍA ────────── */
.ter-warranty {
  padding: 72px 0;
  background: var(--halo-pumpkin-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ter-warranty-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.ter-warranty-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--halo-pumpkin);
  color: var(--halo-bone);
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.ter-warranty-headline {
  margin: 0 0 18px;
  color: var(--halo-charcoal);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.ter-warranty-headline em {
  font-style: italic;
  color: var(--halo-pumpkin-800);
}
.ter-warranty-sub {
  max-width: 640px;
  margin: 0 auto 18px;
  color: var(--halo-charcoal);
}
.ter-warranty-sub strong {
  color: var(--halo-pumpkin-800);
  font-weight: 500;
}
.ter-warranty-fine {
  max-width: 640px;
  margin: 0 auto;
  color: var(--halo-charcoal-600);
  font-style: italic;
}

/* ─── CUPOS · banda honesta en pricing ────────── */
.ter-cupos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--fg-muted);
}
.ter-cupos .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--halo-pumpkin);
  flex-shrink: 0;
}

/* ─── FAQ ────────── */
.ter-faq {
  max-width: 820px;
  margin: 0 auto;
}
.ter-faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.ter-faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.ter-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  color: var(--fg);
}
.ter-faq-item summary::-webkit-details-marker { display: none; }
.ter-faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--halo-pumpkin);
  margin-left: 16px;
  transition: transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.ter-faq-item[open] summary::after {
  content: "−";
}
.ter-faq-item p {
  padding: 0 0 22px;
  margin: 0;
  color: var(--fg-muted);
  max-width: 680px;
  line-height: 1.6;
}
.ter-faq-item strong {
  color: var(--fg);
  font-weight: 500;
}

@media (max-width: 600px) {
  .ter-warranty {
    padding: 48px 0;
  }
  .ter-faq-item summary {
    font-size: 16px;
  }
}
