@font-face {
      font-family: "Glacial Indifference";
      font-weight: 400; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Regular.otf") format("opentype");
    }
    @font-face {
      font-family: "Glacial Indifference";
      font-weight: 700; font-style: normal; font-display: swap;
      src: url("https://cdn.jsdelivr.net/gh/xz/fonts/glacialindifference/GlacialIndifference-Bold.otf") format("opentype");
    }
  

/* ===== Start Hunt — Landing styles =====
   Grounded in the Start Hunt design system:
   - Five colors only (black, yellow, white, grey, grey-light)
   - Glacial Indifference (display) + Poppins (body)
   - 8-pt spacing grid, 1px borders, minimal shadows
   - Yellow is punctuation, never background behind long text
*/

:root {
  color-scheme: light;
  --sh-black: #000000;
  --sh-yellow: #ffbd59;
  --sh-yellow-hover: #e5a94e;
  --sh-yellow-press: #cc962e;
  --sh-white: #ffffff;
  --sh-grey: #bfbfbf;
  --sh-grey-light: #e6e6e6;
  --sh-cream: #fff6e6;
  --sh-gold: #c8902f;
  --sh-ink-900: #0a0a0a;
  --sh-ink-800: #141414;
  --sh-ink-700: #1f1f1f;
  --sh-ink-400: #6b6b6b;

  /* Semantic (light) */
  --ink-1: #0a0a0a;
  --ink-2: #3d3d3d;
  --ink-3: #6b6b6b;
  --surface-0: #ffffff;
  --surface-1: #fafafa;
  --surface-2: #f4f4f4;

  /* Accent intensity (controlled by tweak) — 0..1 */
  --accent-alpha: 1;

  --font-display: "Glacial Indifference", "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Poppins", ui-sans-serif, system-ui, sans-serif;

  --fs-display: clamp(2.5rem, 5.6vw, 4.25rem);
  --fs-h2: clamp(1.75rem, 3.2vw, 2.5rem);
  --fs-h3: 1.375rem;
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px;
  --space-8: 64px; --space-9: 96px; --space-10: 128px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,0.14);

  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 120ms;
  --dur-base: 180ms;
  --dur-slow: 320ms;

  --container: 1200px;
  --topbar-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
p { text-align: justify; hyphens: auto; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface-0);
  color: var(--ink-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
strong { font-weight: 600; color: var(--ink-1); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--sh-black); color: var(--sh-white);
  padding: 10px 16px; z-index: 1000; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

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

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  line-height: 1;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-sm  { padding: 9px 14px; font-size: 13px; }
.btn-lg  { padding: 16px 26px; font-size: var(--fs-body); }

.btn-primary {
  background: var(--sh-yellow);
  color: var(--sh-black);
}
.btn-primary:hover  { background: var(--sh-yellow-hover); }
.btn-primary:active { background: var(--sh-yellow-press); transform: translateY(1px); }

.btn-secondary {
  background: transparent; color: var(--ink-1);
  border-color: var(--sh-grey-light);
}
.btn-secondary:hover { background: var(--surface-1); border-color: var(--sh-grey); }

.btn-dark { background: var(--sh-black); color: var(--sh-white); }
.btn-dark:hover { background: #1a1a1a; }

.btn-ghost {
  background: transparent; color: var(--sh-white);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }

/* ============ Section label ============ */
.section-label {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: var(--space-4);
}
.section-label--light { color: var(--sh-grey); }

.display-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink-1);
  text-wrap: balance;
}
.display-h2--light { color: var(--sh-white); }
.display-h2 em {
  font-style: normal;
  display: inline;
  background-image: linear-gradient(transparent 60%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 60%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 94%, transparent 94%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}

/* ============ Nav ============ */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--sh-grey-light);
  height: var(--topbar-h);
}
.nav {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; color: var(--ink-1); }
.nav-logo-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  overflow: hidden;
  border-radius: 4px;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a {
  padding: 8px 2px;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}
.nav-links a:hover { color: var(--ink-1); }
.nav-links a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 2px; height: 1px;
  background: var(--sh-black); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: var(--space-4); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  padding: 3px;
  background: var(--surface-0);
}
.lang-toggle button {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease-out);
}
.lang-toggle button.is-active {
  background: var(--sh-black);
  color: var(--sh-white);
}

/* ============ Hero ============ */
.hero {
  padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(255,189,89, calc(0.08 * var(--accent-alpha))), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(0,0,0,0.03), transparent 55%),
    var(--surface-0);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
[data-hero-layout="split"] .hero-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
[data-hero-layout="split"] .hero-copy { text-align: left; }
[data-hero-layout="split"] .hero-h1 { max-width: 640px; }
[data-hero-layout="split"] .hero-lede { max-width: 540px; }
[data-hero-layout="split"] .hero-ctas { justify-content: flex-start; }
[data-hero-layout="split"] .hero-metrics { justify-content: flex-start; }
[data-hero-layout="split"] .hero-candidate { text-align: left; }

.hero-copy {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-5);
}
[data-hero-layout="split"] .hero-copy { align-items: flex-start; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sh-yellow);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, calc(0.18 * var(--accent-alpha)));
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(255, 189, 89, calc(0.18 * var(--accent-alpha))); }
  50%     { box-shadow: 0 0 0 6px rgba(255, 189, 89, calc(0.06 * var(--accent-alpha))); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.022em;
  max-width: 780px;
  text-wrap: balance;
}
.hero-h1 em {
  font-style: normal;
  display: inline;
  background-image: linear-gradient(transparent 62%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 62%, rgba(255, 189, 89, calc(0.55 * var(--accent-alpha))) 95%, transparent 95%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 2px;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 580px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
  margin-top: var(--space-2);
}

.hero-free-note {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin-top: var(--space-2);
}

.hero-metrics {
  margin-top: var(--space-5);
  display: flex;
  gap: var(--space-7);
  flex-wrap: wrap;
  justify-content: center;
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
  width: 100%;
  max-width: 640px;
}
.hero-metric { display: flex; flex-direction: column; gap: 4px; }
.hero-metric-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.hero-metric-label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.hero-candidate {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}
.hero-candidate a {
  color: var(--ink-1);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--sh-grey);
  transition: border-color var(--dur-fast) var(--ease-out);
  margin-left: 4px;
}
.hero-candidate a:hover { border-color: var(--sh-black); }
.hero-candidate a svg { transition: transform var(--dur-fast) var(--ease-out); }
.hero-candidate a:hover svg { transform: translateX(2px); }

/* ------- Hero aside card (split layout) ------- */
.hero-aside {
  display: none;
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 480px;
}
[data-hero-layout="split"] .hero-aside { display: block; }

.hero-card-bg {
  position: absolute; inset: 20px -30px -20px 30px;
  background: var(--sh-black);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: calc(0.04 + 0.02 * var(--accent-alpha));
}
.hero-card {
  position: relative; z-index: 1;
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.hero-card-top {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--sh-grey-light);
}
.hero-card-frame {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--sh-black);
  padding: 3px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-card-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.hero-card-role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.hero-card-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  font-size: 11px; color: var(--ink-3);
}
.hero-card-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
}
.hero-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.hero-card-list { display: flex; flex-direction: column; gap: 10px; }
.hero-card-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.hero-card-list li:hover { border-color: var(--sh-grey); background: var(--surface-1); }
.hero-card-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sh-yellow);
  color: var(--sh-black);
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.02em;
}
.hero-card-person { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-card-pname { font-weight: 600; font-size: 13px; }
.hero-card-pmeta { font-size: 11px; color: var(--ink-3); }
.hero-card-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.hero-card-score small { font-size: 10px; color: var(--ink-3); font-weight: 600; margin-left: 1px; }

/* ============ Social proof ============ */
.socialproof {
  padding: var(--space-8) 0;
  background: var(--surface-1);
  border-top: 1px solid var(--sh-grey-light);
  text-align: center;
}
.socialproof-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.socialproof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.socialproof-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
}
.socialproof-label {
  font-size: var(--fs-small);
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.socialproof-companies {
  font-size: clamp(18px, 2.3vw, 23px);
  font-weight: 500;
  color: var(--ink-1);
  max-width: 780px;
  margin: 0 auto var(--space-5);
  line-height: 1.5;
  text-wrap: pretty;
  text-align: center;
}
.socialproof-footnote {
  font-size: var(--fs-micro);
  color: var(--ink-3);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
  text-align: center;
}

/* ============ Video Demo (Lucía) ============ */
.video-demo {
  padding: var(--space-8) 0;
  background: var(--surface-0);
  border-top: 1px solid var(--sh-grey-light);
}
.video-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-6);
}
.video-head .section-label {
  margin-bottom: var(--space-3);
}
.video-head .display-h2 {
  margin: 0 auto var(--space-4);
}
/* Subtítulo principal: qué hace Lucía */
.video-lucia {
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 500;
  color: var(--ink-2);
  max-width: 640px;
  margin: var(--space-4) auto 0;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
  hyphens: none;
}
/* Caption secundario: los términos comerciales */
.how-lead {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 500;
  color: var(--ink-3);
  max-width: 520px;
  margin: var(--space-2) auto 0;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
  hyphens: none;
}
.video-outer {
  max-width: 960px;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}
.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
}
/* Landscape (desktop) vs portrait (mobile): un solo video visible según viewport */
.video-portrait video { aspect-ratio: 9 / 16; }
.video-portrait { display: none; }
.video-landscape { display: block; }
@media (max-width: 768px) {
  .video-outer { max-width: 360px; }
  .video-landscape { display: none; }
  .video-portrait { display: block; }
}
/* Play button — before video starts */
.video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.video-wrapper.playing::before { opacity: 0; }
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.video-wrapper.playing .video-play-icon { opacity: 0; }
/* Overlay CTA — after video ends */
.video-overlay {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  background: rgba(0, 0, 0, 0.6);
}
.video-overlay.visible { display: flex; }
.video-overlay-btn { text-decoration: none; }
.video-replay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.video-replay-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ============ Trust bar — logo carousel ============ */
.trust {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--sh-grey-light);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-1);
  overflow: hidden;
}
.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  flex-shrink: 0;
}
.trust-plus {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* Carousel container */
.logo-carousel {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation-play-state: paused !important; }
}

/* Each group is at least as wide as the viewport (min-width:100%) and spreads its
   logos with space-around, so the strip is always full — no empty gap on wide
   screens. Two groups translate by -100% (one full group) for a seamless loop. */
.logo-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: logo-scroll 30s linear infinite;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex-shrink: 0;
  padding: 0 var(--space-3);
  margin: 0 calc(var(--space-7) / 2);
  opacity: 0.55;
  transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--dur-base) var(--ease-out);
}
.logo-item:hover img { filter: none; }

/* Logos with white/light content: invert so they show on light background */
.logo-item--dark img {
  filter: grayscale(100%) invert(1);
}
.logo-item--dark:hover img {
  filter: invert(1);
}

/* Neat: square icon — show at smaller size */
.logo-item--neat img {
  height: 28px;
  width: 28px;
  border-radius: 6px;
}

/* Agroinventario text fallback */
.logo-item--text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-item--text span { display: block; }

/* ============ Problema ============ */
.problema {
  padding: var(--space-8) 0;
  background: var(--surface-0);
}
.problema-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: start;
}
.problema-col p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  text-wrap: pretty;
}
.problema-col p:last-child { margin-bottom: 0; }
.problema-kicker {
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
  font-size: 18px !important;
  color: var(--ink-1) !important;
  font-weight: 500;
}

/* ============ Cómo funciona (timeline) ============ */
.how { padding: var(--space-8) 0; background: var(--surface-1); }
.how-header { max-width: 760px; margin-bottom: var(--space-7); }
.how-sub {
  margin-top: var(--space-4);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  text-wrap: pretty;
}

.timeline { position: relative; display: flex; flex-direction: column; gap: var(--space-5); }
.timeline::before {
  content: ""; position: absolute;
  left: 27px; top: 28px; bottom: 28px;
  width: 1px; background: var(--sh-grey-light);
  z-index: 0;
}
.timeline-step {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.timeline-step:hover {
  border-color: var(--ink-1);
  box-shadow: var(--shadow-md);
}

.timeline-mark {
  width: 56px; height: 56px;
  background: var(--sh-black);
  border-radius: 4px;
  display: grid; place-items: center;
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  position: relative;
  flex-shrink: 0;
}
.timeline-mark::before {
  content: ""; position: absolute; inset: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
}
.timeline-mark span { position: relative; z-index: 1; }

.timeline-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.timeline-body p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 680px;
  text-wrap: pretty;
}

/* ============ Modalidades ============ */
.modalidades {
  background: var(--surface-1);
  color: var(--ink-1);
  padding: var(--space-8) 0;
  position: relative;
  border-top: 1px solid var(--sh-grey-light);
}
.modalidades-header {
  max-width: 760px;
  margin-bottom: var(--space-7);
}
.modalidades-intro {
  margin-top: var(--space-4);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

/* Table (desktop) — light section, recommended column inverts to dark to pop */
.mod-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sh-grey-light);
  margin-bottom: var(--space-6);
  background: var(--surface-0);
}
.mod-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mod-th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-1);
  background: var(--surface-1);
  border-bottom: 1px solid var(--sh-grey-light);
  vertical-align: bottom;
  position: relative;
}
.mod-th--row {
  width: 22%;
  background: var(--surface-0);
  border-bottom-color: var(--sh-grey-light);
}
.mod-th--highlight {
  background: #fff6e6;
  color: var(--ink-1);
  border-bottom-color: var(--sh-grey-light);
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow), inset 0 3px 0 var(--sh-yellow);
}
.mod-col-name {
  display: block;
  margin-top: var(--space-2);
}
.mod-recommended-pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--sh-yellow);
  color: var(--sh-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}
.mod-row-label {
  padding: var(--space-3) var(--space-5);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sh-grey-light);
  white-space: nowrap;
  background: var(--surface-0);
}
.mod-cell {
  padding: var(--space-3) var(--space-5);
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
}
.mod-cell--highlight {
  background: #fff6e6;
  color: var(--ink-2);
  border-bottom-color: var(--sh-grey-light);
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow);
}
.mod-row:last-child .mod-row-label,
.mod-row:last-child .mod-cell {
  border-bottom: none;
}
.mod-row:last-child .mod-cell--highlight {
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow), inset 0 -3px 0 var(--sh-yellow);
}

/* Transversal lines + CTA */
.mod-transversal {
  margin-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
  padding-top: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.mod-transversal p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}
.mod-cta {
  margin-top: var(--space-6);
  text-align: center;
}

/* Mobile cards (hidden on desktop) */
.mod-cards {
  display: none;
}

@media (max-width: 760px) {
  .mod-table-wrap { display: none; }
  .mod-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }
  .mod-card {
    background: var(--surface-0);
    border: 1px solid var(--sh-grey-light);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
  }
  .mod-card--highlight {
    background: #fff6e6;
    border-color: var(--sh-yellow);
  }
  .mod-card-top {
    margin-bottom: var(--space-2);
  }
  .mod-card-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--ink-1);
    margin-bottom: var(--space-4);
  }
  .mod-card--highlight .mod-card-name {
    color: var(--ink-1);
  }
  .mod-card-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
  }
  .mod-card-rows > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--sh-grey-light);
  }
  .mod-card--highlight .mod-card-rows > div {
    border-bottom-color: var(--sh-grey-light);
  }
  .mod-card-rows > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .mod-card-rows dt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .mod-card--highlight .mod-card-rows dt {
    color: var(--ink-3);
  }
  .mod-card-rows dd {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.45;
  }
  .mod-card--highlight .mod-card-rows dd {
    color: var(--ink-2);
  }
}

/* ============ Lucía ============ */
.lucia {
  padding: var(--space-8) 0;
  background: var(--surface-1);
  border-top: 1px solid var(--sh-grey-light);
}
.lucia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.lucia-copy { display: flex; flex-direction: column; gap: var(--space-5); }
.lucia-copy .display-h2 { margin-bottom: 0; }
.lucia-copy p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}

.lucia-card {
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-4);
}
.lucia-card-top {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--sh-grey-light);
}
.lucia-card-frame {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--sh-black);
  padding: 3px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.lucia-card-frame img { width: 100%; height: 100%; object-fit: contain; }
.lucia-card-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.lucia-card-role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.lucia-card-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  font-size: 11px; color: var(--ink-3);
}
.lucia-card-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
}

.lucia-card-steps { display: flex; flex-direction: column; gap: var(--space-3); }
.lucia-step {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--ink-2);
  border: 1px solid var(--sh-grey-light);
}
.lucia-step::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sh-grey-light);
  flex-shrink: 0;
}
.lucia-step--done {
  background: var(--surface-1);
  color: var(--ink-3);
}
.lucia-step--done::before { background: #22c55e; }
.lucia-step--active {
  border-color: var(--sh-yellow);
  background: rgba(255, 189, 89, 0.06);
  color: var(--ink-1);
  font-weight: 600;
}
.lucia-step--active::before {
  background: var(--sh-yellow);
  box-shadow: 0 0 0 3px rgba(255, 189, 89, 0.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@media (max-width: 1000px) {
  .lucia-inner { grid-template-columns: 1fr; gap: var(--space-7); }
}

/* ============ Credibilidad ============ */
.cred { padding: var(--space-8) 0; background: var(--surface-0); }
.cred-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.cred-copy p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  text-wrap: pretty;
}
.cred-copy .display-h2 { margin-bottom: var(--space-5); }
.cred-copy .btn { display: block; width: fit-content; margin-left: auto; margin-top: var(--space-5); }

.cred-stats {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--sh-grey-light);
}
.cred-stats div { display: flex; flex-direction: column; gap: 4px; }
.cred-stats dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--ink-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.cred-stats dd {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.3;
}

.cred-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
}
.cred-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}
.cred-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(100%) contrast(1.02);
  transition: filter var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.cred-card:hover .cred-photo img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.02);
}
.cred-framemark {
  position: absolute; left: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: var(--sh-black);
  padding: 3px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
}
.cred-framemark img { width: 100%; height: 100%; object-fit: contain; }

.cred-caption { padding: var(--space-5); }
.cred-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 4px;
}
.cred-role {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-1);
  margin-bottom: 2px;
}
.cred-creds {
  font-size: 13px;
  color: var(--ink-3);
}

/* ============ Testimonios ============ */
.quotes { padding: var(--space-8) 0; background: var(--surface-1); }
.quotes-header { max-width: 720px; margin-bottom: var(--space-8); }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.quote-card {
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-4);
  position: relative;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.quote-card:hover {
  border-color: var(--ink-1);
  box-shadow: var(--shadow-md);
}
.quote-mark {
  width: 28px; height: 20px;
  color: var(--sh-yellow);
  opacity: calc(var(--accent-alpha) * 0.9 + 0.1);
}
.quote-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-1);
  flex: 1;
  text-wrap: pretty;
}
.quote-card figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--space-4);
  border-top: 1px solid var(--sh-grey-light);
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sh-yellow);
  color: var(--sh-black);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: 14px; }
.quote-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* ============ FAQ ============ */
.faq { padding: var(--space-8) 0; background: var(--surface-0); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--space-10); align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-item[open] { border-color: var(--ink-1); }
.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4);
  transition: background var(--dur-fast) var(--ease-out);
  color: var(--ink-1);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-1); }
.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute;
  background: var(--ink-1);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-icon::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
}
.faq-item[open] .faq-body { max-height: 400px; }
.faq-body p {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============ CTA blocks ============ */
.how-cta, .quotes-cta, .faq-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.link-cta {
  display: inline-block;
  margin-top: var(--space-4);
  color: var(--sh-black);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
}
.link-cta:hover { opacity: 0.7; }

/* ============ Contacto ============ */
.contacto {
  background: var(--sh-black);
  color: var(--sh-white);
  padding: var(--space-8) 0;
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.contacto-copy .display-h2 { margin-bottom: var(--space-5); }
.contacto-copy p {
  color: var(--sh-grey);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: var(--space-6);
  text-wrap: pretty;
}
.contacto-bullets { display: flex; flex-direction: column; gap: var(--space-3); }
.contacto-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--sh-grey);
  font-size: 14px;
}
.contacto-bullets svg {
  width: 16px; height: 16px;
  color: var(--sh-yellow);
  flex-shrink: 0;
}

.contacto-cta {
  display: flex; flex-direction: column; gap: var(--space-4);
  align-items: flex-start; justify-content: center;
  background: var(--sh-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.contacto-cta-title {
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink-1);
}
.contacto-cta-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.contacto-cta .btn-primary { width: 100%; }

.contact-form {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--sh-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.contact-form label span { letter-spacing: 0.02em; }
.contact-form input {
  width: 100%;
  background: var(--surface-1);
  color: var(--ink-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.3;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.contact-form input::placeholder { color: var(--ink-3); }
.contact-form input:focus {
  outline: none;
  border-color: var(--sh-yellow);
  background: var(--surface-0);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.contact-form .btn-primary { margin-top: var(--space-3); width: 100%; }
.form-disclaimer {
  font-size: 11.5px;
  color: var(--sh-ink-400);
  line-height: 1.55;
  margin-top: 4px;
}

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }

/* ============ Footer ============ */
.footer {
  background: var(--sh-black);
  color: var(--sh-grey);
  padding: var(--space-9) 0 var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}
.footer-logomark {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: var(--space-4);
}
.footer-logomark img { width: 100%; height: 100%; object-fit: cover; }
.footer-word {
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--space-3);
}
.footer-word sup { font-size: 11px; margin-left: 2px; color: var(--sh-grey); }
.footer-brand p {
  font-size: 13px; line-height: 1.6; max-width: 280px;
}
.footer-brand address {
  font-style: normal;
  margin-top: var(--space-4);
  font-size: 13px;
  line-height: 1.8;
}
.footer-brand address a { color: var(--sh-grey); transition: color var(--dur-fast) var(--ease-out); }
.footer-brand address a:hover { color: var(--sh-white); }
.footer-col h4 {
  color: var(--sh-white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--sh-grey);
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--sh-white); }

.footer-candidate {
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5);
  background: var(--sh-ink-900);
}
.footer-candidate-title {
  color: var(--sh-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.footer-candidate-sub {
  color: var(--sh-grey);
  font-size: 13px;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--sh-grey);
}

/* ============ Reveal animation ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-eyebrow .dot { animation: none; }
}

/* ============ Tweaks panel ============ */
.tweaks {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 280px;
  background: var(--sh-white);
  color: var(--ink-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  z-index: 200;
  font-family: var(--font-body);
}
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--sh-grey-light);
}
.tweaks-close {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--ink-3);
  border-radius: 4px;
}
.tweaks-close:hover { background: var(--surface-1); color: var(--ink-1); }
.tweaks-row {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--space-4);
}
.tweaks-row label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-3);
}
.tweaks-row input[type="range"] {
  width: 100%;
  accent-color: var(--sh-black);
}
.tweaks-row output {
  font-size: 12px;
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
  align-self: flex-end;
}
.tweaks-seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-1);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 2px;
}
.tweaks-seg button {
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--ink-3);
  transition: all var(--dur-fast) var(--ease-out);
}
.tweaks-seg button.is-active {
  background: var(--sh-black);
  color: var(--sh-white);
}
.tweaks-hint {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.4;
}


/* ============ User type modal ============ */
.type-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  backdrop-filter: blur(6px);
}
.type-modal[hidden] { display: none; }
.type-modal-box {
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: 4px;
  padding: var(--space-8) var(--space-7);
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.type-modal-lang {
  width: fit-content;
  margin: var(--space-6) auto 0;
}
.type-modal-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sh-grey);
  margin-bottom: var(--space-3);
}
.type-modal-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--sh-black);
  line-height: 1.15;
  margin-bottom: var(--space-7);
}
.type-modal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.type-modal-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-5);
  border: 1px solid var(--sh-grey-light);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.type-modal-card:hover {
  border-color: var(--sh-black);
  background: var(--sh-grey-light);
}
.type-modal-card strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--sh-black);
}
.type-modal-card span {
  font-size: 13px;
  color: var(--sh-grey);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .type-modal-cards { grid-template-columns: 1fr; }
  .type-modal-box { padding: var(--space-6) var(--space-5); }
}

/* ============ Responsive ============ */
/* Laptop range (13"/14" at 100% zoom): scale down the type ramp and
   vertical rhythm a notch so the page doesn't feel oversized. Big monitors
   keep the full scale; below 1000px the mobile rules take over. */
@media (min-width: 1001px) and (max-width: 1440px) {
  :root {
    --fs-display: clamp(2.25rem, 4.4vw, 3.5rem);
    --fs-h2: clamp(1.6rem, 2.9vw, 2.15rem);
    --fs-h3: 1.25rem;
    --fs-body: 0.9375rem;
    --space-8: 52px;
    --space-9: 76px;
    --space-10: 104px;
    --container: 1120px;
  }
  .hero-lede { font-size: 16px; }
}
/* Tablet/narrow: the anchor links + "Para candidatos" overflow the header
   (~1050px) well before the hero reflows to one column (1000px), clipping the
   CTAs. Collapse them early so the nav keeps only logo + switch + lang + CTA. */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-right .btn-secondary { display: none; }
}
@media (max-width: 1000px) {
  [data-hero-layout="split"] .hero-inner { grid-template-columns: 1fr; }
  [data-hero-layout="split"] .hero-aside { justify-self: center; }
  /* .diff-grid removed — replaced by .modalidades */
  .problema-inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .cred-inner, .contacto-inner, .faq-inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
/* Tablet: the split hero stacks to one column, but its copy keeps the
   left-aligned narrow caps meant for the side-by-side layout, leaving a big
   empty gutter on the right. Re-center it (like the section headers) so the
   stacked hero reads as balanced. Mobile (<=640) keeps its own treatment. */
@media (min-width: 641px) and (max-width: 1000px) {
  [data-hero-layout="split"] .hero-copy { text-align: center; align-items: center; }
  [data-hero-layout="split"] .hero-h1,
  [data-hero-layout="split"] .hero-lede { margin-left: auto; margin-right: auto; }
  [data-hero-layout="split"] .hero-ctas { justify-content: center; }
  [data-hero-layout="split"] .hero-metrics { justify-content: center; margin-left: auto; margin-right: auto; }
  [data-hero-layout="split"] .hero-candidate { text-align: center; }
}
@media (max-width: 640px) {
  :root { --space-10: 80px; --space-9: 64px; }
  .nav-links { display: none; }
  .nav { gap: var(--space-3); }
  .nav-right .btn-secondary { display: none; }
  .hero-metrics { gap: var(--space-5); justify-content: flex-start; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .quotes-grid { grid-template-columns: 1fr; }
  /* .diff-grid removed — replaced by .modalidades */
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-2); }
  .footer-candidate { flex-direction: column; align-items: flex-start; }
  .timeline-step { grid-template-columns: 44px 1fr; gap: var(--space-4); padding: var(--space-4); }
  .timeline-mark { width: 44px; height: 44px; font-size: 14px; }
  .timeline::before { left: 22px; }
  .cred-stats { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-3); }
  .cred-stats dt { font-size: 24px; }
  .contact-form { padding: var(--space-4); }
}

/* ============================================================
   Rediseño Lucía-first — nav switch, hero demo, pasos, moat,
   comparativa, tabla-puente. (PRD landing Lucía)
   ============================================================ */

/* ---------- Brand switch (AI / Consultoría) ---------- */
.brand-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-pill);
  background: var(--surface-1);
}
.brand-switch-tab {
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-3);
  border-radius: var(--radius-pill);
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.brand-switch-tab:hover { color: var(--ink-1); }
.brand-switch-tab.is-active {
  background: var(--sh-black);
  color: var(--sh-white);
}

.hero-metric-num--sm { font-size: 24px; }

/* ---------- Hero animated chat demo ---------- */
.hero-demo {
  display: block;
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero-demo-bg {
  position: absolute; inset: 22px -28px -22px 28px;
  background: var(--sh-black);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: calc(0.05 + 0.02 * var(--accent-alpha));
}
.hero-demo-card {
  position: relative; z-index: 1;
  background: var(--sh-white);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-demo-top {
  display: flex; align-items: center; gap: 10px;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-1);
}
.hero-demo-frame {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sh-cream);
  flex-shrink: 0;
}
.hero-demo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-demo-name { font-weight: 600; font-size: 14px; line-height: 1.2; }
.hero-demo-role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.hero-demo-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--ink-3);
}
.hero-demo-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34c759;
}
.hero-demo-body {
  display: flex; flex-direction: column; gap: 10px;
  padding: var(--space-5);
  min-height: 340px;
}

/* Chat bubbles */
.hd-msg {
  max-width: 85%;
  padding: 10px 13px;
  font-size: 13.5px;
  line-height: 1.45;
  border-radius: 14px;
}
.hd-msg--user {
  align-self: flex-end;
  background: var(--sh-black);
  color: var(--sh-white);
  border-bottom-right-radius: 4px;
}
.hd-msg--lucia {
  align-self: flex-start;
  background: var(--surface-2);
  color: var(--ink-1);
  border-bottom-left-radius: 4px;
}

/* Typing indicator */
.hd-typing {
  align-self: flex-start;
  display: inline-flex; gap: 4px;
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.hd-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-3);
  animation: hd-blink 1.2s infinite ease-in-out both;
}
.hd-typing span:nth-child(2) { animation-delay: 0.2s; }
.hd-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes hd-blink { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }

/* Brief card */
.hd-brief {
  align-self: stretch;
  display: flex; flex-direction: column; gap: 6px;
  padding: 12px 14px;
  background: var(--sh-cream);
  border: 1px solid rgba(200,144,47,0.25);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink-1);
}
.hd-brief-row { display: flex; gap: 8px; align-items: center; }

/* Search button */
.hd-search-btn {
  align-self: stretch;
  padding: 11px 14px;
  background: var(--sh-yellow);
  color: var(--sh-black);
  font-weight: 600;
  font-size: 13.5px;
  border-radius: 10px;
  text-align: center;
}
.hd-search-btn.is-pulse { animation: hd-pulse 0.9s ease-in-out infinite; }
@keyframes hd-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,189,89,0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(255,189,89,0); }
}

/* Result */
.hd-result { align-self: stretch; display: flex; flex-direction: column; gap: 8px; }
.hd-result-head { font-size: 12px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.02em; }
.hd-result-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--sh-grey-light);
  border-radius: 12px;
  background: var(--surface-0);
}
.hd-result-avatar {
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sh-black); color: var(--sh-white);
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}
.hd-result-person { min-width: 0; flex: 1; }
.hd-result-name { font-size: 12.5px; font-weight: 500; color: var(--ink-1); }
.hd-result-fit {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--sh-gold);
}
.hd-result-fit small { font-size: 10px; }
.hd-seed {
  align-self: stretch;
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: center;
  font-style: italic;
  padding-top: 2px;
}

/* Animation states (only when JS enables + motion allowed) */
.hero-demo-card.js-anim [data-hd-step],
.hero-demo-card.js-anim [data-hd-brief] {
  opacity: 0;
  transform: translateY(8px);
}
.hero-demo-card.js-anim [data-hd-step].is-shown,
.hero-demo-card.js-anim [data-hd-brief].is-shown {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.hero-demo-card.js-anim .hd-typing { display: inline-flex; }
.hero-demo-card.js-anim .hd-typing[hidden] { display: none; }
/* Typing bubble is hidden in the static (no-JS) fallback */
.hd-typing { display: none; }

/* ---------- Cómo funciona (4 pasos) ---------- */
.pasos { padding: var(--space-8) 0; background: var(--surface-1); }
.pasos-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-7); }
.pasos-header .section-label { justify-content: center; }
.pasos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.paso {
  background: var(--surface-0);
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.paso-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sh-gold);
  letter-spacing: 0.04em;
}
.paso-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1.2; }
.paso-body { font-size: 14px; color: var(--ink-2); line-height: 1.5; text-align: left; }
.pasos-cta { margin-top: var(--space-7); text-align: center; }

/* ---------- El moat ---------- */
.moat { padding: var(--space-8) 0; background: var(--surface-0); }
.moat-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-7); }
.moat-header .section-label { justify-content: center; }
.moat-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}
.moat-node { display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.moat-chip {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--sh-grey-light);
  border-radius: 12px;
  background: var(--surface-1);
  text-align: center;
  min-width: 140px;
}
.moat-chip--lucia { background: var(--sh-cream); border-color: rgba(200,144,47,0.3); }
.moat-chip--you {
  background: var(--sh-black); color: var(--sh-white); border-color: var(--sh-black);
  justify-content: center;
}
.moat-chip-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.moat-chip-tag { font-size: 11px; color: var(--ink-3); }
.moat-chip--you .moat-chip-name { font-size: 18px; }
.moat-node--base .moat-base-title,
.moat-base-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.moat-node--base {
  align-items: center; justify-content: center; text-align: center;
  padding: 14px 20px;
  border: 2px solid var(--sh-yellow);
  border-radius: 14px;
  background: var(--surface-0);
  min-width: 180px;
}
.moat-base-sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.moat-arrow {
  align-self: center;
  font-size: 22px;
  color: var(--sh-gold);
  font-weight: 700;
}
.moat-body {
  max-width: 760px; margin: 0 auto var(--space-6);
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
  text-align: center;
}
.moat-callout {
  max-width: 760px; margin: 0 auto;
  padding: var(--space-5) var(--space-6);
  background: var(--sh-black);
  border-radius: var(--radius-lg);
}
.moat-callout p { text-align: center; color: var(--sh-grey-light); font-size: 16px; line-height: 1.6; }
.moat-callout em {
  font-style: normal; font-weight: 600; color: var(--sh-white);
  display: block; margin-top: 6px;
  background-image: linear-gradient(transparent 60%, rgba(255,189,89,0.5) 60%);
  background-repeat: no-repeat; background-size: 100% 100%;
  display: inline; padding: 0 2px;
}

/* ---------- Comparativa ---------- */
.compare { padding: var(--space-8) 0; background: var(--surface-1); }
.compare-header { text-align: center; max-width: 760px; margin: 0 auto var(--space-7); }
.compare-header .section-label { justify-content: center; }
.compare-table-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
  overflow: hidden;
}
.compare-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.ct-th {
  padding: var(--space-4) var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-1);
  background: var(--surface-1);
  border-bottom: 1px solid var(--sh-grey-light);
  vertical-align: bottom;
}
.ct-th--row { width: 20%; background: var(--surface-0); }
.ct-col-name { display: block; }
.ct-col-sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.ct-th--highlight {
  background: var(--sh-cream);
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow), inset 0 3px 0 var(--sh-yellow);
}
.ct-pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--sh-yellow);
  color: var(--sh-black);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ct-row-label {
  padding: var(--space-3) var(--space-4);
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.02em; text-transform: uppercase;
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
}
.ct-cell {
  padding: var(--space-3) var(--space-4);
  font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
}
.ct-cell--highlight {
  background: var(--sh-cream);
  color: var(--ink-1);
  font-weight: 500;
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow);
}
.ct-row:last-child .ct-row-label,
.ct-row:last-child .ct-cell { border-bottom: none; }
.ct-row:last-child .ct-cell--highlight {
  box-shadow: inset 2px 0 0 var(--sh-yellow), inset -2px 0 0 var(--sh-yellow), inset 0 -3px 0 var(--sh-yellow);
}
.compare-cards { display: none; }
.compare-note {
  max-width: 700px; margin: var(--space-5) auto 0;
  text-align: center; font-size: 13px; color: var(--ink-3);
}

/* ---------- Tabla-puente (modalidades) ---------- */
.bridge-table-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sh-grey-light);
  background: var(--surface-0);
  overflow: hidden;
}
.bridge-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.bt-th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--surface-1);
  border-bottom: 1px solid var(--sh-grey-light);
}
.bt-th--mod { width: 34%; }
.bt-th--price { width: 24%; text-align: right; }
.bt-row td { border-bottom: 1px solid var(--sh-grey-light); vertical-align: middle; }
.bt-row:last-child td { border-bottom: none; }
.bt-mod {
  padding: var(--space-4) var(--space-5);
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
}
.bt-mod-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-1); }
.bt-cell {
  padding: var(--space-4) var(--space-5);
  font-size: 14px; color: var(--ink-2);
}
.bt-price {
  padding: var(--space-4) var(--space-5);
  text-align: right;
}
.bt-price strong {
  display: block;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink-1);
}
.bt-price span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.bt-price-talk { font-weight: 600; color: var(--ink-3); font-size: 15px; }
.bt-row--highlight td { background: var(--sh-cream); }
.bt-row--highlight .bt-mod-name { color: var(--ink-1); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-demo { justify-self: center; max-width: 420px; margin-top: var(--space-6); }
}
@media (max-width: 860px) {
  .pasos-grid { grid-template-columns: repeat(2, 1fr); }
  .moat-flow { flex-direction: column; align-items: center; }
  .moat-arrow { transform: rotate(90deg); }
  .moat-node, .moat-node--base { width: 100%; max-width: 300px; }
}
@media (max-width: 760px) {
  .compare-table-wrap { display: none; }
  .compare-cards {
    display: flex; flex-direction: column; gap: var(--space-4);
  }
  .compare-card {
    background: var(--surface-0);
    border: 1px solid var(--sh-grey-light);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
  }
  .compare-card--highlight {
    background: var(--sh-cream);
    border-color: var(--sh-yellow);
  }
  .compare-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-3); }
  .compare-card-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
  .compare-card-rows { display: flex; flex-direction: column; gap: var(--space-3); }
  .compare-card-rows > div { display: flex; flex-direction: column; gap: 2px; }
  .compare-card-rows dt { font-size: 11px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.03em; }
  .compare-card-rows dd { font-size: 14.5px; color: var(--ink-1); }

  .bridge-table, .bridge-table tbody, .bridge-table tr, .bridge-table td, .bridge-table thead { display: block; width: 100%; }
  .bridge-table thead { display: none; }
  .bt-row { border-bottom: 1px solid var(--sh-grey-light); padding: var(--space-3) 0; }
  .bt-row td { border-bottom: none; }
  .bt-price { text-align: left; }
}
@media (max-width: 560px) {
  .pasos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* Tighten the nav so logo + switch + lang + CTA fit one row cleanly */
  .nav { gap: var(--space-2); padding: 0 var(--space-4); }
  .nav-logo-word { display: none; }
  .nav-right { gap: var(--space-2); }
  .brand-switch { padding: 2px; }
  .brand-switch-tab { padding: 6px 11px; font-size: 12px; }
  .lang-toggle { padding: 2px; }
  .lang-toggle button { padding: 4px 8px; font-size: 10px; }
  .btn-sm { padding: 8px 12px; }
}

/* ---------- Tabla-puente en cards verticales ---------- */
.bridge-list { display: flex; flex-direction: column; gap: var(--space-3); }
.bridge-item {
  border: 1px solid var(--sh-grey-light);
  border-radius: var(--radius-lg);
  background: var(--surface-0);
  padding: var(--space-5) var(--space-6);
}
.bridge-item--lucia { background: var(--sh-cream); border-color: var(--sh-yellow); }
.bridge-item-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.bridge-item-name {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-1);
}
.bridge-item-price { text-align: right; flex-shrink: 0; }
.bridge-item-price strong {
  display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink-1);
}
.bridge-item-price > span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.bridge-item .ct-pill { margin-top: var(--space-3); margin-bottom: 0; }
.bridge-item-scope { margin-top: var(--space-3); font-size: 14.5px; color: var(--ink-2); text-align: left; }
