/* ===================================================================
   Ecom Labs Studio — Cotizador de Despliegue Creativo
   Sistema visual alineado a despliegue-creativo-ecomlabs (landing)
   =================================================================== */

:root {
  --bg:            #FFFFFF;
  --surface:       #FFFFFF;
  --surface-soft:  #F5F9FE;
  --ink:           #0F1727;
  --ink-soft:      #4A5568;
  --ink-faint:     #8B96A8;
  --line:          #E3EAF4;
  --line-soft:     #EAF0F8;

  --blue:          #2E90FA;
  --blue-deep:     #1570CD;
  --blue-ink:      #0C3B7C;
  --blue-tint:     #E8F2FF;
  --hero-top:      #D9EAFE;
  --hero-glow:     #BFDCFE;

  --good:          #12833B;
  --good-tint:     rgba(18,131,59,0.12);

  --glass:         rgba(255,255,255,.66);
  --glass-border:  rgba(255,255,255,.85);
  --glass-line:    rgba(150,175,210,.35);

  --btn-shadow:    0 10px 26px -10px rgba(46,144,250,.55);
  --card-shadow:   0 2px 6px rgba(16,24,40,.05), 0 18px 40px -18px rgba(16,24,40,.18);
  --card-shadow-lg:0 30px 60px -20px rgba(16,24,40,.25);

  --radius: 22px;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }

.muted { color: var(--ink-soft); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 14px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 960px; margin: 0 auto 0; padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 var(--glass-border), var(--card-shadow);
}
.nav__logo img { height: 30px; display: block; }
.nav__right { display: flex; align-items: center; gap: 10px; }

.langsw {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px;
}
.langsw__btn {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700;
  color: var(--ink-soft); background: transparent; border: none; cursor: pointer;
  padding: 7px 13px; border-radius: 999px; letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.langsw__btn:hover { color: var(--ink); }
.langsw__btn.is-active { color: #fff; background: var(--blue); box-shadow: 0 6px 14px -6px rgba(46,144,250,.6); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 700; font-size: 14px;
  border-radius: 999px; padding: 12px 22px;
  text-decoration: none; cursor: pointer; border: none;
  transition: transform .18s cubic-bezier(.2,.8,.3,1), box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--ghost {
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--blue-tint); border-color: var(--blue); color: var(--blue-deep); }
.btn--cta {
  width: 100%; justify-content: center;
  color: #fff; font-size: 15.5px; padding: 16px 20px;
  background: var(--blue);
  box-shadow: var(--btn-shadow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--cta:hover { box-shadow: 0 16px 34px -10px rgba(46,144,250,.65), inset 0 1px 0 rgba(255,255,255,.35); transform: translateY(-3px); background: var(--blue-deep); }

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-deep);
  padding: 7px 14px; border-radius: 999px;
  background: var(--blue-tint);
  border: 1px solid rgba(46,144,250,0.25);
}
.eyebrow--light { color: var(--blue-ink); background: #fff; border-color: var(--line); }

/* ---------- HERO ---------- */
.hero {
  text-align: center;
  padding: clamp(56px, 9vw, 104px) 20px clamp(24px, 4vw, 40px);
  max-width: 860px; margin: 0 auto;
  position: relative;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 50% -8%, var(--hero-glow) 0%, transparent 68%),
    radial-gradient(620px 420px at 6% 0%, var(--hero-top) 0%, transparent 60%),
    radial-gradient(620px 420px at 94% 0%, var(--hero-top) 0%, transparent 60%),
    linear-gradient(180deg, var(--hero-top) 0%, var(--bg) 42%);
}
.hero__title {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900; line-height: 1.06; letter-spacing: -0.03em;
  margin: 22px 0 18px;
  text-wrap: balance;
}
.hero__title em { color: var(--blue); }
.hero__sub {
  color: var(--ink-soft); font-size: clamp(15px, 2.2vw, 18px);
  max-width: 600px; margin: 0 auto;
}

/* ---------- TABS ---------- */
.tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 720px; margin: 34px auto 0; text-align: left;
}
@media (max-width: 560px) { .tabs { grid-template-columns: 1fr; } }
.tab {
  position: relative; cursor: pointer; font-family: var(--sans);
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 18px; border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  transition: all .18s ease;
}
.tab:hover { border-color: var(--blue); transform: translateY(-2px); }
.tab.is-active {
  border-color: var(--blue);
  background: var(--blue-tint);
  box-shadow: inset 0 0 0 1px rgba(46,144,250,.35), var(--card-shadow);
}
.tab__title { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.tab__desc  { font-size: 12.5px; color: var(--ink-soft); }
.tab__badge {
  position: absolute; top: -9px; right: 14px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; padding: 4px 10px; border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 6px 16px -6px rgba(46,144,250,.8);
}
.tab__badge--alt { background: var(--ink); box-shadow: 0 6px 16px -6px rgba(15,23,39,.5); }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px) 80px; }
.grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 900px) {
  .grid { grid-template-columns: 1.35fr 1fr; align-items: start; }
}

/* ---------- CARDS ---------- */
.config { display: flex; flex-direction: column; gap: 22px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--card-shadow);
}
.card__head { margin-bottom: 18px; }
.card__head h2 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink);
}
.card__head .muted { font-size: 14px; margin-top: 6px; }

/* ---------- TIERS (escalera despliegue) ---------- */
.tiers { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  position: relative; text-align: left; cursor: pointer; font-family: var(--sans);
  color: var(--ink);
  display: flex; flex-direction: column; gap: 10px;
  padding: 22px 18px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  transition: all .18s ease;
}
.tier:hover { border-color: var(--blue); transform: translateY(-2px); }
.tier--featured { border-color: rgba(46,144,250,.5); }
.tier.is-selected {
  border-color: var(--blue);
  background: linear-gradient(160deg, var(--blue-tint), #fff 70%);
  box-shadow: inset 0 0 0 1.5px rgba(46,144,250,.55), 0 16px 34px -18px rgba(46,144,250,.5);
}
.tier__badge {
  position: absolute; top: -10px; right: 14px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; padding: 4px 10px; border-radius: 999px; background: var(--blue);
  box-shadow: 0 6px 16px -6px rgba(46,144,250,.8);
}
.tier__name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.tier__price b { font-size: 30px; font-weight: 900; letter-spacing: -0.02em; }
.tier__price small { font-size: 13px; color: var(--ink-soft); margin-left: 3px; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 4px 0 auto; }
.tier__list li { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--ink); }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--good-tint); box-shadow: inset 0 0 0 1px rgba(18,131,59,0.5);
}
.tier__list li::after {
  content: ""; position: absolute; left: 4px; top: 8px; width: 4px; height: 6px;
  border: solid var(--good); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.tier__unit { color: var(--ink-soft); font-weight: 400; font-size: 12.5px; white-space: nowrap; }
.tier__pick {
  margin-top: 12px; text-align: center; font-size: 13px; font-weight: 700;
  padding: 10px; border-radius: 10px; color: var(--ink);
  border: 1px solid var(--line); transition: all .18s ease;
}
.tier.is-selected .tier__pick { color: #fff; border-color: transparent; background: var(--blue); }
.tier.is-selected .tier__pick::before { content: "✓ "; }

/* ---------- PRESETS (paquetes por servicio) ---------- */
.presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
@media (max-width: 520px) {
  .presets { grid-template-columns: 1fr 1fr; }
  .presets .preset:nth-child(3):last-child { grid-column: 1 / -1; }
}
.preset {
  position: relative; cursor: pointer; font-family: var(--sans); text-align: center;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 3px; padding: 14px 8px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--card-shadow); transition: all .18s ease;
}
.preset:hover { border-color: var(--blue); transform: translateY(-2px); }
.preset.is-active { border-color: var(--blue); background: var(--blue-tint); box-shadow: inset 0 0 0 1.5px rgba(46,144,250,.5); }
.preset--star::after { content: "★"; position: absolute; top: 6px; right: 8px; font-size: 10px; color: var(--blue); }
.preset__n { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.preset__p { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.preset__u { font-size: 10.5px; color: var(--ink-faint); }

.cat__line {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 14px;
}
.cat__line b { font-weight: 700; }
.cat__amt { color: var(--ink-soft); white-space: nowrap; }
.cat__amt b { color: var(--ink); }
.cat + .cat, .config > .cat { margin-top: 0; }

.line--sub span:first-child { color: var(--ink-faint); font-size: 12.5px; }
.line--sub { padding-top: 2px; border-bottom: 1px solid var(--line-soft); }
.total__mo { font-size: 15px; color: var(--ink-soft); font-weight: 500; margin-left: 2px; }

/* Campo destacado (edición profesional) */
.card--feature {
  position: relative;
  border-color: rgba(46,144,250,.4);
  background:
    linear-gradient(180deg, var(--blue-tint), #fff 60%);
  box-shadow: inset 0 0 0 1px rgba(46,144,250,.15), var(--card-shadow);
}
.feature-badge {
  position: absolute; top: -10px; left: 24px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; padding: 4px 12px; border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 6px 16px -6px rgba(46,144,250,.8);
}
.perks {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
  margin: 0 0 20px; padding: 16px; border-radius: 14px;
  background: var(--surface-soft); border: 1px solid var(--line-soft);
}
@media (max-width: 480px) { .perks { grid-template-columns: 1fr; } }
.perks li {
  position: relative; padding-left: 24px; font-size: 13.5px; color: var(--ink);
}
.perks li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--good-tint);
  box-shadow: inset 0 0 0 1px rgba(18,131,59,0.5);
}
.perks li::after {
  content: ""; position: absolute; left: 5px; top: 7px;
  width: 4px; height: 7px; border: solid var(--good); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- CHIPS ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  flex: 1 1 auto; min-width: 90px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--ink-soft); cursor: pointer;
  padding: 13px 16px; border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  transition: all .18s ease;
}
.chip:hover { color: var(--ink); border-color: var(--blue); }
.chip.is-active {
  color: #fff; border-color: transparent;
  background: var(--blue);
  box-shadow: 0 10px 24px -12px rgba(46,144,250,.7);
}

/* ---------- COUNTERS ---------- */
.counter {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.counter:last-of-type { border-bottom: none; }
.counter__info { display: flex; flex-direction: column; gap: 4px; }
.counter__name { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.counter__note { font-size: 13px; color: var(--ink-faint); }
.tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--blue-deep); background: var(--blue-tint);
  padding: 3px 8px; border-radius: 6px; text-transform: uppercase;
}
.tag--soft {
  color: var(--ink-soft); background: var(--surface-soft);
  vertical-align: middle; margin-left: 6px;
}

/* ---------- STEPPER ---------- */
.stepper {
  display: flex; align-items: center; gap: 4px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 4px;
}
.step {
  width: 36px; height: 36px; border-radius: 10px; border: none; cursor: pointer;
  font-size: 20px; font-weight: 500; line-height: 1;
  color: var(--ink); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.step:hover { background: #fff; box-shadow: var(--card-shadow); }
.step:disabled { color: var(--ink-faint); cursor: not-allowed; background: transparent; box-shadow: none; }
.step__val {
  width: 46px; text-align: center; border: none; background: transparent;
  color: var(--ink); font-family: var(--sans); font-size: 17px; font-weight: 700;
  -moz-appearance: textfield;
}
.step__val:focus { outline: none; }

.hint { font-size: 13px; color: var(--ink-faint); margin-top: 16px; min-height: 1em; }
.hint strong { color: var(--blue); font-weight: 700; }

/* ---------- FUNNEL GRAPHIC (embudo visual) ---------- */
.funnel-graphic { max-width: 340px; margin: 4px auto 2px; }
.funnel-svg { width: 100%; height: auto; display: block; }
.funnel-svg polygon { stroke: rgba(255,255,255,.5); stroke-width: 1.5; }
.fg-tofu { fill: var(--blue); }
.fg-mofu { fill: var(--blue-deep); }
.fg-bofu { fill: var(--good); }
.fg-text {
  font-family: var(--sans); font-weight: 800; font-size: 15px;
  fill: #fff; text-anchor: middle; dominant-baseline: middle;
}
.fg-text--sm { font-size: 13px; }
.funnel-caption {
  font-size: 12px; color: var(--ink-faint); text-align: center;
  max-width: 380px; margin: 0 auto 22px; line-height: 1.5;
}

/* ---------- FUNNEL ---------- */
.funnel { display: flex; flex-direction: column; gap: 16px; }
.funnel__row {
  display: grid; grid-template-columns: 170px 1fr 40px; align-items: center; gap: 14px;
}
.funnel__label { font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.funnel__label .muted { font-size: 12px; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--tofu { background: var(--blue); }
.dot--mofu { background: var(--blue-deep); }
.dot--bofu { background: var(--good); }
.funnel__bar {
  height: 8px; border-radius: 999px; background: var(--line-soft); overflow: hidden;
}
.funnel__bar span {
  display: block; height: 100%; border-radius: 999px; width: 0;
  transition: width .4s cubic-bezier(.2,.7,.2,1);
}
.funnel__row:nth-child(1) .funnel__bar span { background: linear-gradient(90deg, #2E90FA, #6ab4fb); }
.funnel__row:nth-child(2) .funnel__bar span { background: linear-gradient(90deg, #1570CD, #4a95e8); }
.funnel__row:nth-child(3) .funnel__bar span { background: linear-gradient(90deg, #12833B, #3fbf85); }
.funnel__qty { font-size: 15px; font-weight: 700; text-align: right; }

@media (max-width: 520px) {
  .funnel__row { grid-template-columns: 130px 1fr 34px; gap: 10px; }
  .funnel__label .muted { display: none; }
}

/* ---------- SUMMARY ---------- */
.summary { position: relative; }
@media (min-width: 900px) { .summary { position: sticky; top: 92px; } }
.summary__card {
  background: linear-gradient(165deg,#1570CD, #0C3B7C 82%);
  border: none;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 40px 80px -24px rgba(12,59,124,.5), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative; overflow: hidden;
  color: #fff;
}
.summary__card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 220px at 85% -10%, rgba(255,255,255,.18), transparent 70%);
}
.summary__card > * { position: relative; z-index: 1; }
.summary__card .eyebrow { margin-bottom: 16px; }
.summary__card .eyebrow--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.summary__note {
  font-size: 12.5px; color: rgba(255,255,255,.75); margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.18);
}

/* Nudge hacia el despliegue */
.nudge {
  margin: 4px 0 18px; padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.24);
}
.nudge p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.9); }
.nudge b { color: #fff; font-weight: 700; }
.nudge__btn {
  margin-top: 10px; cursor: pointer; font-family: var(--sans);
  font-size: 12.5px; font-weight: 700; color: #fff;
  background: none; border: none; padding: 0;
}
.nudge__btn:hover { text-decoration: underline; }

/* CTA deshabilitado */
.btn--disabled { opacity: 0.4; pointer-events: none; filter: grayscale(0.4); }

.lines { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.line {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14.5px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.14);
}
.line { align-items: flex-start; }
.line .amt { font-weight: 700; white-space: nowrap; }
.line b { font-weight: 700; }
.line--included { align-items: center; }
.line--included span:first-child { color: rgba(255,255,255,.78); font-size: 13.5px; }
.line__label { display: flex; flex-direction: column; gap: 3px; }
.line__name { font-weight: 400; }
.line__unit { font-size: 11.5px; color: rgba(255,255,255,.6); }
.line .amt { display: inline-flex; align-items: baseline; gap: 7px; }
.line .amt s { color: rgba(255,255,255,.5); font-weight: 500; font-size: 12.5px; text-decoration: line-through; }
.off {
  font-size: 10px; font-weight: 700; letter-spacing: 0.02em;
  color: #fff; background: rgba(255,255,255,.18);
  padding: 2px 7px; border-radius: 999px; margin-left: 6px; white-space: nowrap;
}
.pill {
  font-size: 11px !important; font-weight: 700 !important;
  color: #fff; background: rgba(255,255,255,.18);
  padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em;
}

.subtotal, .discount {
  display: flex; justify-content: space-between; font-size: 14px;
  padding: 12px 0 0; color: rgba(255,255,255,.75);
}
.discount { color: #9CF0BE; padding-top: 6px; }
.discount span:last-child { font-weight: 600; }

.total {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2);
}
.total span { font-size: 15px; color: rgba(255,255,255,.75); }
.total strong { font-size: clamp(30px, 5vw, 38px); font-weight: 900; letter-spacing: -0.02em; color: #fff; }
.perpiece { font-size: 13px; color: rgba(255,255,255,.75); margin: 8px 0 2px; }
.perpiece b { color: #fff; font-weight: 700; }
.ahorro { font-size: 13px; color: rgba(255,255,255,.75); margin: 2px 0 20px; }
.ahorro b { color: #9CF0BE; font-weight: 700; }

.summary__card .btn--cta {
  background: #fff; color: var(--blue-ink);
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.4);
}
.summary__card .btn--cta:hover { background: var(--blue-tint); transform: translateY(-3px); }
.btn--cta { margin-bottom: 16px; }
.fineprint { font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.6); }

/* ---------- INCLUDES ---------- */
.includes { margin-top: 72px; text-align: center; }
.includes__title {
  font-size: clamp(24px, 4vw, 38px); font-weight: 900; letter-spacing: -0.02em;
  max-width: 640px; margin: 18px auto 40px; line-height: 1.15;
}
.includes__title em { color: var(--blue); }
.includes__grid {
  display: grid; grid-template-columns: 1fr; gap: 18px; text-align: left;
}
@media (min-width: 720px) { .includes__grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--card-shadow);
}
.feature__num {
  font-family: var(--serif); font-style: italic; font-size: 30px;
  color: var(--blue); margin-bottom: 10px;
}
.feature h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--ink-soft); }

/* ---------- FOOTER ---------- */
.footer {
  text-align: center; padding: 80px 20px 56px; margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}
.footer .eyebrow { margin-bottom: 24px; }
.manifesto {
  font-size: clamp(22px, 3.6vw, 34px); font-weight: 900; line-height: 1.28;
  letter-spacing: -0.01em; max-width: 720px; margin: 0 auto 36px;
  color: var(--ink);
}
.manifesto em { color: var(--blue); }
.footer__logo { height: 28px; opacity: 0.85; margin-bottom: 18px; }
.footer__legal { font-size: 12px; color: var(--ink-faint); }
