/* =========================================================
   Dutow — Corporate identity one-pager
   Primary brand color: #f47e42
   ========================================================= */

:root {
  /* Brand palette built around #f47e42 */
  --primary: #f47e42;
  --primary-600: #e76d2e;
  --primary-700: #c9551b;
  --primary-100: #fdebe0;
  --primary-50: #fff6f1;

  /* Supporting neutrals + complementary deep slate */
  --ink: #16202e;
  --ink-700: #2b3a4f;
  --slate: #5b6b7e;
  --line: #e7ebf1;
  --bg: #ffffff;
  --bg-tint: #fbf7f4;
  --footer: #101a27;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16, 26, 39, .06), 0 4px 14px rgba(16, 26, 39, .05);
  --shadow-md: 0 12px 40px rgba(16, 26, 39, .12);
  --shadow-brand: 0 14px 30px rgba(244, 126, 66, .28);

  --maxw: 1140px;
  --gap: clamp(1.5rem, 4vw, 4rem);

  --font-head: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; }
p  { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tint { background: var(--bg-tint); }

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin: 0 0 .9rem;
}
.eyebrow--light { color: var(--primary-100); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .92rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-700); transform: translateY(-2px); }

.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--ink-700); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .15rem; width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--primary-100);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/76% no-repeat, none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9551b' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/100% no-repeat,
    var(--primary-100);
  border-radius: 50%;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.brand-mark { display: inline-flex; color: var(--primary); }
.brand--light { color: #fff; }
.brand--light .brand-mark { color: var(--primary); }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.8rem; margin: 0; padding: 0; }
.nav-menu a { font-family: var(--font-head); font-weight: 600; font-size: .98rem; color: var(--ink-700); transition: color .15s ease; }
.nav-menu a:not(.nav-cta):hover { color: var(--primary-700); }
.nav-cta { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(1100px 480px at 88% -8%, var(--primary-100), transparent 60%),
    radial-gradient(800px 420px at 0% 110%, #eef2f7, transparent 55%),
    var(--bg);
  padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 9vw, 7rem);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap); align-items: center; }
.hl { color: var(--primary); }
.lead { font-size: 1.18rem; color: var(--slate); max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 2.4rem; }
.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: .9rem; padding: 0; margin: 1.9rem 0 0; }
.hero-stats li {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: .7rem 1.05rem .7rem .7rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hero-stats li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.hero-stats strong {
  flex: none; display: grid; place-items: center; min-width: 2.7rem; height: 2.7rem; padding: 0 .45rem;
  border-radius: 10px; background: var(--primary-100); color: var(--primary-700);
  font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; line-height: 1; letter-spacing: -.01em;
}
.hero-stats span { font-size: .85rem; line-height: 1.3; color: var(--slate); max-width: 15ch; }

.hero-media { position: relative; }
.media-frame {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md);
  border: 8px solid #fff; rotate: 2deg; transition: rotate .4s ease;
  aspect-ratio: 1 / 1; background: var(--primary-50);
}
.media-frame:hover { rotate: 0deg; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame--alt { rotate: -2deg; }
.media-badge {
  position: absolute; left: -12px; bottom: 26px; background: #fff; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: .6rem 1rem;
  border-radius: 999px; box-shadow: var(--shadow-md); display: inline-flex; align-items: center; gap: .5rem;
}
.media-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(244,126,66,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(244,126,66,.55);} 70% { box-shadow: 0 0 0 12px rgba(244,126,66,0);} 100% { box-shadow: 0 0 0 0 rgba(244,126,66,0);} }

/* =========================================================
   Trust strip
   ========================================================= */
.trust { border-block: 1px solid var(--line); background: #fff; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.4rem; padding-block: 1.3rem; }
.trust-label { font-family: var(--font-head); font-weight: 600; color: var(--slate); font-size: .92rem; }
.trust-list { list-style: none; display: flex; flex-wrap: wrap; gap: 1.2rem 2.2rem; margin: 0; padding: 0; }
.trust-list li { font-family: var(--font-head); font-weight: 700; color: var(--ink); opacity: .8; }

/* =========================================================
   About
   ========================================================= */
.about-grid, .analytics-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--gap); align-items: center; }
.analytics-grid { grid-template-columns: 1.05fr 1fr; }

/* =========================================================
   Mission
   ========================================================= */
.mission-inner { max-width: 760px; }
.mission-lead { font-size: 1.25rem; color: var(--slate); }

/* =========================================================
   Section heads
   ========================================================= */
.section-head { max-width: 660px; margin-bottom: 2.8rem; }
.section-sub { color: var(--slate); font-size: 1.08rem; }

/* =========================================================
   Flow (platform)
   ========================================================= */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 1rem; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative;
}
.flow-step h3 { margin-top: .6rem; }
.flow-step p { color: var(--slate); margin: 0; font-size: .98rem; }
.flow-index { font-family: var(--font-head); font-weight: 800; color: var(--primary); font-size: 1.05rem; letter-spacing: .05em; }
.flow-arrow { align-self: center; color: var(--primary); font-size: 1.6rem; font-weight: 700; }

/* =========================================================
   Cards (initiatives)
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-100); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--primary-100); color: var(--primary-700); margin-bottom: 1.1rem;
}
.card p { color: var(--slate); margin: 0; }

/* =========================================================
   Analytics features
   ========================================================= */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.8rem; margin-top: 1.8rem; }
.feature h4 { font-size: 1.02rem; margin: 0 0 .3rem; position: relative; padding-left: 1.1rem; }
.feature h4::before { content: ""; position: absolute; left: 0; top: .35em; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.feature p { color: var(--slate); font-size: .94rem; margin: 0; }

/* =========================================================
   Stats band
   ========================================================= */
.stats-band { background: linear-gradient(135deg, var(--primary), var(--primary-600)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: clamp(2.6rem, 6vw, 4rem); text-align: center; }
.stat strong { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1; }
.stat .suffix { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.8rem); }
.stat p { margin: .5rem 0 0; opacity: .92; font-size: .96rem; }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  background: var(--footer);
  background-image: radial-gradient(700px 320px at 100% 0%, rgba(244,126,66,.32), transparent 60%);
  color: #fff; border-radius: 28px; padding: clamp(2rem, 5vw, 3.6rem);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--gap); align-items: center;
}
.cta h2 { color: #fff; }
.cta-copy p { color: #c4cedb; margin: 0; }
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.cta-form .btn-block { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #c4cedb; }
.field input, .field select {
  font-family: var(--font-body); font-size: 1rem; padding: .8rem 1rem; border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff;
}
.field input::placeholder { color: #8c99a8; }
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,.1); }
.field select option { color: var(--ink); }
.form-note { grid-column: 1 / -1; margin: 0; font-size: .9rem; color: var(--primary-100); min-height: 1.2em; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--footer); color: #aeb9c6; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand-link { display: inline-block; }
.footer-logo { height: 34px; width: auto; display: block; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .25rem 0; font-size: .96rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .88rem; }
.footer-bottom--bare { border-top: none; }
.footer-legal a:hover { color: var(--primary); }

/* =========================================================
   Thank-you / confirmation page
   ========================================================= */
.ty {
  min-height: calc(100vh - 72px);
  display: grid; place-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(1000px 460px at 85% -10%, var(--primary-100), transparent 60%),
    radial-gradient(760px 400px at 0% 110%, #eef2f7, transparent 55%),
    var(--bg);
}
.ty-inner { width: 100%; }
.ty-card {
  max-width: 680px; margin-inline: auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow-md); padding: clamp(2rem, 5vw, 3.4rem);
}
.ty-check {
  display: inline-grid; place-items: center; width: 76px; height: 76px;
  border-radius: 50%; background: var(--primary-100); color: var(--primary-700);
  margin-bottom: 1.4rem;
}
.ty-card h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.ty-lead { font-size: 1.12rem; color: var(--slate); max-width: 52ch; margin-inline: auto; }

.ty-launch {
  display: flex; gap: 1rem; text-align: left; align-items: flex-start;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  border-radius: var(--radius); padding: 1.2rem 1.3rem; margin: 1.8rem 0;
}
.ty-launch-icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--primary); color: #fff;
}
.ty-launch strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.08rem; }
.ty-launch span { color: var(--slate); font-size: .96rem; }

.ty-steps { list-style: none; padding: 0; margin: 1.8rem 0; display: grid; gap: .8rem; text-align: left; }
.ty-steps li { display: flex; align-items: center; gap: .9rem; }
.ty-steps span {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-100); color: var(--primary-700); font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.ty-steps p { margin: 0; color: var(--slate); font-size: .98rem; }
.ty-steps strong { color: var(--ink); }

.ty-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.ty-help { margin: 1.6rem 0 0; font-size: .92rem; color: var(--slate); }
.ty-help a { color: var(--primary-700); font-weight: 600; }

@media (max-width: 520px) {
  .ty-launch { flex-direction: column; }
}

/* =========================================================
   404 / Not-found page
   ========================================================= */
.nf {
  min-height: calc(100vh - 72px);
  display: grid; place-items: center; text-align: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background:
    radial-gradient(1000px 460px at 85% -10%, var(--primary-100), transparent 60%),
    radial-gradient(760px 400px at 0% 110%, #eef2f7, transparent 55%),
    var(--bg);
}
.nf-inner { max-width: 640px; }

.nf-code {
  display: flex; align-items: center; justify-content: center; gap: clamp(.2rem, 2vw, 1rem);
  font-family: var(--font-head); font-weight: 800; color: var(--ink);
  font-size: clamp(5rem, 18vw, 9rem); line-height: 1; letter-spacing: -.04em;
  margin: .6rem 0 1.4rem;
}
.nf-zero { color: var(--primary); display: inline-grid; place-items: center; }
.nf-zero svg { width: clamp(5rem, 18vw, 9rem); height: auto; animation: nf-spin 14s linear infinite; }
@keyframes nf-spin { to { transform: rotate(360deg); } }

.nf h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.nf-lead { font-size: 1.1rem; color: var(--slate); max-width: 46ch; margin-inline: auto; }

.nf-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin: 2rem 0 0; }

.nf-links {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 1.2rem;
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.nf-links span { font-size: .9rem; color: var(--slate); }
.nf-links a { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--primary-700); }
.nf-links a:hover { color: var(--primary); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .nf-zero svg { animation: none; }
}

/* =========================================================
   Legal / document pages (privacy, terms)
   ========================================================= */
.legal-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, var(--primary-100), transparent 60%),
    var(--bg-tint);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .4rem; }
.legal-meta { color: var(--slate); font-size: .95rem; margin: 0; }

.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }

.legal-toc {
  position: sticky; top: 92px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.3rem; background: #fff; box-shadow: var(--shadow-sm);
}
.legal-toc h2 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--primary-700); margin-bottom: .8rem; }
.legal-toc ol { margin: 0; padding-left: 1.1rem; display: grid; gap: .45rem; }
.legal-toc a { font-size: .92rem; color: var(--slate); }
.legal-toc a:hover { color: var(--primary-700); }

.legal-body { max-width: 70ch; }
.legal-body h2 {
  font-size: 1.35rem; margin-top: 2.4rem; padding-top: .4rem; scroll-margin-top: 92px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal-body p, .legal-body li { color: var(--ink-700); }
.legal-body ul { padding-left: 1.3rem; display: grid; gap: .4rem; margin: 0 0 1rem; }
.legal-body a { color: var(--primary-700); font-weight: 600; }
.legal-callout {
  background: var(--primary-50); border: 1px solid var(--primary-100);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin: 1.4rem 0; font-size: .96rem;
}
.legal-back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2.5rem; font-family: var(--font-head); font-weight: 600; color: var(--primary-700); }

@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .media-badge .dot { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .analytics-grid, .cta { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .cta-form { margin-top: 1rem; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 1.2rem 1.2rem; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s ease;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: .85rem .2rem; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: .6rem; border-bottom: none !important; }
}
@media (max-width: 520px) {
  .feature-list { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: .7rem; }
  .hero-stats li { width: 100%; }
}
