/* =========================================================================
   SimThink Home — page-level styles
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; }

/* Container — content max width */
.st-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1280px) {
  .st-container { padding: 0 40px; }
}

/* ----- Top nav ---------------------------------------------------------- */
.st-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--st-line);
}
.st-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.st-nav__brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.st-nav__brand {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.st-nav__brand .sim   { color: #000; }
.st-nav__brand .think { color: var(--st-amber); }
.st-nav__by {
  display: block;
  margin-top: 2px;
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--st-muted);
  text-decoration: none;
  line-height: 1.1;
  transition: color var(--st-dur) var(--st-ease);
}
.st-nav__by:hover { color: var(--st-amber); }
.st-nav__cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--st-radius-pill);
  background: var(--st-amber);
  color: #000;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: background var(--st-dur) var(--st-ease);
}
.st-nav__cta:hover { background: var(--st-amber-deep); }

@media (max-width: 599px) {
  .st-nav__cta {
    display: none;
  }
}

/* ----- Buttons ---------------------------------------------------------- */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  height: auto;
  padding: 12px 32px;
  border-radius: var(--st-radius-pill);
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--st-dur) var(--st-ease),
              color var(--st-dur) var(--st-ease),
              box-shadow var(--st-dur) var(--st-ease),
              transform var(--st-dur-fast) var(--st-ease);
  white-space: normal;
  text-align: center;
}
.st-btn:active { transform: translateY(1px); }

.st-btn--primary {
  background: var(--st-amber);
  color: #000;
  border-color: var(--st-amber);
}
.st-btn--primary:hover {
  background: var(--st-amber-deep);
  border-color: var(--st-amber-deep);
  box-shadow: var(--st-shadow-cta);
}

.st-btn--secondary {
  background: #fff;
  color: #000;
  border-color: #000;
}
.st-btn--secondary:hover {
  background: #000;
  color: #fff;
}

.st-btn--ghost {
  background: transparent;
  color: #000;
  border-color: #000;
}
.st-btn--ghost:hover {
  background: #fafafa;
}

.st-btn--on-dark-primary {
  background: var(--st-amber); color: #000; border-color: var(--st-amber);
}
.st-btn--on-dark-primary:hover { background: var(--st-amber-deep); border-color: var(--st-amber-deep); }
.st-btn--on-dark-secondary {
  background: transparent; color: #fff; border-color: #fff;
}
.st-btn--on-dark-secondary:hover { background: #fff; color: #000; }

/* =========================================================================
   BLOQUE 1 — HERO
   ========================================================================= */
.hero {
  padding: 56px 0 88px;
  background: #fff;
}
.hero__headline-wrap {
  margin-bottom: 48px;
  max-width: 1100px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
  }
}

.hero__headline {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 768px)  { .hero__headline { font-size: 40px; } }
@media (min-width: 1024px) { .hero__headline { font-size: 48px; } }
@media (min-width: 1280px) { .hero__headline { font-size: 52px; } }

.hero__headline .accent { color: var(--st-amber); }

/* Rotator (rotating word in headline) */
.hero__rotator {
  display: inline-block;
  position: relative;
  background: var(--st-amber);
  color: #fff;
  padding: 4px 16px 6px;
  border-radius: var(--st-radius-lg);
  margin: 0 4px;
  min-width: 0;
}
.hero__rotator-word {
  display: none;
  white-space: nowrap;
  font-size: 1.05em;
  line-height: 1;
  color: #fff;
}
.hero__rotator-word[data-active="true"] {
  display: inline-block;
  animation: rotatorFadeIn 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__rotator-fallback {
  display: none;
  color: #fff;
}
.no-js .hero__rotator { display: none; }
.no-js .hero__rotator-fallback { display: inline-block; }

@keyframes rotatorFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__rotator-word[data-active="true"] { animation: none; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 28px; line-height: 1.15; }
}

.hero__sub {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--st-ink-600);
  margin: 0 0 32px;
  max-width: 60ch;
}
@media (min-width: 768px) { .hero__sub { font-size: 18px; } }

.hero__sub strong { font-weight: 700; color: #000; }

/* Scope card */
.hero__scope {
  border: 1px solid var(--st-line);
  border-left: 3px solid var(--st-amber);
  border-radius: var(--st-radius-md);
  padding: 24px 28px;
  background: #fff;
  margin-bottom: 32px;
}
.hero__scope-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin-bottom: 8px;
}
.hero__scope-title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 8px;
}
.hero__scope-title .price { color: #000; }
.hero__scope-meta {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--st-ink-600);
  margin: 0 0 12px;
}
.hero__scope-bonus {
  font-family: var(--st-font-sans);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--st-muted);
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed var(--st-line);
}

/* CTA row */
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.hero__filter-line {
  font-family: var(--st-font-sans);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--st-muted);
  margin: 0;
  max-width: 60ch;
}

/* Right column — mockup */
.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  background: var(--st-bg-alt);
  border-radius: 14px;
  padding: 28px 28px 56px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(250,182,0,0.06), transparent 60%),
    linear-gradient(180deg, #f7f8fa 0%, #eef0f4 100%);
  z-index: 0;
}
.hero__visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(14,14,14,0.04),
    0 12px 32px rgba(14,14,14,0.10),
    0 32px 64px rgba(14,14,14,0.06);
  transition: transform var(--st-dur-slow) var(--st-ease);
}
.hero__visual-frame:hover .hero__visual-img { transform: translateY(-4px); }

.hero__visual-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #000;
  color: #fff;
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  border-radius: var(--st-radius-pill);
}
.hero__visual-tag .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--st-amber);
}

.hero__visual-caption {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 24px;
  right: 24px;
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--st-muted);
  text-align: center;
}

@media (max-width: 767px) {
  .hero__visual { min-height: 360px; }
  .hero__visual-img { max-width: 100%; }
  .hero__visual-frame { padding: 24px 20px 48px; }
}

/* =========================================================================
   BLOQUE 2 — CÓMO LO HACEMOS EN 3 DÍAS HÁBILES
   ========================================================================= */
.howto {
  position: relative;
  padding: 96px 0 112px;
  background: var(--st-ink);
  color: #fff;
  overflow: hidden;
}
.howto::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--st-amber);
}

.howto__head {
  max-width: 920px;
  margin: 0 0 64px;
}
.howto__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.howto__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .howto__title { font-size: 44px; } }
@media (min-width: 1024px) { .howto__title { font-size: 52px; } }

.howto__lede {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 70ch;
}
@media (min-width: 768px) { .howto__lede { font-size: 18px; } }

/* Steps grid */
.howto__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 720px)  { .howto__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .howto__steps { grid-template-columns: repeat(5, 1fr); } }

.step {
  position: relative;
  background: var(--st-ink);
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background var(--st-dur) var(--st-ease);
}
.step:hover { background: var(--st-ink-900); }

.step__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.step__num {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--st-amber);
}
.step__day {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: right;
  white-space: nowrap;
}

.step__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 12px;
}
.step__desc {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
  margin: 0 0 20px;
  flex: 1;
}
.step__deliverable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  background: rgba(250,182,0,0.10);
  border: 1px solid rgba(250,182,0,0.35);
  border-radius: var(--st-radius-pill);
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--st-amber);
}
.step__deliverable::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--st-amber);
}

/* End-of-section meta line */
.howto__meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-family: var(--st-font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.howto__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.howto__meta-item::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--st-amber);
  border-radius: 1px;
  flex-shrink: 0;
}

/* =========================================================================
   BLOQUE 3 — ANATOMÍA DEL SPRINT (4 entregables)
   ========================================================================= */
.anatomy {
  padding: 112px 0 112px;
  background: #fff;
}
.anatomy__head {
  max-width: 920px;
  margin: 0 auto 80px;
  text-align: center;
}
.anatomy__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.anatomy__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .anatomy__title { font-size: 44px; } }
@media (min-width: 1024px) { .anatomy__title { font-size: 52px; } }

.anatomy__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--st-ink-600);
  margin: 0 auto;
  max-width: 70ch;
  text-wrap: pretty;
}
@media (min-width: 768px) { .anatomy__lede { font-size: 18px; } }

/* Card list */
.anatomy__list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.delv {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .delv {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 72px;
  }
  .delv--reverse .delv__visual { order: 2; }
  .delv--reverse .delv__copy   { order: 1; }
}

/* Copy column */
.delv__copy { max-width: 520px; }
.delv__num {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.delv__num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--st-amber);
  width: 48px;
  display: inline-block;
}
.delv__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (min-width: 1024px) { .delv__title { font-size: 36px; } }

.delv__desc {
  font-family: var(--st-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--st-ink-600);
  margin: 0 0 24px;
}
.delv__answers {
  border-left: 3px solid var(--st-amber);
  padding: 4px 0 4px 16px;
  margin: 0 0 28px;
}
.delv__answers-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-muted);
  margin: 0 0 6px;
}
.delv__answers-text {
  font-family: var(--st-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  margin: 0;
  font-weight: 500;
}

.delv__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.delv__meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: var(--st-radius-pill);
  background: var(--st-bg-mute);
  border: 1px solid var(--st-line);
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--st-ink-600);
}

/* Visual column — mockup frame */
.delv__visual {
  position: relative;
  background: var(--st-bg-alt);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
}
.delv__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef0f4 100%);
  z-index: 0;
}
.delv__visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 6px;
  box-shadow:
    0 1px 2px rgba(14,14,14,0.04),
    0 12px 32px rgba(14,14,14,0.10),
    0 32px 64px rgba(14,14,14,0.06);
  transition: transform var(--st-dur-slow) var(--st-ease);
}
.delv__visual:hover .delv__visual-img { transform: translateY(-4px); }

.delv__visual-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-family: var(--st-font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  border-radius: var(--st-radius-pill);
}
.delv__visual-tag .dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--st-amber);
}

@media (max-width: 1023px) {
  .delv { gap: 32px; }
  .delv__visual { padding: 24px; min-height: 280px; }
  .delv__visual-img { max-width: 100%; }
  .anatomy__list { gap: 72px; }
}

/* =========================================================================
   BLOQUE 4 — BONO ORGÁNICO (3 filas: promesa · mecanismo · condición)
   ========================================================================= */
.bonus {
  position: relative;
  padding: 112px 0 120px;
  background: #fef8e6;
  overflow: hidden;
}
.bonus::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--st-amber);
}

/* ---- FILA 1 — PROMESA ---- */
.bonus__promise {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.bonus__eyebrow {
  display: block;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 28px;
}
.bonus__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 0 0 24px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .bonus__title { font-size: 44px; } }
@media (min-width: 1024px) { .bonus__title { font-size: 56px; } }
.bonus__title em {
  font-style: normal;
  color: var(--st-amber);
}
.bonus__lede {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0 auto;
  max-width: 720px;
  text-wrap: balance;
}
@media (min-width: 768px) { .bonus__lede { font-size: 20px; } }

/* ---- FILA 2 — MECANISMO 3 PASOS ---- */
.bonus__steps {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .bonus__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
}
.bonus__step-num {
  display: block;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--st-amber);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.bonus__step-title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.bonus__step-desc {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: #1a1a1a;
  margin: 0;
  max-width: 36ch;
}

/* ---- FILA 3 — CONDICIÓN + CONVENIENCIA ---- */
.bonus__foot {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .bonus__foot {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
  }
  .bonus__foot > div + div {
    border-left: 1px solid #e5e5e5;
    padding-left: 48px;
  }
  .bonus__foot > div:first-child {
    padding-right: 48px;
  }
}
.bonus__foot-eyebrow {
  display: block;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.bonus__foot-text {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
  max-width: 48ch;
}
.bonus__foot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus__foot-list li {
  font-family: var(--st-font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  padding-left: 18px;
  position: relative;
}
.bonus__foot-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #1a1a1a;
}

/* =========================================================================
   BLOQUE 4.5 — EMPIEZA ANTES DE EMPEZAR
   ========================================================================= */
.prestart {
  padding: 96px 0;
  background: #fff;
}
.prestart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .prestart__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: stretch;
  }
}

.prestart__copy { max-width: 520px; }
.prestart__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.prestart__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .prestart__title { font-size: 40px; } }
@media (min-width: 1024px) { .prestart__title { font-size: 44px; } }
.prestart__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--st-ink-600);
  margin: 0 0 28px;
}
.prestart__cta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.prestart__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.prestart__cta-row .st-btn { flex: 0 1 auto; }
@media (max-width: 599px) {
  .prestart__cta-row { flex-direction: column; align-items: stretch; width: 100%; }
  .prestart__cta-row .st-btn { width: 100%; justify-content: center; }
}
.prestart__cta-tertiary {
  margin-top: 2px;
  padding-left: 4px;
}

/* Right card — checklist */
.prestart__card {
  background: var(--st-ink);
  border-radius: 14px;
  padding: 36px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.prestart__card-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 8px;
}
.prestart__card-title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px;
}
.prestart__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prestart__checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 4px;
}
.prestart__check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--st-amber);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}
.prestart__check::after {
  content: "";
  width: 9px; height: 5px;
  border-left: 2px solid var(--st-amber);
  border-bottom: 2px solid var(--st-amber);
  transform: rotate(-45deg) translate(1px, -1px);
}
.prestart__checklist-text {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.prestart__checklist-text strong { color: #fff; font-weight: 700; }

.prestart__card-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-family: var(--st-font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* =========================================================================
   FRANJA DE CREDIBILIDAD (entre Hero y Bloque 5)
   ========================================================================= */
.credstrip {
  background: var(--st-bg-mute);
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
  padding: 20px 0;
}
.credstrip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.credstrip__logo { display: inline-flex; align-items: center; }
.credstrip__logo img { height: 28px; width: auto; display: block; }
.credstrip__text {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--st-ink-600);
  margin: 0;
  text-align: center;
  max-width: 720px;
}
.credstrip__text .st-wordmark {
  font-family: var(--st-font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
}
.credstrip__text .st-wordmark .sim   { color: var(--st-ink); }
.credstrip__text .st-wordmark .think { color: var(--st-amber); }
.credstrip__link {
  color: var(--st-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--st-amber);
  transition: color var(--st-dur) var(--st-ease);
}
.credstrip__link:hover { color: var(--st-amber); }
@media (max-width: 640px) {
  .credstrip__inner { flex-direction: column; gap: 12px; }
  .credstrip__text { font-size: 13px; }
}

/* =========================================================================
   BLOQUE 5 — PARA QUIÉN ES / NO ES
   ========================================================================= */
.fitcheck {
  padding: 112px 0;
  background: var(--st-bg-alt);
}
.fitcheck__head {
  max-width: 920px;
  margin: 0 0 56px;
}
.fitcheck__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.fitcheck__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 768px)  { .fitcheck__title { font-size: 44px; } }
@media (min-width: 1024px) { .fitcheck__title { font-size: 52px; } }

.fitcheck__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .fitcheck__cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .fitcheck__cards { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

.fitcard {
  background: #fff;
  border: 1px solid var(--st-line);
  border-top: 4px solid var(--st-amber);
  border-radius: 10px;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: border-color var(--st-dur) var(--st-ease),
              box-shadow var(--st-dur) var(--st-ease),
              transform var(--st-dur) var(--st-ease);
}
.fitcard:hover {
  border-color: var(--st-line-strong);
  border-top-color: var(--st-amber);
  box-shadow: var(--st-shadow-md);
  transform: translateY(-2px);
}
.fitcard__num {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: var(--st-tracking-eyebrow);
  color: var(--st-amber);
  margin: 0 0 16px;
  display: block;
}
.fitcard__text {
  font-family: var(--st-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  margin: 0;
  text-wrap: pretty;
}

/* "No es para ti" box */
.fitcheck__notfor {
  margin-top: 32px;
  background: var(--st-ink);
  color: #fff;
  border-radius: 12px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 900px) {
  .fitcheck__notfor {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 40px;
  }
}
.fitcheck__notfor-eyebrow {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: var(--st-amber);
  margin: 0;
}
.fitcheck__notfor-text {
  font-family: var(--st-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 70ch;
}
.fitcheck__notfor-text strong { color: #fff; font-weight: 700; }

/* =========================================================================
   BLOQUE 6 — CASOS
   ========================================================================= */
.cases {
  padding: 112px 0;
  background: #fff;
}
.cases__head { max-width: 920px; margin: 0 0 64px; }
.cases__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.cases__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 16px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .cases__title { font-size: 44px; } }
@media (min-width: 1024px) { .cases__title { font-size: 52px; } }
.cases__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--st-ink-600);
  margin: 0;
  max-width: 64ch;
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.case {
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 12px;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--st-dur) var(--st-ease),
              box-shadow var(--st-dur) var(--st-ease);
}
.case:hover { border-color: var(--st-line-strong); box-shadow: var(--st-shadow-md); }

.case__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--st-line);
}
.case__sector {
  font-family: var(--st-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-muted);
}
.case__verdict {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--st-radius-pill);
  font-family: var(--st-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid;
}
.case__verdict .dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; }
.case__verdict--good { color: var(--st-status-good-fg); background: var(--st-status-good-bg); border-color: var(--st-status-good); }
.case__verdict--mid  { color: var(--st-status-mid-fg);  background: var(--st-status-mid-bg);  border-color: var(--st-status-mid); }
.case__verdict--bad  { color: var(--st-status-bad-fg);  background: var(--st-status-bad-bg);  border-color: var(--st-status-bad); }

.case__block { margin-bottom: 14px; }
.case__block-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 6px;
}
.case__block-text {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

.case__metrics {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--st-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case__metric {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: baseline;
}
.case__metric-num {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: #000;
  margin: 0;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.case__metric-num .unit {
  font-size: 13px;
  color: var(--st-amber);
  margin-left: 2px;
  font-weight: 800;
}
.case__metric-num--text {
  font-size: 15px;
  letter-spacing: -0.005em;
  font-weight: 800;
  text-transform: none;
}
.case__metric-num--text .unit {
  display: none;
}

.cases__disclaimer {
  margin: 32px 0 16px;
  font-family: var(--st-font-sans);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: var(--st-muted);
  text-align: center;
}
.case__metric-text {
  font-family: var(--st-font-sans);
  font-size: 12px;
  line-height: 1.4;
  color: var(--st-ink-600);
  margin: 0;
}

/* CARRUSEL MOBILE — solo se activa en anchos < 900px */
@media (max-width: 899px) {
  .cases__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 24px 16px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .cases__grid::-webkit-scrollbar { display: none; }
  .cases__grid > .case {
    flex: 0 0 85%;
    max-width: 360px;
    scroll-snap-align: start;
  }
}

.cases__hint {
  display: none;
}
@media (max-width: 899px) {
  .cases__hint {
    display: block;
    text-align: center;
    font-family: var(--st-font-sans);
    font-size: 12px;
    color: var(--st-muted);
    margin-top: 12px;
    font-style: italic;
  }
}

.cases__cta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cases__cta-note {
  font-family: var(--st-font-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--st-muted);
  margin: 0;
}

/* =========================================================================
   BLOQUE 7 — INVERSIÓN
   ========================================================================= */
.invest {
  padding: 112px 0;
  background: var(--st-ink);
  color: #fff;
  position: relative;
}
.invest::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--st-amber);
}
.invest__head { max-width: 920px; margin: 0 0 56px; }
.invest__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.invest__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .invest__title { font-size: 44px; } }
@media (min-width: 1024px) { .invest__title { font-size: 52px; } }
.invest__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
  max-width: 64ch;
}

.invest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .invest__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 32px; }
}

/* Main pricing card */
.pricecard {
  background: #fff;
  color: #000;
  border-radius: 16px;
  padding: 40px 36px 36px;
  position: relative;
  overflow: hidden;
}
.pricecard__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: var(--st-radius-pill);
  background: var(--st-amber); color: #000;
  font-family: var(--st-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricecard__pill .dot { width: 6px; height: 6px; border-radius: 999px; background: #000; }
.pricecard__name {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 6px;
  color: #000;
}
.pricecard__sub {
  font-family: var(--st-font-sans);
  font-size: 15px;
  color: var(--st-ink-600);
  margin: 0 0 28px;
}
.pricecard__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
  margin-bottom: 28px;
}
.pricecard__amount {
  font-family: var(--st-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: #000;
  letter-spacing: -0.02em;
}
.pricecard__currency {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--st-muted);
  letter-spacing: 0.04em;
}
.pricecard__per {
  font-family: var(--st-font-sans);
  font-size: 14px;
  color: var(--st-muted);
}
.pricecard__includes-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 14px;
}
.pricecard__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 600px) {
  .pricecard__list { grid-template-columns: 1fr 1fr; gap: 10px 24px; }
}
.pricecard__list li {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  padding-left: 22px;
  position: relative;
}
.pricecard__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--st-amber);
  border-bottom: 2px solid var(--st-amber);
  transform: rotate(-45deg);
}
.pricecard__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--st-line);
}
.pricecard__guarantee {
  font-family: var(--st-font-sans);
  font-size: 12px;
  color: var(--st-muted);
  font-style: italic;
}

/* Bonus row inside pricecard */
.pricecard__bonus {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--st-amber-tint);
  border: 1px solid var(--st-amber);
  border-radius: 10px;
  margin: 0 0 20px;
}
.pricecard__bonus-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #000; color: #fff;
  font-family: var(--st-font-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  border-radius: var(--st-radius-pill);
}
.pricecard__bonus-text {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  margin: 0;
}
.pricecard__bonus-text strong { font-weight: 700; }

/* Add-on note inside pricecard */
.pricecard__addon {
  padding: 16px 0 20px;
  border-top: 1px dashed var(--st-line);
  margin-bottom: 0;
}
.pricecard__addon-title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 14px;
  color: #000;
  margin: 0 0 6px;
}
.pricecard__addon-text {
  font-family: var(--st-font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--st-ink-600);
  margin: 0;
}

/* RIGHT — comparison table */
.invest__side { display: flex; flex-direction: column; gap: 24px; }
.comptable {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px 24px;
}
.comptable__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 8px;
}
.comptable__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}
.comptable__scroll {
  overflow-x: auto;
  margin: 0 -8px;
  padding: 0 8px;
}
.comptable__table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--st-font-sans);
}
.comptable__table th,
.comptable__table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 12px;
  font-size: 13px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comptable__table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-top: 0;
}
.comptable__table thead .comptable__col--us {
  color: var(--st-amber);
}
.comptable__rowhead {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  width: 32%;
  font-size: 12px;
}
.comptable__cell {
  color: rgba(255,255,255,0.72);
}
.comptable__cell--us {
  color: #fff;
  background: rgba(255,191,0,0.06);
  border-left: 2px solid var(--st-amber);
  border-right: 2px solid var(--st-amber);
}
.comptable__cell--us strong { color: var(--st-amber); font-weight: 700; }
.comptable__row--price td,
.comptable__row--price th {
  border-bottom: 0;
  padding-bottom: 14px;
}
.comptable__row--price .comptable__cell--us {
  border-bottom: 2px solid var(--st-amber);
}
.comptable__foot {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  font-family: var(--st-font-sans);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 767px) {
  .comptable__scroll {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }
  .comptable__table {
    min-width: 0;
    display: block;
  }
  .comptable__table thead {
    display: none;
  }
  .comptable__table tbody {
    display: block;
  }
  .comptable__table tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
  }
  .comptable__rowhead {
    display: block;
    width: auto;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--st-tracking-eyebrow);
    color: var(--st-amber);
    border: 0;
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .comptable__cell {
    display: block;
    border: 0;
    padding: 6px 0;
    font-size: 13px;
  }
  .comptable__cell::before {
    content: attr(data-label);
    display: inline-block;
    width: 130px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--st-tracking-eyebrow);
    color: rgba(255,255,255,0.45);
    font-weight: 700;
    margin-right: 8px;
    vertical-align: top;
  }
  .comptable__cell--us {
    background: transparent;
    border-left: 3px solid var(--st-amber);
    border-right: 0;
    padding-left: 12px;
    margin-top: 4px;
  }
  .comptable__cell--us::before {
    color: var(--st-amber);
  }
  .comptable__row--price .comptable__cell--us {
    border-bottom: 0;
  }
}

/* =========================================================================
   BLOQUE 8 — FAQ
   ========================================================================= */
.faq {
  padding: 112px 0;
  background: #fff;
}
.faq__head {
  max-width: 920px;
  margin: 0 0 56px;
}
.faq__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.faq__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 16px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .faq__title { font-size: 44px; } }
@media (min-width: 1024px) { .faq__title { font-size: 52px; } }
.faq__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--st-ink-600);
  margin: 0;
  max-width: 64ch;
}

.faq__list {
  border-top: 1px solid var(--st-line);
}
.faq__item {
  border-bottom: 1px solid var(--st-line);
}
.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  position: relative;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  color: #000;
  display: block;
  transition: color var(--st-dur) var(--st-ease);
}
@media (min-width: 768px) { .faq__summary { font-size: 20px; padding: 28px 64px 28px 0; } }
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-right: 2px solid var(--st-amber);
  border-bottom: 2px solid var(--st-amber);
  transform: rotate(45deg);
  transition: transform var(--st-dur) var(--st-ease);
}
.faq__item[open] .faq__summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__item[open] .faq__summary { color: #000; }
.faq__summary:hover { color: var(--st-ink-600); }
.faq__answer {
  padding: 0 64px 28px 0;
  font-family: var(--st-font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--st-ink-600);
  max-width: 70ch;
}
.faq__answer p { margin: 0 0 12px; }
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer strong { color: #000; font-weight: 700; }

/* =========================================================================
   BLOQUE 9 — CIERRE Y CTA FINAL
   ========================================================================= */
.closer {
  position: relative;
  padding: 120px 0 128px;
  background: var(--st-ink);
  color: #fff;
  overflow: hidden;
}
.closer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--st-amber);
}
.closer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,191,0,0.10), transparent 38%),
    radial-gradient(circle at 88% 80%, rgba(255,191,0,0.06), transparent 42%);
  pointer-events: none;
}
.closer__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.closer__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 24px;
}
.closer__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 28px;
  text-wrap: balance;
}
@media (min-width: 768px)  { .closer__title { font-size: 56px; } }
@media (min-width: 1024px) { .closer__title { font-size: 68px; } }
.closer__title em {
  font-style: normal;
  color: var(--st-amber);
}
.closer__sub {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 40px;
  max-width: 64ch;
  text-wrap: pretty;
}
@media (min-width: 768px) { .closer__sub { font-size: 19px; } }
.closer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.closer__cta .st-btn--ghost {
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
.closer__cta .st-btn--ghost:hover {
  border-color: var(--st-amber);
  color: var(--st-amber);
  background: transparent;
}
.closer__guarantee {
  margin: 28px 0 0;
  font-family: var(--st-font-sans);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

/* =========================================================================
   BLOQUE 10 — FOOTER
   ========================================================================= */
.footer {
  background: #000;
  color: rgba(255,255,255,0.78);
  padding: 72px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 800px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 64px; }
}
@media (min-width: 1100px) {
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer__brand-row { max-width: 360px; }
.footer__logo {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  margin: 0 0 16px;
  color: #fff;
  text-decoration: none;
}
.footer__logo .sim   { color: #fff; }
.footer__logo .think { color: var(--st-amber); }
.footer__tagline {
  font-family: var(--st-font-sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin: 0 0 20px;
}
.footer__brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--st-radius-pill);
  color: #fff;
  font-family: var(--st-font-sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--st-dur) var(--st-ease), color var(--st-dur) var(--st-ease);
}
.footer__brand-cta:hover { border-color: var(--st-amber); color: var(--st-amber); }
.footer__brand-cta::after { content: "→"; color: var(--st-amber); }

.footer__col-title {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-amber);
  margin: 0 0 16px;
}
.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-family: var(--st-font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color var(--st-dur) var(--st-ease);
}
.footer__nav a:hover { color: var(--st-amber); }

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact li {
  font-family: var(--st-font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer__contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--st-dur) var(--st-ease);
}
.footer__contact a:hover { border-color: var(--st-amber); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
}
@media (min-width: 720px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}
.footer__copy {
  font-family: var(--st-font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.footer__copy a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--st-dur) var(--st-ease);
}
.footer__copy a:hover { border-bottom-color: var(--st-amber); }
.footer__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__legal a {
  font-family: var(--st-font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--st-dur) var(--st-ease);
}
.footer__legal a:hover { color: var(--st-amber); }

.placeholder-section {
  padding: 96px 0;
  background: var(--st-bg-mute);
  border-top: 1px solid var(--st-line);
  text-align: center;
}
.placeholder-section h2 {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 8px;
}
.placeholder-section p {
  color: var(--st-muted);
  font-size: 14px;
  margin: 0;
}

/* =========================================================================
   MEDES FORM — descarga gratis (Clientify Superform)
   ========================================================================= */
.medes-form {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--st-line);
}
.medes-form__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .medes-form__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 64px;
  }
}
.medes-form__head { max-width: 520px; }
.medes-form__eyebrow {
  font-family: var(--st-font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: #fab600;
  margin: 0 0 16px;
}
.medes-form__title {
  font-family: var(--st-font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 20px;
  text-wrap: balance;
}
@media (min-width: 768px) { .medes-form__title { font-size: 40px; } }
@media (min-width: 1024px) { .medes-form__title { font-size: 44px; } }
.medes-form__lede {
  font-family: var(--st-font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--st-ink-600);
  margin: 0;
}
.medes-form__widget {
  background: var(--st-bg-mute);
  border: 1px solid var(--st-line);
  border-radius: 14px;
  padding: 32px;
  min-height: 320px;
}
.medes-form__includes-eyebrow {
  font-family: var(--st-font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--st-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--st-ink);
  margin: 32px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--st-line);
}
.medes-form__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.medes-form__includes li {
  position: relative;
  padding-left: 28px;
  font-family: var(--st-font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--st-ink-600);
}
.medes-form__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--st-amber);
  border-radius: 3px;
  background: var(--st-amber-tint);
}
.medes-form__includes li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 1px;
  font-size: 12px;
  font-weight: 700;
  color: var(--st-amber);
  line-height: 16px;
}