/* ─── Reclama Fácil — landing styles ─────────────────────────────
   Built on Senti tokens (tokens.css). Sage-green + warm cream palette.
   Mobile-first. Generous spacing, soft layering, no harsh dividers.
*/

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: var(--type-body-size);
  line-height: var(--type-body-lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

img, svg { display: block; max-width: 100%; }

/* ─── Tokens — small overrides for landing ─── */
:root {
  --max-w: 1180px;
  --nav-h: 72px;
  --accent: #1782d4;
  --accent-soft: #d4ebfa;
  --accent-deep: #0c4d80;
  --accent-light: #e8f4fc;
}

/* Accent themes — switched by [data-accent] on <html> */
html[data-accent="royal"]   { --accent:#2f5fa8; --accent-soft:#dde8f6; --accent-deep:#13315c; --accent-light:#e8efff; }
html[data-accent="navy"]    { --accent:#1f3c75; --accent-soft:#d6dff0; --accent-deep:#0d1f48; --accent-light:#e2e9f7; }
html[data-accent="sky"]     { --accent:#1782d4; --accent-soft:#d4ebfa; --accent-deep:#0c4d80; --accent-light:#e8f4fc; }
html[data-accent="indigo"]  { --accent:#3d3b8a; --accent-soft:#dedcf6; --accent-deep:#1f1d54; --accent-light:#ecebff; }
html[data-accent="cobalt"]  { --accent:#2b4dd8; --accent-soft:#dde2fa; --accent-deep:#142788; --accent-light:#eaecff; }
html[data-accent="teal"]    { --accent:#1d7a7a; --accent-soft:#d2ecea; --accent-deep:#0b3d3d; --accent-light:#e0f5f3; }
html[data-accent="sage"]    { --accent:#3d6841; --accent-soft:#bfefbd; --accent-deep:#1e4824; --accent-light:#e4ffe0; }

/* ─── Layout primitives ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-label);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
}
.eyebrow-on-dark { color: rgba(255,255,255,0.7); }

.title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--color-text-title);
  margin: 14px 0 0;
  text-wrap: balance;
}
.title em {
  font-style: normal;
  color: var(--accent);
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -2.4px;
  color: var(--color-text-title);
  margin: 22px 0 22px;
  text-wrap: balance;
}
.display-em {
  font-style: italic;
  font-weight: 800;
  color: var(--accent);
}

.lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--color-text-body);
  max-width: 36ch;
  margin: 0 0 28px;
}

.section-head { max-width: 720px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
  flex-wrap: wrap;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--color-text-body);
  max-width: 56ch;
}

.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: -0.1px;
}
.link-arrow:hover { color: var(--accent-deep); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.1px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 30px -8px color-mix(in oklab, var(--accent) 75%, transparent),
    0 6px 14px -6px rgba(60, 55, 40, 0.18);
}
.btn-primary:active {
  transform: translateY(-1px) scale(1);
  transition-duration: 0.08s;
}

.btn-soft {
  background: var(--color-surface-1);
  color: var(--color-text-title);
}
.btn-soft:hover { background: var(--color-surface-2); }

.btn-ghost {
  background: transparent;
  color: var(--color-text-body);
}
.btn-ghost:hover { color: var(--color-text-title); }

.btn-light {
  background: #fff;
  color: var(--color-text-title);
}
.btn-light:hover { background: #f3f1ea; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 244, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(125, 120, 95, 0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.4px;
  color: var(--color-text-title);
}
.brand-word-thin {
  font-weight: 500;
  color: var(--color-text-body);
}
.brand-dark .brand-word { color: var(--color-text-title); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-body);
}
.nav-links a:hover { color: var(--color-text-title); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  margin-left: auto;
}
.nav-burger span {
  width: 18px; height: 1.6px;
  background: var(--color-text-title);
  border-radius: 2px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 72px 24px 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--color-text-body);
  font-size: 13px;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta svg { color: var(--accent); }

/* Hero mockup */
.hero-mock {
  position: relative;
  width: 100%;          /* required: all children are absolute, so parent has no intrinsic width */
  min-width: 0;         /* allow grid cell to shrink */
  height: 540px;
  min-height: 480px;
}
.hero-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
}
.hero-glow-a {
  top: -40px; right: -40px;
  background: var(--accent-soft);
}
.hero-glow-b {
  bottom: -60px; left: -30px;
  background: var(--color-tertiary-container);
}

.mock-doc {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 360px;
  max-width: 100%;
  padding: 28px 30px 22px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-float), 0 24px 70px -30px rgba(60,55,40,0.18);
  transform: rotate(2.5deg);
  z-index: 2;
}
.mock-doc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.mock-doc-org {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-org-tag {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  width: max-content;
}
.mock-doc-id {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-label);
  letter-spacing: 0.02em;
}
.mock-doc-date {
  font-size: 10px;
  color: var(--color-text-label);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mock-doc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
  margin-bottom: 4px;
}
.mock-doc-sub {
  font-size: 11px;
  color: var(--color-text-body);
  margin-bottom: 16px;
}
.mock-doc-body { display: flex; flex-direction: column; gap: 12px; }
.mock-doc-body p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}
.hl {
  height: 6px;
  border-radius: 4px;
  background: var(--color-surface-3);
  width: 100%;
}
.hl.w70 { width: 70%; }
.hl.w90 { width: 90%; }
.hl.w80 { width: 80%; }
.hl.w60 { width: 60%; }
.hl.w50 { width: 50%; }
.hl.w85 { width: 85%; }
.hl.w45 { width: 45%; }

.mock-quote {
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--accent-deep);
  margin: 4px 0 !important;
  display: block !important;
}
.mock-quote em { color: var(--accent); font-style: italic; }

.mock-doc-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed color-mix(in oklab, var(--color-text-label) 25%, transparent);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.mock-sign { display: flex; flex-direction: column; gap: 2px; }
.mock-sign-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-title);
}
.mock-sign-rut {
  font-size: 10px;
  color: var(--color-text-label);
}
.mock-doc-page {
  font-size: 10px;
  color: var(--color-text-label);
}

.mock-badge {
  position: absolute;
  top: -14px; left: -14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  background: var(--accent);
  color: var(--accent-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 20px -6px color-mix(in oklab, var(--accent) 60%, transparent);
}
.mock-badge-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Floating form preview */
.mock-form {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 270px;
  padding: 20px 22px;
  background: var(--color-surface-1);
  border-radius: 22px;
  box-shadow: var(--shadow-float);
  transform: rotate(-3deg);
  z-index: 3;
}
.mock-form-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-label);
}
.mock-form-q {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
  margin: 8px 0 14px;
}
.mock-form-field {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 76px;
}
.mock-form-line {
  height: 6px;
  border-radius: 3px;
  background: var(--color-surface-3);
}
.mock-form-line.w100 { width: 100%; }
.mock-form-line.w80 { width: 80%; }
.mock-form-line.w45 { width: 45%; }
.mock-caret {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 1.5px;
  height: 12px;
  background: var(--accent);
  animation: blink 1s infinite;
  border-radius: 1px;
  transform: translateX(calc(45% + 4px));
}
@keyframes blink { 50% { opacity: 0; } }

.mock-form-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.mock-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 600;
}
.mock-chip-soft {
  background: transparent;
  color: var(--color-text-label);
  border: 1px dashed color-mix(in oklab, var(--color-text-label) 35%, transparent);
}

/* Hero strip */
.hero-strip {
  margin: 56px auto 0;
  padding: 22px 28px;
  background: var(--color-surface-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strip-stat b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
}
.strip-stat span {
  font-size: 12px;
  color: var(--color-text-label);
}
.strip-sep {
  width: 1px;
  height: 28px;
  background: color-mix(in oklab, var(--color-text-label) 22%, transparent);
}

/* ─── PROBLEMS ─── */
.problems {
  padding: 88px 0 32px;
}
.prob-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.prob-card {
  position: relative;
  padding: 24px 24px 26px;
  background: var(--color-surface-1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 130px;
  overflow: hidden;
}
.prob-card p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--color-text-title);
}
.prob-card p strong {
  font-weight: 800;
  color: var(--accent-deep);
}
.prob-q {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
}

/* asymmetric grid placement (desktop) */
.prob-1 { grid-column: span 5; }
.prob-2 { grid-column: span 4; background: var(--color-tertiary-container); }
.prob-3 { grid-column: span 3; }
.prob-4 { grid-column: span 4; }
.prob-5 { grid-column: span 4; background: var(--color-secondary-container); }

.prob-solution {
  grid-column: span 4;
  padding: 28px;
  background: var(--accent);
  color: var(--accent-light);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.prob-sol-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.prob-solution h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--accent-light);
}
.prob-solution .btn {
  background: var(--color-bg);
  color: var(--color-text-title);
  align-self: flex-start;
}
.prob-solution .btn:hover { background: #fff; }

/* ─── HOW IT WORKS ─── */
.how { padding: 96px 0 56px; }

/* Timeline above cards — line + 3 numbered dots aligned with grid columns */
.how-timeline {
  position: relative;
  margin: 48px auto 32px;
  /* Match the card grid: 3 cols, padding sides so dots sit on column centers */
  padding: 0 calc((100% / 6) - 28px);  /* offset = half-column - half-dot */
  height: 56px;
}
.how-timeline-track {
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  border-radius: 999px;
  background: var(--color-surface-3);
  overflow: hidden;
}
.how-timeline-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: inherit;
  transition: width 1.4s cubic-bezier(.6,.05,.3,1) 0.1s;
}
.how-timeline-dots {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.how-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.how-dot-inner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface-2);
  color: var(--color-text-label);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.how.is-pending .how-timeline-fill { width: 0; }
.how.is-active .how-timeline-fill { width: 100%; }

.how.is-pending .how-dot[data-i="1"] .how-dot-inner,
.how.is-pending .how-dot[data-i="2"] .how-dot-inner,
.how.is-pending .how-dot[data-i="3"] .how-dot-inner {
  background: var(--color-surface-2);
  color: var(--color-text-label);
  transform: none;
  box-shadow: none;
}

.how.is-active .how-dot[data-i="1"] .how-dot-inner {
  background: var(--accent);
  color: var(--accent-light);
  transform: scale(1.05);
  box-shadow: 0 6px 18px -6px color-mix(in oklab, var(--accent) 70%, transparent);
  transition-delay: 0.15s;
}
.how.is-active .how-dot[data-i="2"] .how-dot-inner {
  background: var(--accent);
  color: var(--accent-light);
  transform: scale(1.05);
  box-shadow: 0 6px 18px -6px color-mix(in oklab, var(--accent) 70%, transparent);
  transition-delay: 0.65s;
}
.how.is-active .how-dot[data-i="3"] .how-dot-inner {
  background: var(--accent);
  color: var(--accent-light);
  transform: scale(1.05);
  box-shadow: 0 6px 18px -6px color-mix(in oklab, var(--accent) 70%, transparent);
  transition-delay: 1.15s;
}

/* Step cards */
.how-steps {
  margin: 0;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--color-surface-1);
  border-radius: 24px;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  /* JS adds .is-pending while waiting, then .is-active to reveal in sequence.
     Without JS, the section never gets .is-pending — cards stay visible. */
  transition:
    opacity 0.5s cubic-bezier(.2,.7,.2,1),
    transform 0.5s cubic-bezier(.2,.7,.2,1),
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.how.is-pending .how-step { opacity: 0; transform: translateY(20px); }
.how.is-active .how-step { opacity: 1; transform: none; }
.how.is-active .how-step[data-i="1"] { transition-delay: 0.1s, 0.1s, 0s, 0s; }
.how.is-active .how-step[data-i="2"] { transition-delay: 0.6s, 0.6s, 0s, 0s; }
.how.is-active .how-step[data-i="3"] { transition-delay: 1.1s, 1.1s, 0s, 0s; }
.how-step:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px -14px rgba(60, 55, 40, 0.16);
}
.how-step h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.4px;
  color: var(--color-text-title);
}
.how-step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.55;
}

.how-illu {
  height: 140px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 8px;
  overflow: hidden;
}
.how-illu-1 { background: var(--accent-soft); }
.how-illu-2 { background: var(--color-tertiary-container); }
.how-illu-3 { background: var(--color-secondary-container); }

/* Step 1 — form lines that "type out" sequentially when active */
.how-form {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: 0 4px 14px -8px rgba(60,55,40,0.15);
}
.ht-line {
  height: 7px;
  border-radius: 3px;
  background: var(--color-surface-3);
}
.how.is-pending .ht-line { width: 0; }
.how.is-active .ht-line {
  animation: ht-typeLine 0.7s cubic-bezier(.6,.05,.3,1) forwards;
}
.how.is-active .ht-line-1 { animation-delay: 0.20s; --ht-w: 90%; }
.how.is-active .ht-line-2 { animation-delay: 0.45s; --ht-w: 70%; }
.how.is-active .ht-line-3 { animation-delay: 0.70s; --ht-w: 55%; background: var(--accent); opacity: 0.65; }
@keyframes ht-typeLine {
  from { width: 0; }
  to   { width: var(--ht-w, 80%); }
}
.how-form-cursor {
  position: absolute;
  bottom: 16px; left: 14px;
  width: 2px; height: 14px;
  background: var(--accent);
  animation: blink 1s infinite;
  transform: translateX(calc(50% + 6px));
  transition: opacity 0.3s ease 0.95s;
}
.how.is-pending .how-form-cursor { opacity: 0; }

/* Step 2 — pills that fill like a processing progress */
.how-gear {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.how-gear-pill {
  height: 12px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 10px -6px rgba(60,55,40,0.15);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.how-gear-pill::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.85;
  transform-origin: left center;
}
.how.is-pending .how-gear-pill::after { transform: scaleX(0); }
.how.is-active .ht-pill::after {
  animation: ht-fillPill 0.9s cubic-bezier(.6,.05,.3,1) forwards;
}
.how.is-active .ht-pill-1::after { animation-delay: 0.70s; --ht-fill: 1; }
.how.is-active .ht-pill-2::after { animation-delay: 0.95s; --ht-fill: 0.7; }
.how.is-active .ht-pill-3::after { animation-delay: 1.15s; --ht-fill: 0.45; }
@keyframes ht-fillPill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(var(--ht-fill, 1)); }
}

/* Step 3 — doc lines + stamp pops in */
.how-doc {
  width: 90px;
  height: 110px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 6px 16px -8px rgba(60,55,40,0.2);
}
.how-doc-l {
  height: 6px;
  border-radius: 3px;
  background: var(--color-surface-3);
  width: 100%;
}
.how-doc-l.w70 { width: 70%; }
.how-doc-l.w90 { width: 90%; }
.how-doc-stamp {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 28px; height: 28px;
  background: var(--accent);
  color: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -4px color-mix(in oklab, var(--accent) 60%, transparent);
}
.ht-stamp {
  transition: transform 0.45s cubic-bezier(.4,1.6,.6,1) 1.4s;
}
.how.is-pending .ht-stamp { transform: scale(0) rotate(-30deg); }
.how.is-active .ht-stamp { transform: scale(1) rotate(0); }

/* ─── ORGANISMS ─── */
.orgs { padding: 64px 0 32px; }
.org-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.org-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px 28px 24px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.org-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px -12px rgba(60, 55, 40, 0.18), 0 6px 14px -6px rgba(60, 55, 40, 0.1);
}
.org-card header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.org-monogram {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.org-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--color-text-title);
}
.org-sub {
  font-size: 12px;
  color: var(--color-text-label);
  letter-spacing: 0.01em;
}
.org-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-body);
}
.org-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.org-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-surface-1);
  color: var(--color-text-body);
  font-size: 12px;
  font-weight: 500;
}
.org-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid color-mix(in oklab, var(--color-text-label) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.org-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--color-text-title);
}
.org-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
}
.org-cta:hover { color: var(--accent-deep); }

/* Per-organism accents */
.org-sernac  .org-monogram { background: var(--plant-bambu-glow);   color: var(--plant-bambu-accent); }
.org-subtel  .org-monogram { background: var(--plant-lavanda-glow); color: var(--plant-lavanda-accent); }
.org-fonasa  .org-monogram { background: var(--plant-cactus-glow);  color: var(--plant-cactus-accent); }
.org-isapres .org-monogram { background: var(--plant-girasol-glow); color: var(--plant-girasol-accent); }

/* ─── PRICING ─── */
.pricing { padding: 96px 0 32px; }
.price-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.price-card {
  position: relative;
  background: var(--color-surface-1);
  border-radius: 22px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.price-card:hover {
  background: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px -12px rgba(60, 55, 40, 0.18), 0 6px 14px -6px rgba(60, 55, 40, 0.1);
  z-index: 1;
}
/* On hover, soft buttons promote to primary (blue) — gives clear focal click target */
.price-card:hover .btn-soft {
  background: var(--accent);
  color: var(--accent-light);
  box-shadow: 0 8px 20px -8px color-mix(in oklab, var(--accent) 70%, transparent);
}
/* All cards share the same baseline — only hovered card lifts to white.
   The "Más solicitado" tag still differentiates SERNAC visually. */
.price-tag {
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.price-card header { margin-top: 4px; }
.price-org {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: var(--color-text-title);
}
.price-sernac  { color: var(--plant-bambu-accent); }
.price-subtel  { color: var(--plant-lavanda-accent); }
.price-fonasa  { color: var(--plant-cactus-accent); }
.price-isapres { color: var(--plant-girasol-accent); }

.price-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.2px;
  color: var(--color-text-title);
  line-height: 1;
}
.price-desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.5;
  min-height: 42px;
}
.price-feats {
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  border-top: 1px solid color-mix(in oklab, var(--color-text-label) 12%, transparent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-feats li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--color-text-body);
}
.price-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

/* ─── EXTRAS ─── */
.extras { padding: 64px 0 32px; }
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.extras-head { position: sticky; top: calc(var(--nav-h) + 24px); }
.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.extra-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  background: var(--color-surface-1);
  border-radius: 18px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.extra-item:hover {
  background: var(--color-surface-2);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px -12px rgba(60, 55, 40, 0.18);
}
.extra-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.extra-body h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
}
.extra-body p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.5;
}
.extra-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
}
.extra-item-feat {
  background: var(--color-text-title);
  color: rgba(255,255,255,0.85);
}
.extra-item-feat:hover { background: #1f2120; }
.extra-item-feat .extra-icon {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.extra-item-feat h4 { color: #fff; }
.extra-item-feat p { color: rgba(255,255,255,0.65); }
.extra-item-feat .extra-price { color: var(--accent-soft); }

/* ─── SUBSCRIPTION ─── */
.subs { padding: 64px 0 32px; }
.subs-card {
  background: var(--color-text-title);
  color: #fff;
  border-radius: 28px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.subs-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
  filter: blur(40px);
}
.subs-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #fff;
  margin: 14px 0 16px;
}
.subs-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 48ch;
}
.subs-feats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.subs-feats li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.subs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 700;
}
.subs-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.subs-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.subs-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -1.4px;
  color: #fff;
  line-height: 1;
}
.subs-price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.3px;
  margin-left: 4px;
}
.subs-foot {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ─── TRUST ─── */
.trust { padding: 96px 0 32px; }
.trust-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--color-surface-1);
  border-radius: 20px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.trust-card:hover {
  transform: translateY(-3px) scale(1.02);
  background: #fff;
  box-shadow: 0 16px 32px -14px rgba(60, 55, 40, 0.18);
}
.trust-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-card h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
}
.trust-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* ─── BLOG ─── */
.blog { padding: 64px 0 32px; }
.blog-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.blog-card {
  position: relative;
  background: var(--color-surface-1);
  border-radius: 22px;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease;
  min-height: 200px;
}
.blog-card:hover {
  transform: translateY(-2px);
  background: var(--color-surface-2);
}
.blog-card.blog-feat {
  grid-row: span 2;
  background: var(--accent-soft);
  color: var(--accent-deep);
  min-height: 420px;
}
.blog-card.blog-feat:hover { background: color-mix(in oklab, var(--accent-soft) 80%, var(--accent)); }
.blog-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-label);
}
.blog-feat .blog-cat { color: var(--accent-deep); opacity: 0.7; }
.blog-card h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: var(--color-text-title);
}
.blog-feat h3 {
  font-size: 28px;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--accent-deep);
}
.blog-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.5;
}
.blog-feat p { color: var(--accent-deep); opacity: 0.8; font-size: 14.5px; }
.blog-meta {
  margin-top: auto;
  font-size: 11px;
  color: var(--color-text-label);
  letter-spacing: 0.04em;
}
.blog-feat .blog-meta { color: var(--accent-deep); opacity: 0.6; }

/* Tiny decorative art */
.blog-art {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 90px;
  height: 90px;
  opacity: 0.5;
  overflow: hidden;
}
.blog-feat .blog-art {
  width: 220px;
  height: 220px;
  right: -30px;
  bottom: -30px;
  opacity: 0.7;
}
.bg-bag {
  position: absolute;
  inset: 24% 20% 12% 24%;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 4px 4px 16px 16px;
  box-shadow:
    inset 0 -8px 0 color-mix(in oklab, var(--accent) 100%, transparent);
}
.bg-bag::after {
  content: '';
  position: absolute;
  top: -22%; left: 22%; right: 22%; height: 30%;
  border: 4px solid var(--accent);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  opacity: 0.55;
}
.bg-plane {
  position: absolute;
  inset: 30%;
  background: var(--accent);
  clip-path: polygon(0 45%, 70% 45%, 90% 0, 100% 5%, 75% 50%, 100% 95%, 90% 100%, 70% 55%, 0 55%);
  opacity: 0.35;
}
.bg-wave {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, var(--accent) 0 14%, transparent 16%) 0 0/100% 100%;
  opacity: 0.3;
}
.bg-wave::after {
  content: '';
  position: absolute;
  inset: -20%;
  border: 4px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  border-bottom-color: transparent;
  border-right-color: transparent;
  transform: rotate(-45deg);
}
.bg-cross {
  position: absolute;
  inset: 25%;
  background:
    linear-gradient(var(--accent), var(--accent)) center/24% 100% no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/100% 24% no-repeat;
  opacity: 0.3;
  border-radius: 12px;
}

/* ─── FAQ ─── */
.faq { padding: 96px 0 64px; }
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 820px;
}
.faq-item {
  background: var(--color-surface-1);
  border-radius: 18px;
  padding: 4px 6px;
  transition: background 0.2s ease;
}
.faq-item[open] { background: #fff; box-shadow: var(--shadow-subtle); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--color-text-title);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-i {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
}
.faq-i::before, .faq-i::after {
  content: '';
  position: absolute;
  background: var(--accent-deep);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.faq-i::before { width: 10px; height: 1.8px; }
.faq-i::after  { width: 1.8px; height: 10px; }
.faq-item[open] .faq-i::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body {
  padding: 0 22px 22px;
}
.faq-body p {
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.finalcta { padding: 32px 0 96px; }
.finalcta-inner {
  background: var(--accent);
  color: var(--accent-light);
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.finalcta-inner::before {
  content: '';
  position: absolute;
  inset: auto -10% -50% -10%;
  height: 80%;
  background: radial-gradient(ellipse at center top, color-mix(in oklab, #fff 30%, transparent), transparent 70%);
  pointer-events: none;
}
.finalcta-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  color: #fff;
  text-wrap: balance;
}
.finalcta-inner p {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 40ch;
}
.finalcta-inner .btn-primary {
  background: #fff;
  color: var(--color-text-title);
  margin-top: 10px;
}
.finalcta-inner .btn-primary:hover { background: var(--accent-light); }

/* ─── FOOTER ─── */
.foot {
  background: var(--color-surface-1);
  padding: 64px 0 28px;
  color: var(--color-text-body);
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.foot-brand { max-width: 280px; }
.foot-tag {
  margin: 16px 0 0;
  font-size: 13.5px;
  color: var(--color-text-body);
  line-height: 1.5;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.foot-cols h5 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-label);
}
.foot-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-cols a {
  font-size: 13.5px;
  color: var(--color-text-body);
}
.foot-cols a:hover { color: var(--color-text-title); }

.foot-disclaimer {
  padding: 18px 22px;
  background: var(--color-bg);
  border-radius: 14px;
  font-size: 12.5px;
  color: var(--color-text-label);
  line-height: 1.55;
}
.foot-base {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 12px;
  color: var(--color-text-label);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  /* How section — skip orchestration */
  .how.is-pending .how-step,
  .how.is-pending .ht-line,
  .how.is-pending .how-gear-pill::after,
  .how.is-pending .ht-stamp,
  .how.is-pending .how-form-cursor,
  .how.is-pending .how-timeline-fill,
  .how.is-pending .how-dot .how-dot-inner {
    transition: none;
    animation: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 56px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-mock { width: 100%; height: 460px; min-height: 0; max-width: 480px; margin: 0 auto; }
  .mock-doc { right: 0; }
  .mock-form { left: 0; bottom: 0; }
  .hero-strip { gap: 18px; }
  .strip-sep { display: none; }

  .problems { padding: 64px 0 16px; }
  .prob-grid { grid-template-columns: repeat(6, 1fr); }
  .prob-1 { grid-column: span 6; }
  .prob-2 { grid-column: span 3; }
  .prob-3 { grid-column: span 3; }
  .prob-4 { grid-column: span 3; }
  .prob-5 { grid-column: span 3; }
  .prob-solution { grid-column: span 6; }

  .how { padding: 64px 0 32px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-timeline { display: none; }

  .orgs { padding: 32px 0; }

  .pricing { padding: 64px 0 24px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }

  .extras-grid { grid-template-columns: 1fr; gap: 32px; }
  .extras-head { position: static; }

  .subs-card { grid-template-columns: 1fr; padding: 36px 28px; }
  .subs-feats { grid-template-columns: 1fr; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .blog-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .blog-card.blog-feat {
    grid-row: auto;
    min-height: 280px;
  }

  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding: 40px 20px 28px; }
  .container { padding: 0 20px; }
  .display { font-size: 44px; letter-spacing: -1.6px; }
  .title { font-size: 28px; }

  .hero-mock { width: 100%; height: 420px; }
  .mock-doc { width: 280px; padding: 22px 22px 18px; }
  .mock-form { width: 220px; padding: 16px 18px; }

  .prob-grid { grid-template-columns: 1fr; }
  .prob-1, .prob-2, .prob-3, .prob-4, .prob-5, .prob-solution { grid-column: span 1; }

  .price-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }

  .subs-card { padding: 32px 22px; }
  .subs-right { padding: 22px; }

  .finalcta-inner { padding: 48px 22px; }
}
