/* ==========================================================================
   GreenWashrooms — shared stylesheet
   Design tokens + components, distilled from the Claude Design source.
   British English. No framework, no build step.
   ========================================================================== */

/* ---- Fonts (self-hosted variable fonts, latin subset) ------------------- */
@font-face {
  font-family: 'Public Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/public-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('/assets/fonts/space-grotesk.woff2') format('woff2');
}

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --navy: #1B2A4A;
  --navy-2: #0F1C34;
  --ink: #1B2A4A;
  --ink-2: #3A4560;
  --muted: #5E6A82;
  --paper: #FFFFFF;
  --grey: #F2EFE9;
  --grey-2: #FAF8F3;
  --line: #E3DFD5;
  --line-dark: #2B3B5E;
  --accent: #157A4E;
  --accent-hi: #1E9E63;
  --accent-dark: #0E5A39;
  --accent-tint: #E2F2E9;
  --danger: #A2312A;
  --display: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px;
}

/* ---- Reset / base ------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 { font-family: var(--display); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-dark); margin: 0 0 10px;
}
.lead { font-size: 18px; color: var(--muted); text-wrap: pretty; }
.section { padding: clamp(56px, 7vw, 80px) 0; }
.section-grey { background: var(--grey); border-bottom: 1px solid var(--line); }
.section h2 {
  font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em;
  line-height: 1.08; margin: 0 0 12px; text-wrap: balance;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn { font-family: inherit; cursor: pointer; border: none; border-radius: 12px;
  font-weight: 700; display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  color: #fff; padding: 17px 34px; font-size: 17px; min-height: 56px;
  box-shadow: 0 8px 20px -8px rgba(21,122,78,0.55);
}
.btn-primary:hover { filter: brightness(1.06); color: #fff; }
.btn-solid { background: var(--accent); color: #fff; padding: 12px 18px; font-size: 14px;
  min-height: 44px; border-radius: 9px; }
.btn-solid:hover { background: var(--accent-hi); color: #fff; }
.btn-outline { background: none; border: 1.5px solid var(--accent); color: var(--accent-dark);
  font-size: 15px; padding: 12px 20px; min-height: 44px; border-radius: 10px; }
.btn-outline:hover { background: var(--accent-tint); color: var(--accent-dark); }
.btn-lg { padding: 16px 28px; font-size: 16px; min-height: 52px; min-width: 260px; border-radius: 10px; }
.cta-ready { animation: gw-cta 1.7s ease-in-out infinite; }

/* ---- Info bar + nav ----------------------------------------------------- */
.infobar {
  background: var(--navy); color: #E7EDF5; font-size: 14px; font-weight: 600;
  text-align: center; padding: 10px 16px; display: flex; align-items: center;
  justify-content: center; gap: 10px;
}
.infobar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-hi);
  flex: none; animation: gw-dot 1.9s infinite; }
.site-header { background: var(--navy); color: #E7EDF5; border-bottom: 1px solid rgba(255,255,255,0.06); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; color: #fff; }
.brand-word b { color: var(--accent-hi); font-weight: 700; }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy-2); color: #E7EDF5; padding: clamp(48px,7vw,88px) 0 clamp(52px,7vw,96px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5; }
.hero__grad { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(1100px 560px at 108% -12%, rgba(30,158,99,0.32), transparent 60%),
    linear-gradient(180deg, rgba(27,42,74,0.82) 0%, rgba(15,28,52,0.94) 100%); }
.hero__grid { position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%); }
.hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto;
  padding: 0 24px; text-align: center; }
.hero h1 { font-weight: 700; font-size: clamp(34px,5.4vw,60px); line-height: 1.03;
  letter-spacing: -0.02em; margin: 20px 0 18px; color: #fff; text-wrap: balance; }
.hero p.sub { font-size: clamp(18px,1.8vw,21px); line-height: 1.5;
  color: rgba(231,237,245,0.86); margin: 0 auto 30px; max-width: 60ch; text-wrap: pretty; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #A8D8BC;
  background: rgba(30,158,99,0.14); border: 1px solid rgba(30,158,99,0.4);
  padding: 6px 12px; border-radius: 999px; }
.badge .d { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-hi); }
.hero .fineprint { font-size: 13px; color: rgba(231,237,245,0.62); margin: 14px 0 34px; font-weight: 600; }
.hero__ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px 24px; }
.hero__ticks li { display: flex; gap: 8px; align-items: center; font-size: 15px;
  font-weight: 600; color: rgba(231,237,245,0.9); }
.hero__ticks .tk { color: var(--accent-hi); }

/* Editable motivation chip (pre-seeded pages) */
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: #E7EDF5; background: rgba(30,158,99,0.16); border: 1px solid rgba(30,158,99,0.4);
  padding: 6px 6px 6px 14px; border-radius: 999px; margin: 0 0 18px; }
.chip button { background: var(--accent); color: #fff; border: none; border-radius: 999px;
  padding: 3px 10px; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit;
  min-height: 24px; }
.chip button:hover { background: var(--accent-hi); }

/* ---- Benefit strip ------------------------------------------------------ */
.benefits { background: var(--grey); border-bottom: 1px solid var(--line); padding: 24px 0; overflow: hidden; }
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 16px 12px; }
.benefit { display: flex; align-items: center; gap: 12px; }
.benefit .ic { width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; }
.benefit .t { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.benefit .s { font-size: 12px; color: var(--muted); line-height: 1.2; margin-top: 1px; }

/* ---- Generic cards / steps --------------------------------------------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.card h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.grid-3 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.stepnum { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-tint);
  color: var(--accent-dark); font-family: var(--display); font-weight: 700; display: grid;
  place-items: center; font-size: 16px; }

/* Dark section (why-us) */
.section-dark { background: radial-gradient(900px 500px at 105% -20%, rgba(30,158,99,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #E7EDF5; }
.section-dark h2 { color: #fff; }
.section-dark .lead { color: rgba(231,237,245,0.82); }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 4px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; padding: 14px 0;
  list-style: none; display: flex; justify-content: space-between; gap: 16px; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--accent); line-height: 1; flex: none; }
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 0 0 16px; color: var(--ink-2); }

/* Cost table */
.cost-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.cost-table th, .cost-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.cost-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.cost-table td.num { font-weight: 700; color: var(--navy); white-space: nowrap; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }

/* ---- Trust bar ---------------------------------------------------------- */
.trustbar { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.6; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-2); color: rgba(231,237,245,0.72); padding: 48px 0 32px; font-size: 14px; }
.site-footer a { color: rgba(231,237,245,0.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 16px 0; padding: 0; list-style: none; }
.footer-entity { color: #fff; font-weight: 700; font-family: var(--display); }

/* ---- Sticky mobile CTA -------------------------------------------------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px -12px rgba(15,28,52,0.5); display: none; }
.sticky-cta .btn { flex: none; white-space: nowrap; }
body.sticky-on .sticky-cta { display: block; }
@media (min-width: 721px) { .sticky-cta { display: none !important; } }
body.sticky-on { padding-bottom: 76px; }
/* Small screens: stack button on top, text centred underneath. */
@media (max-width: 600px) {
  .sticky-cta .wrap { flex-direction: column-reverse !important; align-items: center !important; gap: 8px !important; }
  .sticky-cta .wrap > div { flex: none !important; text-align: center; }
  .sticky-cta .btn { width: 100%; }
  body.sticky-on { padding-bottom: 108px; }
}

/* ==========================================================================
   Wizard modal (built by js/form.js)
   ========================================================================== */
.gw-overlay { position: fixed; inset: 0; z-index: 100; display: flex;
  background: rgba(15,28,52,0.55); animation: gw-overlay-in 0.2s ease both;
  align-items: center; justify-content: center; padding: 24px; }
.gw-modal { position: relative; z-index: 1; display: flex; flex-direction: column;
  width: 100%; max-width: 520px; max-height: 90vh; background: #fff; border-radius: 18px;
  overflow: hidden; box-shadow: 0 40px 90px -30px rgba(15,28,52,0.6);
  animation: gw-modal-in 0.28s cubic-bezier(.2,.7,.2,1) both; }
@media (max-width: 720px) {
  .gw-overlay { align-items: stretch; justify-content: stretch; padding: 0; }
  .gw-modal { max-width: none; max-height: none; height: 100%; border-radius: 0; }
}
.gw-head { flex: none; padding: 18px 20px 14px; border-bottom: 1px solid var(--line); background: var(--grey-2); }
.gw-head-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.gw-brand { display: flex; align-items: center; gap: 8px; }
.gw-brand img { width: 22px; height: 22px; object-fit: contain; }
.gw-brand span { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--navy); }
.gw-brand b { color: var(--accent); }
.gw-close { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); font-size: 18px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; font-family: inherit; }
.gw-close:hover { background: var(--grey); color: var(--navy); }
.gw-prog-meta { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 8px; }
.gw-prog-meta .n { color: var(--accent-dark); }
.gw-prog-meta .p { color: var(--muted); }
.gw-prog-track { height: 6px; background: rgba(27,42,74,0.08); border-radius: 999px; overflow: hidden; }
.gw-prog-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-hi));
  border-radius: 999px; transition: width 0.4s cubic-bezier(.2,.7,.2,1); }
.gw-prog-fill.pulse { animation: gw-prog-pulse 1.4s ease-in-out infinite; }
.gw-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 20px; }
.gw-foot { flex: none; padding: 12px 20px; border-top: 1px solid var(--line);
  background: var(--grey-2); font-size: 11.5px; color: var(--muted); text-align: center; line-height: 1.5; }
.gw-step { animation: gw-fade-up 0.28s ease both; }
.gw-step h2 { font-weight: 600; font-size: clamp(20px,2.4vw,24px); line-height: 1.16;
  margin: 0 0 6px; color: var(--navy); text-wrap: balance; }
.gw-step .stepsub { font-size: 14px; color: var(--muted); margin: 0 0 16px; }
.gw-cards { display: grid; gap: 8px; }
.gw-card { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 14px 16px; min-height: 60px; border-radius: 12px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); cursor: pointer; font-family: inherit;
  transition: border-color .12s, box-shadow .12s; }
.gw-card:hover { border-color: var(--accent); box-shadow: 0 8px 18px -10px rgba(27,42,74,0.25); }
.gw-card.sel { border-color: var(--accent);
  background: linear-gradient(180deg, #fff, rgba(21,122,78,0.06)); box-shadow: 0 0 0 3px rgba(21,122,78,0.18); }
.gw-card .lbl { flex: 1; font-weight: 600; font-size: 15px; line-height: 1.25; }
.gw-card .mk { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex: none; }
.gw-card .ar { font-size: 18px; color: var(--muted); opacity: 0.5; font-weight: 700; flex: none; }
.gw-cta { width: 100%; margin-top: 16px; padding: 15px 20px; min-height: 50px; border: none;
  border-radius: 10px; background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit;
  box-shadow: 0 8px 20px -8px rgba(21,122,78,0.55); }
.gw-cta[disabled] { background: #C9D2DC; cursor: not-allowed; box-shadow: none; }
.gw-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.gw-field > span.l { font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-2); }
.gw-field .hint { font-size: 12px; font-weight: 400; color: var(--muted); }
.gw-input { width: 100%; padding: 12px 14px; min-height: 44px; border-radius: 8px;
  border: 1.5px solid var(--line); background: #fff; font-size: 15px; font-family: inherit; color: var(--ink); }
.gw-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(21,122,78,0.18); }
.gw-input.invalid { border-color: var(--danger); }
.gw-consent { display: flex; gap: 11px; align-items: flex-start; font-size: 13px;
  color: var(--ink-2); cursor: pointer; line-height: 1.45; }
.gw-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.gw-confirm-note { background: var(--accent-tint); border: 1px solid rgba(21,122,78,0.25);
  border-radius: 12px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.gw-confirm-note .mk { width: 28px; height: 28px; border-radius: 50%; background: var(--accent);
  color: #fff; display: grid; place-items: center; flex: none; font-size: 15px; }
.gw-confirm-note p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--navy); font-weight: 600; }
.gw-recap { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.gw-recap .row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px;
  border-bottom: 1px solid var(--line); background: #fff; }
.gw-recap .row:last-child { border-bottom: none; }
.gw-recap .rl { font-size: 13px; font-weight: 700; color: var(--muted); flex: none; }
.gw-recap .rv { font-size: 14px; font-weight: 600; color: var(--navy); text-align: right; }
.gw-next { margin-top: 16px; padding: 14px 16px; background: var(--accent-tint); border-radius: 10px;
  font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.gw-next strong { color: var(--navy); display: block; margin-bottom: 4px; }
.gw-error { margin-top: 12px; padding: 12px 14px; background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25); color: var(--danger); font-size: 13px; font-weight: 600;
  border-radius: 8px; display: flex; gap: 10px; align-items: flex-start; }
.gw-error button { background: none; border: none; color: var(--danger); font-weight: 700;
  text-decoration: underline; cursor: pointer; padding: 0; font-family: inherit; font-size: 13px; }
.gw-back { margin-top: 14px; background: none; border: none; color: var(--accent-dark);
  font-size: 13px; font-weight: 700; cursor: pointer; padding: 6px 8px; border-radius: 6px; font-family: inherit; }
.gw-back:hover { background: rgba(27,42,74,0.06); }
.gw-linkbtn { margin-top: 10px; background: none; border: none; color: var(--accent-dark);
  font-size: 13px; font-weight: 700; cursor: pointer; padding: 4px 0; font-family: inherit; display: block; }
.gw-linkbtn:hover { text-decoration: underline; }
.gw-success { text-align: center; padding: 20px 4px 8px; }
.gw-success .tick { width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-hi), var(--accent)); color: #fff; display: flex;
  align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 16px; }
.gw-success h2 { font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--navy); }
.gw-success p { font-size: 15px; color: var(--muted); line-height: 1.5; margin: 0 0 20px; }
.gw-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Benefits: auto-scrolling marquee on mobile ------------------------ */
/* Clones are injected by js/form.js and only shown inside the mobile marquee. */
.benefit-grid .benefit[data-clone] { display: none; }
@media (max-width: 640px) {
  .benefits { overflow: hidden; }
  .benefits .wrap { padding: 0; }
  .benefit-grid { display: flex; grid-template-columns: none; flex-wrap: nowrap;
    width: max-content; gap: 0; animation: gw-marquee 28s linear infinite; }
  .benefit-grid .benefit { flex: none; width: auto; margin-right: 34px; padding-left: 0; }
  .benefit-grid .benefit:first-child { margin-left: 24px; }
  .benefit-grid .benefit[data-clone] { display: flex; }
  .benefits:hover .benefit-grid { animation-play-state: paused; }
}
@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .benefit-grid { animation: none; flex-wrap: wrap; width: auto; gap: 16px 12px; }
  .benefit-grid .benefit { margin-right: 0; }
  .benefit-grid .benefit[data-clone] { display: none; }
}

/* ---- Page components (how-it-works, why-us, coverage, proof, cta band) -- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.step-card { background: var(--grey-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.step-card > img { width: 100%; height: 180px; object-fit: cover; }
.step-card .pad { padding: 28px; }
.step-ic { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--accent-hi);
  display: grid; place-items: center; margin-bottom: 16px; }
.step-kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--accent-dark); margin-bottom: 8px; }
.pill { margin-top: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  background: var(--accent-tint); border-radius: 999px; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: start; }
.why-panel { background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark); border-radius: 16px; padding: 28px; }
.why-panel .k { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-hi); margin-bottom: 16px; }
.check-list { display: grid; gap: 14px; }
.check-row { display: grid; grid-template-columns: 32px 1fr; gap: 14px; }
.check-row .ck { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.check-row h4 { margin: 4px 0; font-size: 17px; font-weight: 700; }
.check-row p { margin: 0; font-size: 15px; }
.check-line { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.check-line .ck { color: var(--accent-hi); flex: none; }

.coverage-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-tags .tag { font-size: 14px; font-weight: 600; color: var(--ink-2); background: var(--grey);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; }

.proof { border: 2px dashed var(--line); border-radius: 12px; padding: 32px; text-align: center; }
.proof .flag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent-dark); background: var(--accent-tint);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }

.cta-band { background: radial-gradient(900px 500px at 50% -30%, rgba(30,158,99,0.25), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #E7EDF5; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .k { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-hi); margin: 0 0 10px; }
.cta-band p { color: rgba(231,237,245,0.82); font-size: 18px; margin: 0 0 28px; }
.cta-band .fine { font-size: 13px; color: rgba(231,237,245,0.65); margin: 14px 0 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px,3vw,34px); letter-spacing: -0.02em; margin: 32px 0 12px; }
.prose h3 { font-size: 20px; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.prose a { font-weight: 600; }
.note { background: var(--accent-tint); border-radius: 10px; padding: 16px 18px; font-size: 15px; color: var(--ink-2); }

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes gw-dot { 0% { box-shadow: 0 0 0 0 rgba(30,158,99,0.6); } 70% { box-shadow: 0 0 0 7px rgba(30,158,99,0); } 100% { box-shadow: 0 0 0 0 rgba(30,158,99,0); } }
@keyframes gw-fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gw-cta { 0%,100% { box-shadow: 0 8px 20px -8px rgba(21,122,78,0.6), 0 0 0 0 rgba(21,122,78,0.5); } 50% { box-shadow: 0 12px 26px -8px rgba(21,122,78,0.8), 0 0 0 7px rgba(21,122,78,0); } }
@keyframes gw-overlay-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes gw-modal-in { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gw-prog-pulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.32); } }
@keyframes gw-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; }
  .trust-marquee .track { animation: none !important; }
}
