.reveal { opacity: 1 !important; transform: none !important; }
/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy:        #1A2744;
  --navy-light:  #243656;
  --amber:       #E8A840;
  --amber-hover: #D4952E;
  --coral:       #E0792A;
  --emerald:     #0B7A3F;
  --rose:        #E5006D;
  --cream:       #FFFBF5;
  --cream-alt:   #F5F0E8;
  --ink:         #1A2744;
  --ink-soft:    #4A5468;
  --line:        rgba(26, 39, 68, 0.12);

  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-accent:  'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius: 14px;
  --container: 1160px;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; }
::selection { background: rgba(232, 168, 64, 0.35); color: var(--navy); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-alt); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   SIGNATURE — the tri-bar motif (from the logo: 3 bars =
   te encuentran / te eligen / se quedan)
   ============================================================ */
.tribar { display: inline-flex; align-items: flex-end; gap: 4px; height: 22px; }
.tribar span { width: 7px; border-radius: 3px; }
.tribar span:nth-child(1) { height: 70%; background: var(--coral); }
.tribar span:nth-child(2) { height: 100%; background: var(--amber); }
.tribar span:nth-child(3) { height: 55%; background: var(--emerald); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow .tribar { height: 14px; }
.eyebrow .tribar span { width: 4px; border-radius: 2px; }

/* ============================================================
   TYPE
   ============================================================ */
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
.h-display {
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.h-section {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.accent-italic {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
}
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(232, 168, 64, 0.35);
}
.btn-amber:hover { background: var(--amber-hover); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-hover); }
.btn-ghost-dark {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 251, 245, 0.3);
}
.btn-ghost-dark:hover { border-color: var(--amber); color: var(--amber); }
.btn-navy-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-navy-outline:hover { background: var(--navy); color: var(--cream); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 251, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(26, 39, 68, 0.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--navy); background: var(--cream-alt); }
.nav-cta {
  padding: 10px 20px !important;
  border-radius: 10px !important;
  background: var(--navy);
  color: var(--cream) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy-light) !important; }
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--navy);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
}
.nav-mobile a {
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
}
.nav-mobile a:hover { background: var(--cream-alt); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 148px 0 90px;
  overflow: hidden;
}
.hero-bars {
  position: absolute;
  right: -40px;
  bottom: -60px;
  display: flex;
  align-items: flex-end;
  gap: 28px;
  opacity: 0.07;
  pointer-events: none;
}
.hero-bars span { width: 110px; border-radius: 22px; }
.hero-bars span:nth-child(1) { height: 380px; background: var(--coral); }
.hero-bars span:nth-child(2) { height: 520px; background: var(--amber); }
.hero-bars span:nth-child(3) { height: 300px; background: var(--emerald); }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(11, 122, 63, 0.09);
  border: 1px solid rgba(11, 122, 63, 0.25);
  color: var(--emerald);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero h1 { color: var(--navy); margin-bottom: 22px; }
.hero h1 .accent-italic { color: var(--coral); }
.hero .lead { max-width: 500px; margin: 0 0 34px; }
.hero .lead strong { color: var(--navy); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.hero-proof span::before { content: "✓ "; color: var(--emerald); font-weight: 600; }

/* Dashboard mockup — the dark artifact on the light page */
.mock {
  position: relative;
  background: var(--navy);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 30px 70px rgba(26, 39, 68, 0.35);
  transform: rotate(1.2deg);
}
.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.mock-head .brand { color: var(--amber); font-weight: 600; }
.mock-head .when { color: rgba(255, 251, 245, 0.5); }
.mock-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.stat {
  background: var(--navy-light);
  border: 1px solid rgba(255, 251, 245, 0.07);
  border-radius: 12px;
  padding: 14px 16px;
}
.stat b {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.stat small { font-family: var(--font-mono); font-size: 11px; color: rgba(255, 251, 245, 0.5); }
.stat .up { color: var(--emerald); font-size: 14px; }
.stat .amber { color: var(--amber); }
.stat .green { color: #35B36B; }
.mock-chart {
  background: var(--navy-light);
  border: 1px solid rgba(255, 251, 245, 0.07);
  border-radius: 12px;
  padding: 16px;
}
.mock-chart .bars { display: flex; align-items: flex-end; gap: 7px; height: 72px; }
.mock-chart .bars i { flex: 1; border-radius: 4px; background: rgba(232, 168, 64, 0.55); transform-origin: bottom; }
.mock-chart .bars i.hot { background: var(--amber); }
.mock-chart .bars i.peak { background: var(--coral); }
.mock-chart .days {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 251, 245, 0.4);
}
.mock-tag {
  position: absolute;
  top: -16px;
  left: -18px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(232, 168, 64, 0.4);
  transform: rotate(-3deg);
}

/* ============================================================
   TRUST STRIP (navy)
   ============================================================ */
.trust {
  background: var(--navy);
  color: var(--cream);
  padding: 44px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
}
.trust-item:nth-child(1) b { color: var(--amber); }
.trust-item:nth-child(2) b { color: var(--coral); }
.trust-item:nth-child(3) b { color: #35B36B; }
.trust-item:nth-child(4) b { color: var(--cream); }
.trust-item small {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 251, 245, 0.6);
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--cream-alt); }
.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { color: var(--navy); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 18px; margin: 0; }

/* ============================================================
   SERVICIOS — 3 pilares (los 3 colores del logo)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar-top { height: 7px; }
.pillar[data-color="coral"]   .pillar-top { background: var(--coral); }
.pillar[data-color="amber"]   .pillar-top { background: var(--amber); }
.pillar[data-color="emerald"] .pillar-top { background: var(--emerald); }
.pillar-head { padding: 26px 26px 8px; }
.pillar-head .step {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pillar[data-color="coral"]   .step { color: var(--coral); }
.pillar[data-color="amber"]   .step { color: var(--amber-hover); }
.pillar[data-color="emerald"] .step { color: var(--emerald); }
.pillar-head h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 6px;
}
.pillar ul { list-style: none; margin: 0; padding: 12px 26px 28px; display: flex; flex-direction: column; gap: 16px; }
.pillar li { display: flex; gap: 12px; align-items: flex-start; }
.pillar li .ico { font-size: 19px; line-height: 1.45; }
.pillar li b { display: block; font-size: 15.5px; color: var(--navy); }
.pillar li p { margin: 2px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

/* ============================================================
   CÓMO FUNCIONA — timeline real de 3 pasos
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 16%;
  right: 16%;
  border-top: 2px dashed rgba(26, 39, 68, 0.18);
}
.step-card { text-align: center; position: relative; }
.step-card .num {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--cream-alt);
  position: relative;
  z-index: 1;
}
.step-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }
.step-card .time {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232, 168, 64, 0.15);
  color: var(--amber-hover);
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1020px; margin: 0 auto; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote.featured { border: 2px solid var(--amber); box-shadow: 0 16px 40px rgba(232, 168, 64, 0.16); }
.quote .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.quote .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote {
  margin: 0 0 20px;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: #2A3550;
  flex: 1;
}
.quote-who { display: flex; align-items: center; gap: 12px; }
.quote-who .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.avatar.coral   { background: rgba(224, 121, 42, 0.16); color: var(--coral); }
.avatar.amber   { background: rgba(232, 168, 64, 0.2);  color: var(--amber-hover); }
.avatar.emerald { background: rgba(11, 122, 63, 0.14);  color: var(--emerald); }
.quote-who b { display: block; font-size: 14.5px; color: var(--navy); }
.quote-who small { font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   PRECIOS
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1020px; margin: 0 auto; align-items: start; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
  position: relative;
}
.plan.featured {
  border: 2px solid var(--amber);
  box-shadow: 0 24px 56px rgba(26, 39, 68, 0.12);
  padding-top: 42px;
}
.plan .flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { font-size: 19px; font-weight: 700; color: var(--navy); }
.plan .price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin: 18px 0 4px;
  letter-spacing: -0.02em;
}
.plan .per { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.plan .who { font-size: 14px; color: var(--ink-soft); margin: 14px 0 22px; }
.plan ul { list-style: none; margin: 0 0 28px; padding: 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; color: #2A3550; }
.plan li::before { content: "✓"; color: var(--emerald); font-weight: 700; }
.plan .btn { width: 100%; padding: 14px 20px; font-size: 15px; }
.plans-more { text-align: center; margin-top: 44px; }
.plans-more a {
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.plans-more a:hover { color: var(--amber-hover); border-color: var(--amber); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--emerald);
  font-weight: 600;
}

/* ============================================================
   FAQ (navy)
   ============================================================ */
.faq { background: var(--navy); color: var(--cream); }
.faq .section-head h2 { color: var(--cream); }
.faq .section-head p { color: rgba(255, 251, 245, 0.65); }
.faq .eyebrow { color: var(--amber); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 251, 245, 0.12); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 17.5px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  color: var(--amber);
  transition: transform 0.25s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--amber); }
.faq-item .answer { padding: 0 40px 24px 4px; color: rgba(255, 251, 245, 0.72); font-size: 15.5px; line-height: 1.65; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding: 100px 0; }
.cta-panel {
  position: relative;
  background: var(--navy);
  border-radius: 24px;
  padding: 72px 32px;
  text-align: center;
  overflow: hidden;
}
.cta-panel .cta-bars {
  position: absolute;
  left: -20px;
  bottom: -30px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  opacity: 0.14;
  pointer-events: none;
}
.cta-panel .cta-bars span { width: 52px; border-radius: 12px; }
.cta-panel .cta-bars span:nth-child(1) { height: 150px; background: var(--coral); }
.cta-panel .cta-bars span:nth-child(2) { height: 210px; background: var(--amber); }
.cta-panel .cta-bars span:nth-child(3) { height: 120px; background: var(--emerald); }
.cta-panel h2 { color: var(--cream); margin-bottom: 16px; }
.cta-panel h2 .accent-italic { color: var(--amber); }
.cta-panel p { color: rgba(255, 251, 245, 0.72); font-size: 18px; max-width: 480px; margin: 0 auto 34px; }
.cta-panel .btn { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.foot-brand .nav-logo { color: var(--cream); margin-bottom: 14px; }
.foot-brand p { font-size: 14.5px; color: rgba(255, 251, 245, 0.65); margin: 0; max-width: 260px; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 251, 245, 0.5);
  margin: 0 0 16px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a {
  font-size: 14.5px;
  color: rgba(255, 251, 245, 0.72);
  text-decoration: none;
  transition: color 0.15s ease;
}
.foot-col a:hover { color: var(--amber); }
.foot-bottom {
  border-top: 1px solid rgba(255, 251, 245, 0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.foot-bottom small { font-size: 12.5px; color: rgba(255, 251, 245, 0.45); }
.foot-bottom a { font-size: 14px; font-weight: 600; color: var(--amber); text-decoration: none; }
.foot-bottom a:hover { color: var(--amber-hover); }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .mock { transform: none; }
  * { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 128px 0 72px; }
  .hero-bars { opacity: 0.05; }
  .mock { max-width: 480px; margin: 0 auto; transform: none; }
  .pillars, .quotes, .plans { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .plan.featured { order: -1; }
  .steps { grid-template-columns: 1fr; gap: 40px; max-width: 420px; }
  .steps::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 520px) {
  .section { padding: 72px 0; }
  .cta-panel { padding: 56px 20px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; }
}

/* ============ Páginas internas (precios, blog, legal, contacto) ============ */
.page-hero {
  padding: 140px 0 60px;
  background: var(--cream);
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 18px;
}
.page-hero p.lead {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--coral); text-decoration: underline; }

/* Tabla comparativa */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
table.cmp th, table.cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { background: var(--navy); color: var(--cream); font-family: var(--font-body); font-weight: 700; font-size: 14px; }
table.cmp thead th:first-child { border-top-left-radius: var(--radius); }
table.cmp thead th:last-child { border-top-right-radius: var(--radius); }
table.cmp td.c, table.cmp th.c { text-align: center; }
table.cmp tbody tr:last-child td { border-bottom: none; }
table.cmp tbody tr:hover { background: var(--cream-alt); }
table.cmp td.feat { font-weight: 500; color: var(--navy); }
table.cmp .yes { color: var(--emerald); font-weight: 700; }
table.cmp .no  { color: rgba(26,39,68,.28); }
table.cmp .grp td {
  background: var(--cream-alt); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
}

/* Prose (legal / artículos) */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; color: var(--navy); margin: 42px 0 14px; letter-spacing: -0.01em;
}
.prose h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--navy); margin: 26px 0 10px; }
.prose p, .prose li { font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); }
.prose p { margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--coral); font-weight: 500; }
.prose strong { color: var(--navy); }
.prose .updated {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft);
  border-left: 3px solid var(--amber); padding-left: 12px; margin-bottom: 30px;
}

/* Blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(26,39,68,.10); }
.post-top { height: 7px; }
.post-card[data-color="coral"]   .post-top { background: var(--coral); }
.post-card[data-color="amber"]   .post-top { background: var(--amber); }
.post-card[data-color="emerald"] .post-top { background: var(--emerald); }
.post-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 12px;
}
.post-card[data-color="coral"]   .post-tag { color: var(--coral); }
.post-card[data-color="amber"]   .post-tag { color: var(--amber-hover); }
.post-card[data-color="emerald"] .post-tag { color: var(--emerald); }
.post-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.3; color: var(--navy); margin: 0 0 10px; }
.post-body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
.soon-note {
  max-width: 620px; margin: 44px auto 0; text-align: center;
  background: var(--cream-alt); border: 1px dashed var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.soon-note p { margin: 0 0 16px; color: var(--ink-soft); font-size: 15.5px; }

/* Contacto */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 940px; margin: 0 auto; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(26,39,68,.10); }
.contact-card .ico { font-size: 30px; display: block; margin-bottom: 14px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.contact-card p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.contact-card a.line { font-family: var(--font-mono); font-size: 13.5px; color: var(--coral); text-decoration: none; font-weight: 600; }
.contact-card a.line:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .post-grid, .contact-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 48px; }
}
