/* ============================================================
   Criterion Business Solutions — site styles
   Plain CSS, no frameworks. Clean, modern, professional.
   Brand: near-black ink + cyan accent (#5CE1E6). Color is used
   sparingly. Display type is heavy/industrial (Anton); rugged edges.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand palette */
  --ink:        #0f1419;   /* near-black: text + primary buttons */
  --ink-soft:   #51606e;   /* muted body text */
  --paper:      #ffffff;
  --cloud:      #f5f8fa;   /* light section bg */
  --line:       #e6ebef;

  --violet:     #0f1419;   /* primary action (name kept; now ink) */
  --violet-deep:#000000;   /* primary hover */
  --accent:     #5CE1E6;   /* brand cyan — accents & data */
  --accent-deep:#0B8C99;   /* readable cyan — links/text on white */
  --coral:      #d9685f;   /* muted — "not included" marks only */
  --amber:      #c98a3c;
  --teal:       #2BB8C4;
  --sky:        #2BB8C4;

  --grad-hot:   linear-gradient(120deg, #0f1419 0%, #0B8C99 100%);
  --grad-cool:  linear-gradient(120deg, #5CE1E6 0%, #19A9B7 100%);

  --shadow-sm:  0 2px 8px rgba(13, 27, 42, .06);
  --shadow-md:  0 12px 30px rgba(13, 27, 42, .10);
  --shadow-lg:  0 30px 70px rgba(13, 27, 42, .16);

  --radius:     6px;
  --radius-sm:  4px;
  --maxw:       1140px;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-display: "Anton", "Arial Narrow", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.04;
  font-weight: 900;
}
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .92;
}
h3, h4 { letter-spacing: -.02em; }

h1 { font-size: clamp(3.2rem, 8.4vw, 6rem); }
h2 { font-size: clamp(2.3rem, 5.8vw, 4rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(92, 225, 230, .16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

.text-grad {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .98rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 15px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 20, 25, .20);
}
.btn-primary:hover { background: var(--violet-deep); box-shadow: 0 14px 30px rgba(15, 20, 25, .28); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn-light {
  background: #fff;
  color: var(--violet-deep);
}
.btn-light:hover { background: #f1edff; }

.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--grad-hot);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-size: .68rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; }
.brand-logo { height: 44px; width: auto; display: block; }
.site-footer .brand-logo { height: 58px; }
@media (max-width: 560px) { .brand-logo { height: 38px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
}
.nav-links a:hover { color: var(--violet); text-decoration: none; }
.nav-links a.active { color: var(--violet); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.bg-cloud { background: var(--cloud); }
.stripe { height: 14px; background: repeating-linear-gradient(-45deg, #0f1419 0 14px, var(--accent) 14px 28px); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink .lead { color: #c4d0e0; }
.bg-ink .text-grad { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bg-ink .price-note { color: #8a97a3; }
.bg-ink .eyebrow { color: var(--accent); background: rgba(92,225,230,.14); }
.bg-ink .btn-primary { background: var(--accent); color: #06232a; }
.bg-ink .btn-primary:hover { background: #fff; color: var(--ink); }

.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 100px;
  color: #fff;
  background:
    radial-gradient(820px 520px at 88% -8%, rgba(92,225,230,.30), transparent 60%),
    radial-gradient(680px 460px at -5% 112%, rgba(92,225,230,.14), transparent 55%),
    #0b0f14;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* Dark-hero theme overrides */
.hero .eyebrow { color: var(--accent); background: rgba(92,225,230,.14); }
.hero h1 { color: #fff; }
.hero .lead { color: #c7d2dc; }
.hero .text-grad { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-trust { color: #c7d2dc; }
.hero-trust .dot { background: var(--accent); box-shadow: 0 0 12px rgba(92,225,230,.7); }
.hero .btn-primary { background: var(--accent); color: #06232a; box-shadow: 0 12px 30px rgba(92,225,230,.30); }
.hero .btn-primary:hover { background: #fff; color: var(--ink); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero visual card */
.hero-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: var(--grad-cool);
  z-index: -1;
  opacity: .9;
}
.hero-card .row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.hero-card .ic.v { background: rgba(92,225,230,.16); }
.hero-card .ic.c { background: rgba(15,20,25,.06); }
.hero-card .ic.a { background: rgba(92,225,230,.16); }
.hero-card .ic.t { background: rgba(15,20,25,.06); }
.hero-card strong { display: block; font-size: 1rem; }
.hero-card small { color: var(--ink-soft); }
.hero-card .bar { height: 7px; border-radius: 999px; background: var(--cloud); margin-top: 7px; overflow: hidden; }
.hero-card .bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad-hot); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.stat .num { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.stat .num.v { color: var(--ink); }
.stat .num.c { color: var(--accent-deep); }
.stat .num.a { color: var(--ink); }
.stat .num.t { color: var(--accent-deep); }
.stat .lbl { color: var(--ink-soft); font-weight: 600; margin-top: 8px; }

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  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: transparent; }
.card .badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.badge.v { background: rgba(92,225,230,.12); }
.badge.c { background: rgba(255,93,93,.12); }
.badge.a { background: rgba(255,176,32,.16); }
.badge.t { background: rgba(18,194,179,.14); }
.badge.s { background: rgba(47,139,255,.12); }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card .top-line { height: 4px; width: 46px; border-radius: 999px; margin-bottom: 22px; }

/* ---------- Service detail rows ---------- */
.svc {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.svc .badge { margin-bottom: 0; width: 64px; height: 64px; font-size: 1.8rem; }
.svc h3 { margin-bottom: .35em; }
.svc p { color: var(--ink-soft); margin-bottom: 14px; }
.svc ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.svc li { margin-bottom: 6px; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { position: relative; padding: 30px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-hot);
  color: #fff; font-weight: 900; font-size: 1.2rem;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: .4em; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Pillars / value ---------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.pillar .badge { background: rgba(255,255,255,.12); }
.pillar h3 { margin-bottom: .4em; }
.pillar p { color: #c4d0e0; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 64px 56px;
  background: var(--grad-hot);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.15rem; max-width: 56ch; margin: 0 auto 28px; }
.cta-band .btn-light { box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* ---------- Testimonial ---------- */
.quote {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.quote blockquote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin: 0 0 24px;
}
.quote .who { color: var(--ink-soft); font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.tier {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier.featured {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.tier.featured:hover { transform: scale(1.03) translateY(-6px); }
.tier .tier-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-hot); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.tier h3 { font-size: 1.5rem; margin-bottom: 4px; }
.tier .tier-sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 22px; }
.tier .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.tier .price .amt { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; }
.tier .price .per { color: var(--ink-soft); font-weight: 600; }
.tier .setup { font-size: .9rem; color: var(--ink-soft); margin-bottom: 22px; }
.tier .setup b { color: var(--ink); }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; }
.tier li { padding: 9px 0 9px 28px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--cloud); }
.tier li:last-child { border-bottom: 0; }
.tier li::before {
  content: "✓"; position: absolute; left: 0; top: 9px;
  color: var(--teal); font-weight: 900;
}
.tier li b { color: var(--ink); }
.tier .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; color: var(--ink-soft); margin-top: 28px; font-size: .92rem; }

/* ---------- Timeline ---------- */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px;
  width: 3px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 30px 74px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot {
  position: absolute; left: 12px; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-hot); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: .95rem;
  box-shadow: 0 0 0 5px #fff;
}
.tl-item .tl-meta { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--violet); margin-bottom: 4px; }
.tl-item h3 { margin-bottom: .25em; }
.tl-item p { color: var(--ink-soft); margin: 0; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse > div:first-child { order: 2; }
.feature-list { list-style: none; margin: 18px 0 0; padding: 0; }
.feature-list li { padding: 12px 0 12px 36px; position: relative; border-top: 1px solid var(--line); }
.feature-list li:first-child { border-top: 0; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 18px; height: 18px; border-radius: 6px; background: var(--grad-cool);
}
.feature-list strong { display: block; }
.feature-list small { color: var(--ink-soft); }

/* ---------- Pill list (who it's for) ---------- */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { padding: 12px 0 12px 36px; position: relative; color: var(--ink-soft); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; font-size: 1.2rem; }
.checklist.no li::before { content: "✕"; color: var(--coral); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(92,225,230,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--ink-soft); }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(18,194,179,.12);
  color: #0a7d72;
  font-weight: 600;
  border: 1px solid rgba(18,194,179,.3);
}
.form-msg.show { display: block; }

.contact-cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.contact-card .ic { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(92,225,230,.1); flex: none; }
.contact-card strong { display: block; }
.contact-card a { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--violet); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--ink-soft); padding-bottom: 18px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c4d0e0; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c4d0e0; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: #9fb0c4; }
.footer-about { max-width: 34ch; color: #9fb0c4; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  font-size: .88rem;
  color: #9fb0c4;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps, .pillars { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .steps, .pillars, .contact-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 28px; }
}

@media (max-width: 460px) {
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
