/* ============================================================
   LicitaBot — Landing Page
   Design system: light & airy, sober/corporate, green = action
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* fonts */
  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* color — neutrals (cool mint-tinted) */
  --bg: #f5f8f6;
  --surface: #ffffff;
  --surface-alt: #eef3f0;
  --ink: #112826;
  --ink-strong: #0a1c1a;
  --muted: #51635d;
  --muted-2: #76867f;
  --border: #e2eae6;
  --border-strong: #d3ded8;

  /* color — brand. Only --primary is the knob; the rest derive from it. */
  --primary: #12a150;
  --primary-deep: color-mix(in srgb, var(--primary) 62%, #06251a);
  --primary-hover: color-mix(in srgb, var(--primary) 87%, #000);
  --primary-soft: color-mix(in srgb, var(--primary) 12%, #fff);
  --primary-soft-2: color-mix(in srgb, var(--primary) 22%, #fff);
  --on-primary: #ffffff;

  /* whatsapp authentic (mockup only) */
  --wa-bg: #e4ddd4;
  --wa-header: #075e54;
  --wa-bubble: #ffffff;
  --wa-green: #25d366;
  --wa-link: #1a7af0;

  /* shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* shadow — soft, airy */
  --sh-sm: 0 1px 2px rgba(17,40,38,.05), 0 2px 6px rgba(17,40,38,.04);
  --sh-md: 0 4px 14px rgba(17,40,38,.06), 0 10px 30px rgba(17,40,38,.05);
  --sh-lg: 0 12px 28px rgba(17,40,38,.08), 0 30px 70px rgba(17,40,38,.10);
  --sh-primary: 0 8px 22px rgba(18,161,80,.28);

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

section { position: relative; }

/* ---------- shared atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--primary-soft);
  border: 1px solid var(--primary-soft-2);
  padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.section-head { max-width: 720px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; }
.section-head .lead { margin-top: 18px; color: var(--muted); font-size: 19px; line-height: 1.55; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  border-radius: 999px; padding: 14px 24px; cursor: pointer; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--sh-primary); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-ghost { background: var(--surface); color: var(--ink-strong); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn-lg { padding: 17px 30px; font-size: 17px; }

.icon { width: 1em; height: 1em; display: inline-block; flex-shrink: 0; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-color: var(--border); background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15.5px; font-weight: 500; color: var(--muted); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink-strong); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .login { font-size: 15.5px; font-weight: 500; color: var(--ink-strong); }
.nav-cta .login:hover { color: var(--primary-deep); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(150deg, var(--primary), var(--primary-deep));
  display: grid; place-items: center; box-shadow: var(--sh-primary);
  position: relative;
}
.logo-mark svg { width: 21px; height: 21px; }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink-strong); }
.logo-word b { color: var(--primary-deep); font-weight: 700; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 64px 0 36px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 80% at 78% 8%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%),
    radial-gradient(50% 60% at 8% 100%, var(--primary-soft), transparent 60%);
  opacity: .9;
}
.hero .wrap { position: relative; z-index: 1; }

/* Hero A — split */
.heroA { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 { font-size: clamp(38px, 5vw, 66px); font-weight: 800; }
.hero-copy h1 .hl { color: var(--primary-deep); }
.hero-sub { margin-top: 22px; font-size: 20px; line-height: 1.55; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-micro { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--muted-2); font-size: 14.5px; }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro .check { color: var(--primary); }

@media (max-width: 920px) {
  .heroA { grid-template-columns: 1fr; gap: 40px; }
  .hero-phone-wrap { justify-self: center; }
}

/* phone mockup */
.hero-phone-wrap { display: flex; justify-content: center; position: relative; }
.phone {
  width: 310px; border-radius: 42px; background: #0c0f0e;
  padding: 11px; box-shadow: var(--sh-lg), 0 0 0 1px rgba(0,0,0,.06);
  position: relative; text-align: left; z-index: 1;
}
.phone-screen { border-radius: 32px; overflow: hidden; background: var(--wa-bg); position: relative; }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #0c0f0e; border-radius: 999px; z-index: 6; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 12px 22px 6px; font-size: 13px; font-weight: 600; color: #fff; background: var(--wa-header); }
.phone-status .ss { display: flex; gap: 6px; align-items: center; }

.wa-header { display: flex; align-items: center; gap: 11px; padding: 8px 14px 12px; background: var(--wa-header); color: #fff; }
.wa-back { font-size: 20px; opacity: .9; }
.wa-ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(150deg, var(--primary), var(--primary-deep)); display: grid; place-items: center; flex-shrink: 0; }
.wa-ava svg { width: 20px; height: 20px; }
.wa-name { font-weight: 600; font-size: 15px; line-height: 1.15; }
.wa-status { font-size: 11.5px; opacity: .8; display: flex; align-items: center; gap: 5px; }

.wa-body { padding: 14px 12px 18px; min-height: 360px; background-image: linear-gradient(rgba(228,221,212,.6), rgba(228,221,212,.6)); }
.wa-day { text-align: center; margin: 4px auto 14px; }
.wa-day span { background: #d7e9e2; color: #5a6b64; font-size: 11px; font-weight: 600; padding: 4px 11px; border-radius: 8px; }

.wa-msg {
  background: var(--wa-bubble); border-radius: 12px; border-top-left-radius: 3px;
  padding: 11px 12px 8px; max-width: 248px; box-shadow: 0 1px 1px rgba(0,0,0,.08);
  position: relative; font-size: 13.5px; line-height: 1.5; color: #1c1c1c;
}
.wa-msg + .wa-msg { margin-top: 8px; }
.wa-bot-tag { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary-deep); font-size: 12.5px; margin-bottom: 7px; }
.wa-bot-tag .vf { color: var(--wa-green); }
.wa-edital-title { font-weight: 700; color: #1c1c1c; margin-bottom: 8px; font-size: 13.5px; }
.wa-row { display: flex; gap: 7px; margin: 3px 0; }
.wa-row .k { flex-shrink: 0; }
.wa-row .lbl { color: #667; }
.wa-chips { display: flex; flex-wrap: wrap; gap: 5px; margin: 9px 0 4px; }
.wa-chip { background: var(--primary-soft); color: var(--primary-deep); font-size: 10.5px; font-weight: 600; padding: 2px 8px; border-radius: 999px; font-family: var(--font-mono); }
.wa-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 9px; padding-top: 9px; border-top: 1px solid #eef0ef;
  color: var(--wa-link); font-weight: 600; font-size: 13px;
}
.wa-time { text-align: right; font-size: 10px; color: #9aa; margin-top: 4px; }

/* typing indicator */
.wa-typing { display: inline-flex; gap: 4px; padding: 12px 14px; background: #fff; border-radius: 12px; border-top-left-radius: 3px; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.wa-typing i { width: 7px; height: 7px; border-radius: 50%; background: #b9c2bd; animation: dotpulse 1.2s infinite ease-in-out; }
.wa-typing i:nth-child(2) { animation-delay: .2s; }
.wa-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes dotpulse { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.wa-pop { animation: waPop .45s cubic-bezier(.2,.8,.25,1) both; }
@keyframes waPop { from { transform: translateY(10px) scale(.98); } to { transform: none; } }

/* floating badge near phone */
.phone-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 11px 14px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-strong);
  z-index: 3;
}
.phone-badge .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(18,161,80,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(18,161,80,.45); } 70% { box-shadow: 0 0 0 10px rgba(18,161,80,0); } 100% { box-shadow: 0 0 0 0 rgba(18,161,80,0); } }
.badge-tl { top: 26px; left: -34px; }
.badge-br { bottom: 40px; right: -30px; }
@media (max-width: 460px) { .phone-badge { display: none; } }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; text-align: center; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--ink-strong); letter-spacing: -0.02em; }
.stat .num b { color: var(--primary); }
.stat .lbl { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(odd) { border-left: none; } }

/* ============================================================
   GENERIC SECTION SPACING
   ============================================================ */
.block { padding: 96px 0; }
.block.alt { background: var(--surface-alt); }
.center-head { max-width: 720px; margin: 0 auto; text-align: center; }
.center-head .lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   WHATSAPP PROOF SECTION
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; margin-top: 56px; }
.proof-points { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.proof-point { display: flex; gap: 14px; }
.proof-point .pi { width: 42px; height: 42px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; flex-shrink: 0; color: var(--primary-deep); }
.proof-point .pi svg { width: 20px; height: 20px; }
.proof-point h4 { font-size: 17.5px; font-weight: 700; margin-bottom: 3px; }
.proof-point p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 920px) { .proof-grid { grid-template-columns: 1fr; gap: 44px; justify-items: center; } .proof-points { width: 100%; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 58px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--primary-soft-2); }
.step-num { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: .05em; }
.step-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-soft); display: grid; place-items: center; margin: 16px 0 18px; color: var(--primary-deep); }
.step-ico svg { width: 26px; height: 26px; }
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   AUDIENCE
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.aud-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 38px 34px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.aud-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 22px; }
.aud-ico.a { background: var(--primary-soft); color: var(--primary-deep); }
.aud-ico.b { background: #eef2fb; color: #2a52be; }
.aud-ico svg { width: 28px; height: 28px; }
.aud-card .tag { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted-2); }
.aud-card h3 { font-size: 24px; font-weight: 700; margin: 8px 0 14px; }
.aud-card p { color: var(--muted); font-size: 16px; }
.aud-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.aud-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.aud-list .ck { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 760px) { .aud-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DIFFERENTIATORS — comparison
   ============================================================ */
.cmp { margin-top: 56px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-md); background: var(--surface); }
.cmp-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; }
.cmp-cell { padding: 20px 26px; border-bottom: 1px solid var(--border); font-size: 15.5px; display: flex; align-items: center; gap: 10px; }
.cmp-grid > .cmp-cell:nth-child(3n+2) { background: var(--primary-soft); }
.cmp-col-h { font-family: var(--font-display); font-weight: 700; font-size: 16px; padding: 24px 26px; border-bottom: 1px solid var(--border); }
.cmp-col-h.feat { color: var(--muted-2); font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }
.cmp-col-h.us { background: var(--primary-soft); color: var(--primary-deep); display: flex; align-items: center; gap: 9px; }
.cmp-col-h.them { color: var(--muted); }
.cmp-cell .ck { color: var(--primary); flex-shrink: 0; }
.cmp-cell .xk { color: #c0654f; flex-shrink: 0; }
.cmp-cell.feat-label { font-weight: 600; color: var(--ink-strong); }
.cmp-grid > div:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 760px) {
  .cmp-grid { grid-template-columns: 1fr; }
  .cmp-col-h.feat { display: none; }
  .cmp-cell { border-bottom: 1px solid var(--border); }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 999px; padding: 5px; margin: 28px auto 0; }
.price-toggle button { border: none; background: transparent; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--muted); padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: all .2s ease; }
.price-toggle button.active { background: var(--primary); color: #fff; box-shadow: var(--sh-primary); }
.price-toggle .save { font-family: var(--font-mono); font-size: 11px; color: var(--primary-deep); background: var(--primary-soft); padding: 2px 8px; border-radius: 999px; margin-left: 6px; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 30px; box-shadow: var(--sh-sm); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.plan.featured { border: 2px solid var(--primary); box-shadow: var(--sh-lg); position: relative; }
.plan.featured::before {
  content: 'Mais popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; box-shadow: var(--sh-primary);
}
.plan .pname { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink-strong); }
.plan .pdesc { color: var(--muted); font-size: 14.5px; margin-top: 6px; min-height: 42px; }
.plan .pprice { margin: 20px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.plan .pprice .cur { font-size: 19px; font-weight: 600; color: var(--ink); }
.plan .pprice .val { font-family: var(--font-display); font-weight: 800; font-size: 46px; color: var(--ink-strong); letter-spacing: -0.03em; }
.plan .pprice .per { color: var(--muted); font-size: 15px; }
.plan .pbilled { color: var(--muted-2); font-size: 13px; min-height: 18px; }
.plan .btn { margin: 22px 0; width: 100%; }
.plan .pfeat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.plan .pfeat li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.plan .pfeat .ck { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.guarantee { margin-top: 34px; text-align: center; color: var(--muted); font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.guarantee .shield { color: var(--primary); }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 800px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.open { border-color: var(--primary-soft-2); box-shadow: var(--sh-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink-strong); }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); display: grid; place-items: center; transition: transform .3s ease, background .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: linear-gradient(150deg, var(--primary-deep), var(--primary)); border-radius: var(--r-xl); padding: 64px 56px; text-align: center; color: #fff; box-shadow: var(--sh-lg); position: relative; overflow: hidden; }
.cta-strip h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; max-width: 18ch; margin: 0 auto; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 16px auto 0; max-width: 480px; font-size: 18px; }
.cta-strip .btn { margin-top: 30px; }
.cta-strip .btn-primary { background: #fff; color: var(--primary-deep); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.cta-strip .btn-primary:hover { background: #f4fff8; }
.cta-strip .micro { margin-top: 16px; color: rgba(255,255,255,.8); font-size: 14px; }
.cta-deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink-strong); color: #c6d3ce; padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo-word { color: #fff; }
.footer .logo-word b { color: var(--wa-green); }
.footer-blurb { margin-top: 18px; color: #93a39d; font-size: 15px; max-width: 280px; }
.footer h5 { color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: #a9b8b2; font-size: 15px; transition: color .15s ease; }
.footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-disc { color: #7e8e88; font-size: 13px; max-width: 620px; line-height: 1.5; }
.footer-meta { color: #7e8e88; font-size: 13px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }
