/* =========================================================================
   Reclama Tus Daños — Design System v4 "Estudio"
   Monocromático editorial: negro cálido + blanco hueso + grises.
   Un único acento vino, usado con cuentagotas. Newsreader + Inter.
   Mismos nombres de clase que antes (compatibilidad total con el HTML).
   ========================================================================= */

:root {
  /* Light surfaces (warm neutrals) */
  --paper: #f8f7f3;
  --paper-2: #f1efe8;
  --paper-3: #ece9e0;
  --card: #ffffff;

  /* Ink / text */
  --ink: #1a1813;
  --ink-soft: #4b463d;
  --muted: #837c70;
  --line: #e5e1d6;
  --line-2: #d6d1c3;

  /* Dark surfaces (near-black, warm) */
  --dark: #16140f;
  --dark-2: #211e18;
  --dark-3: #100e0a;

  /* Text on dark */
  --bone: #f3f0e8;
  --bone-soft: #aba596;
  --bone-faint: rgba(243, 240, 232, .12);

  /* Único acento: vino apagado */
  --wine: #7c2f3c;
  --wine-strong: #642430;
  --wine-on-dark: #c98c97;

  /* Accent activo (vino, con moderación) */
  --accent: var(--wine);
  --accent-strong: var(--wine-strong);
  --accent-soft: #efece3;        /* tinte neutro cálido (NO rosado) */
  --accent-ink: #ffffff;
  --accent-dark: var(--wine-strong);
  --accent-tint: #efece3;

  /* legacy aliases que el HTML usa en estilos inline */
  --navy-900: var(--dark-3);
  --navy-800: var(--dark);
  --navy-700: var(--dark-2);
  --navy-600: var(--dark-2);
  --bg: var(--paper);
  --bg-soft: var(--paper-2);
  --bg-tint: var(--paper-3);

  --radius: 6px;
  --radius-sm: 6px;
  --radius-lg: 10px;
  --btn-radius: 7px;
  --shadow-sm: 0 1px 2px rgba(26, 24, 19, .04);
  --shadow: 0 16px 40px -24px rgba(26, 24, 19, .24);
  --shadow-lg: 0 30px 70px -34px rgba(20, 18, 12, .34);
  --maxw: 1180px;

  --font-head: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Monocromo: las verticales NO cambian de color (esa fue la queja). */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 400; letter-spacing: -.01em; color: var(--ink); }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { padding: 104px 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--paper-2); }
.section--tint { background: var(--paper-3); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--wine);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--wine); display: inline-block; opacity: .7; }
.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; line-height: 1.62; }
.center .lede { margin-inline: auto; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.34rem; }
.section > .wrap > .eyebrow, .center > .eyebrow { margin-bottom: 22px; }
h2 + .lede, .eyebrow + h2 { margin-top: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 400; font-size: 1.36rem; color: var(--ink); letter-spacing: -.01em; }
.brand .mark { width: 36px; height: 36px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover { color: var(--wine); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; border: 1px solid var(--line-2); background: var(--card); border-radius: 8px; width: 46px; height: 46px; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .97rem; line-height: 1; letter-spacing: .005em;
  padding: 15px 26px; border-radius: var(--btn-radius); border: 1px solid transparent;
  transition: transform .14s ease, box-shadow .18s ease, background .18s ease, color .15s, border-color .15s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }
.btn--light { background: transparent; color: #fff; border-color: rgba(243,240,232,.34); }
.btn--light:hover { background: rgba(243,240,232,.1); border-color: rgba(243,240,232,.6); }
.btn--wa { background: var(--ink); color: var(--paper); }
.btn--wa:hover { background: #000; transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 1.04rem; }
.btn--block { width: 100%; }
/* En superficies oscuras el botón primario se invierte */
.hero .btn--primary, .cta-band .btn--primary, .lead-aside .btn--primary { background: var(--paper); color: var(--ink); }
.hero .btn--primary:hover, .cta-band .btn--primary:hover, .lead-aside .btn--primary:hover { background: #fff; }
.lead-aside .btn--wa { background: var(--paper); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--bone); background: var(--dark); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -20%, rgba(243,240,232,.06), transparent 60%),
    linear-gradient(180deg, var(--dark-3), var(--dark) 70%); }
.hero::after { content: ""; position: absolute; right: -2%; top: 0; bottom: 0; width: 1px; background: var(--bone-faint); }
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center; padding: 104px 0 112px; }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 6.2vw, 5rem); line-height: 1.06; }
.hero h1 .hl { font-style: italic; color: #fff; }
.hero p { color: var(--bone-soft); font-size: 1.22rem; margin-top: 24px; max-width: 50ch; line-height: 1.58; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 42px; color: var(--bone-soft); font-size: .9rem; padding-top: 26px; border-top: 1px solid var(--bone-faint); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; stroke: var(--bone); flex: none; opacity: .8; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid var(--bone-faint); padding: 8px 16px; border-radius: 999px; font-size: .78rem; color: var(--bone); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 26px; }
.hero-badge b { color: var(--wine-on-dark); font-size: .7rem; }

/* ---------- Cards (verticales) ---------- */
.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); }
.opt {
  position: relative; display: flex; flex-direction: column; background: var(--card);
  border-right: 1px solid var(--line); transition: background .2s ease;
}
.opt:last-child { border-right: 0; }
.opt:hover { background: var(--paper); }
.opt-top { padding: 34px 30px 18px; }
.opt-kicker { font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--wine); }
.opt-top h3 { font-size: 1.7rem; margin-top: 12px; }
.opt-top p { color: var(--muted); font-size: .98rem; margin-top: 8px; }
.opt-body { padding: 6px 30px 32px; display: flex; flex-direction: column; flex: 1; }
.opt-list { display: grid; gap: 13px; margin: 14px 0 26px; }
.opt-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.opt-list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--ink); }
.opt-cta { margin-top: auto; }

/* ---------- Situations grid ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.case {
  background: var(--card); padding: 34px 30px; transition: background .18s;
}
.case:hover { background: var(--paper-2); }
.case-ico { width: 48px; height: 48px; border-radius: 8px; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); margin-bottom: 20px; }
.case-ico svg { width: 24px; height: 24px; stroke: var(--ink); }
.case h3 { font-size: 1.18rem; margin-bottom: 9px; }
.case p { font-size: .94rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 54px; }
.step { position: relative; padding-top: 22px; border-top: 2px solid var(--ink); }
.step-n { font-family: var(--font-head); font-size: 1.1rem; color: var(--wine); margin-bottom: 12px; font-feature-settings: "tnum"; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 14px 8px; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line-2); }
.stat b { display: block; font-family: var(--font-head); font-size: 3.4rem; color: var(--ink); line-height: 1; }
.stat span { font-size: .88rem; color: var(--muted); margin-top: 12px; display: block; letter-spacing: .01em; }

/* ---------- Split / value ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { display: grid; gap: 4px; margin-top: 28px; }
.feature { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--line); }
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature-ico { width: 40px; height: 40px; border-radius: 8px; background: transparent; border: 1px solid var(--line-2); display: grid; place-items: center; flex: none; }
.feature-ico svg { width: 21px; height: 21px; stroke: var(--ink); }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; color: var(--muted); }
.media-card { background: var(--dark); border-radius: var(--radius-lg); padding: 46px; color: var(--bone); position: relative; overflow: hidden; }
.media-card h3 { color: #fff; font-size: 1.5rem; }
.media-card .quote { font-family: var(--font-head); font-size: 1.5rem; line-height: 1.36; color: #fff; font-style: italic; margin: 20px 0; }
.media-card .who { font-weight: 600; color: #fff; font-size: .95rem; }
.media-card .who span { display: block; font-weight: 400; color: var(--bone-soft); font-size: .85rem; margin-top: 2px; }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.tcard .stars { color: var(--wine); letter-spacing: 3px; margin-bottom: 16px; font-size: .9rem; }
.tcard p { font-size: 1.06rem; color: var(--ink-soft); line-height: 1.55; font-family: var(--font-head); font-style: italic; }
.tcard .who { margin-top: 20px; font-weight: 600; font-size: .92rem; }
.tcard .who span { display: block; font-weight: 400; color: var(--muted); font-size: .84rem; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 48px auto 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 4px; }
.faq summary { list-style: none; cursor: pointer; padding: 24px 4px; font-weight: 500; font-size: 1.14rem; font-family: var(--font-head); display: flex; justify-content: space-between; gap: 16px; align-items: center; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .25s; stroke: var(--wine); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq details p { padding: 0 4px 24px; color: var(--ink-soft); font-size: 1rem; line-height: 1.62; }

/* ---------- Lead form ---------- */
.lead-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.lead-aside { background: var(--dark); color: var(--bone); padding: 52px 46px; position: relative; overflow: hidden; }
.lead-aside h2 { color: #fff; }
.lead-aside p { color: var(--bone-soft); margin-top: 14px; }
.lead-points { margin-top: 30px; display: grid; gap: 16px; }
.lead-points li { display: flex; gap: 13px; align-items: flex-start; color: var(--bone); font-size: .98rem; }
.lead-points svg { width: 19px; height: 19px; stroke: var(--bone); opacity: .8; flex: none; margin-top: 1px; }
.lead-form { padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-2); border-radius: 6px;
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a294; }
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(26,24,19,.08); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 8px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: 6px 0 20px; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--ink); flex: none; }

/* Multi-step evaluator */
.evaluator { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; max-width: 760px; margin: 48px auto 0; box-shadow: var(--shadow); }
.eval-head { padding: 32px 38px 0; }
.eval-progress { height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; margin-top: 20px; }
.eval-progress span { display: block; height: 100%; width: 25%; background: var(--ink); border-radius: 999px; transition: width .4s ease; }
.eval-meta { display: flex; justify-content: space-between; font-size: .76rem; color: var(--muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.eval-body { padding: 32px 38px 38px; }
.step-pane { display: none; animation: fade .35s ease; }
.step-pane.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step-pane h3 { font-size: 1.65rem; margin-bottom: 6px; }
.step-pane > p.sub { color: var(--muted); margin-bottom: 24px; }
.choices { display: grid; gap: 10px; }
.choice { position: relative; display: flex; gap: 15px; align-items: center; padding: 17px 19px; border: 1px solid var(--line-2); border-radius: 7px; cursor: pointer; transition: border-color .15s, background .15s; background: var(--card); }
.choice:hover { border-color: var(--ink); }
.choice.sel { border-color: var(--ink); background: var(--paper-2); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .dot { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-2); flex: none; display: grid; place-items: center; transition: border-color .15s; margin-left: auto; }
.choice.sel .dot { border-color: var(--ink); }
.choice.sel .dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.choice .ico { width: 40px; height: 40px; border-radius: 7px; background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; flex: none; }
.choice .ico svg { width: 21px; height: 21px; stroke: var(--ink); }
.choice b { font-size: 1rem; display: block; font-weight: 600; }
.choice small { color: var(--muted); }
.eval-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.eval-result { text-align: center; padding: 12px 0; }
.eval-result .big { width: 72px; height: 72px; border-radius: 50%; background: transparent; border: 1px solid var(--ink); display: grid; place-items: center; margin: 0 auto 20px; }
.eval-result .big svg { width: 34px; height: 34px; stroke: var(--ink); }

/* ---------- Posts / blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.post { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .18s, transform .18s; }
.post:hover { border-color: var(--ink); transform: translateY(-4px); }
.post-cover { aspect-ratio: 16/10; background: var(--dark); position: relative; display: grid; place-items: center; }
.post-cover svg { width: 46px; height: 46px; stroke: var(--bone-soft); }
.post-tag { position: absolute; top: 14px; left: 14px; background: var(--paper); color: var(--ink); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.post-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-body time { font-size: .76rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.post-body h3 { font-size: 1.28rem; margin: 10px 0 10px; line-height: 1.22; }
.post-body p { font-size: .94rem; color: var(--muted); flex: 1; }
.post-body .more { margin-top: 20px; font-weight: 600; color: var(--wine); font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Article ---------- */
.article { max-width: 720px; margin-inline: auto; }
.article .crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 22px; letter-spacing: .02em; }
.article .crumbs a:hover { color: var(--wine); }
.article > .eyebrow { margin-bottom: 18px; }
.article h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 20px; line-height: 1.1; }
.article .meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 38px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-body { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.76; }
.article-body h2 { font-size: 1.85rem; margin: 46px 0 16px; color: var(--ink); }
.article-body h3 { font-size: 1.38rem; margin: 32px 0 10px; color: var(--ink); }
.article-body p { margin-bottom: 20px; }
.article-body ul { display: grid; gap: 12px; margin: 0 0 20px; }
.article-body ul li { position: relative; padding-left: 26px; }
.article-body ul li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 10px; height: 1px; background: var(--wine); }
.article-body strong { color: var(--ink); font-weight: 600; }
.callout { background: var(--paper-2); border-left: 2px solid var(--wine); border-radius: 0 6px 6px 0; padding: 24px 28px; margin: 30px 0; }
.callout p { margin: 0; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--dark); color: var(--bone); border-radius: var(--radius-lg); padding: 72px 50px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(640px 360px at 50% -30%, rgba(243,240,232,.05), transparent 65%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: var(--bone-soft); max-width: 54ch; margin: 18px auto 0; font-size: 1.14rem; }
.cta-band .hero-cta { justify-content: center; margin-top: 34px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-3); color: var(--bone-soft); padding: 76px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer-grid h4 { color: #fff; font-family: var(--font-body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-grid a { display: block; padding: 6px 0; font-size: .94rem; transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand small { color: var(--bone-soft); }
.footer-brand p { font-size: .94rem; max-width: 38ch; line-height: 1.6; }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--bone-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .84rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp float + toast ---------- */
.wa-float { position: fixed; right: 22px; bottom: 24px; z-index: 70; display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: var(--paper); font-weight: 600; padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow-lg); transition: transform .15s; }
.wa-float:hover { transform: translateY(-3px); background: #000; }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .lbl { font-size: .9rem; }
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 140%); background: var(--ink); color: var(--paper); padding: 15px 24px; border-radius: 8px; box-shadow: var(--shadow-lg); z-index: 90; transition: transform .4s ease; font-size: .95rem; max-width: 90vw; }
.toast.show { transform: translate(-50%, 0); }

/* ---------- Misc ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag { font-size: .84rem; color: var(--ink-soft); background: transparent; border: 1px solid var(--line-2); padding: 8px 16px; border-radius: 999px; }
.divider { height: 1px; background: var(--line); border: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.anchor { scroll-margin-top: 96px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .lead-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 66px 0 76px; gap: 40px; }
  .options, .cases { grid-template-columns: 1fr; }
  .opt { border-right: 0; border-bottom: 1px solid var(--line); }
  .opt:last-child { border-bottom: 0; }
  .cases { gap: 1px; }
  .steps, .tcards, .posts, .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .stat:nth-child(2)::before { display: none; }
  .media-card { order: -1; }
  .lead-aside { padding: 42px 34px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav-links { position: fixed; inset: 78px 0 auto; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 24px 18px; box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .steps, .tcards, .posts, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .cta-band, .lead-form, .lead-aside { padding: 38px 26px; }
  .wa-float .lbl { display: none; }
  .hero-cta .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }
