/* =========================================================
   مختبراتي - My Labs | Design System
   RTL Arabic medical-lab marketing site
   ========================================================= */

:root {
  /* Brand palette */
  --green-50:  #eef8ee;
  --green-100: #d9f0da;
  --green-200: #b3e2b6;
  --green-300: #86d08c;
  --green-400: #52b95d;
  --green-500: #2fa84f;   /* primary */
  --green-600: #1f9540;
  --green-700: #16773a;   /* deep heading green */
  --green-800: #0f5b2d;
  --green-900: #0b4423;

  --ink-900: #0d1512;
  --ink-800: #16201b;
  --ink-700: #253028;
  --ink-500: #55635b;
  --ink-400: #7c8880;
  --ink-300: #a7b1aa;

  --paper: #ffffff;
  --mist:  #f5faf5;
  --mist-2:#eef5ef;
  --line:  #e4ece5;

  --shadow-sm: 0 1px 2px rgba(13, 21, 18, .06), 0 1px 3px rgba(13, 21, 18, .05);
  --shadow-md: 0 8px 24px rgba(15, 91, 45, .08), 0 2px 6px rgba(13, 21, 18, .05);
  --shadow-lg: 0 24px 60px rgba(15, 91, 45, .14), 0 8px 20px rgba(13, 21, 18, .06);
  --shadow-green: 0 14px 34px rgba(47, 168, 79, .28);

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1200px;
  --nav-h: 84px;

  --font: "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-display: "Tajawal", "IBM Plex Sans Arabic", sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.75;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}

::selection { background: var(--green-200); color: var(--green-900); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: clamp(56px, 8vw, 118px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }
.section--mist { background: var(--mist); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px var(--green-100);
}

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(28px, 4.6vw, 46px);
  color: var(--ink-900);
}
.section-title .hl { color: var(--green-600); }
.section-sub {
  margin-top: 16px;
  color: var(--ink-500);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(47,168,79,.36); }
.btn--dark { background: var(--ink-900); color: #fff; box-shadow: var(--shadow-md); }
.btn--dark:hover { transform: translateY(-3px); background: var(--ink-800); }
.btn--ghost {
  background: #fff;
  color: var(--ink-900);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--green-400); color: var(--green-700); transform: translateY(-3px); }
.btn--lg { padding: 17px 34px; font-size: 17px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 21px; color: var(--ink-900); }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  box-shadow: var(--shadow-green);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name { color: var(--green-700); }
.brand__name span { color: var(--ink-900); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-700);
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--green-700); background: var(--green-50); }
.nav__link.is-active { color: var(--green-700); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-500);
}
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__menu { display: none; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__burger span::before { transform: translate(-50%, -8px); }
.nav__burger span::after  { transform: translate(-50%,  8px); }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav__burger.is-open span::after  { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 96px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 0%, var(--green-50) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, var(--green-50) 0%, transparent 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
}
.hero__title {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.15;
}
.hero__title .hl { color: var(--green-600); }
.hero__brandline {
  font-size: clamp(30px, 5vw, 54px);
  color: var(--green-700);
  font-weight: 800;
  margin-bottom: 8px;
}
.hero__brandline span { color: var(--ink-900); }
.hero__text {
  margin-top: 20px;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-500);
  font-weight: 500;
  max-width: 560px;
}
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat__num { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--green-700); }
.stat__label { font-size: 14px; color: var(--ink-500); font-weight: 600; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: -22px -22px auto auto;
  width: 62%; height: 62%;
  background: radial-gradient(circle, var(--green-100), transparent 70%);
  z-index: 0;
  border-radius: 50%;
}
.hero__badge {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--line);
}
.hero__badge .ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--green-50);
  color: var(--green-600);
}
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge--a { bottom: 26px; inset-inline-start: -18px; animation: floaty 5s ease-in-out infinite; }
.hero__badge--b { top: 30px;    inset-inline-end: -14px; animation: floaty 6s ease-in-out infinite .8s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ---------- Steps / How it works ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-200); }
.step-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.step-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.step-card:hover .step-card__media img { transform: scale(1.05); }
.step-card__num {
  position: absolute;
  inset-block-start: 14px;
  inset-inline-start: 14px;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--green-700);
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.step-card__body { padding: 24px 24px 28px; }
.step-card__title { font-size: 21px; margin-bottom: 8px; }
.step-card__text { color: var(--ink-500); font-size: 16px; font-weight: 500; }

/* ---------- Feature split (why choose) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__media--frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--green-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.feature-list { display: grid; gap: 22px; margin-block: 30px; }
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature__ico {
  flex: none;
  width: 54px; height: 54px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
  transition: background .3s, color .3s, transform .3s;
}
.feature__ico svg { width: 27px; height: 27px; }
.feature:hover .feature__ico { background: var(--green-500); color: #fff; transform: translateY(-3px); }
.feature__title { font-size: 20px; margin-bottom: 4px; }
.feature__text { color: var(--ink-500); font-size: 16px; font-weight: 500; }
.split__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Quality cards (2 up) ---------- */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.q-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.q-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.q-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.q-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.q-card:hover .q-card__media img { transform: scale(1.05); }
.q-card__body { padding: 26px 26px 30px; }
.q-card__title { font-size: 22px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.q-card__title svg { width: 24px; height: 24px; color: var(--green-600); }
.q-card__text { color: var(--ink-500); font-weight: 500; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tst__stars { color: #f5a623; letter-spacing: 2px; font-size: 18px; }
.tst__quote { color: var(--ink-700); font-weight: 500; font-size: 17px; flex: 1; }
.tst__who { display: flex; align-items: center; gap: 14px; }
.tst__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.tst__name { font-weight: 700; color: var(--ink-900); }
.tst__role { font-size: 14px; color: var(--ink-400); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-xl);
  padding: clamp(38px, 6vw, 68px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 80% at 0% 100%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(40% 80% at 100% 0%, rgba(255,255,255,.10), transparent 60%);
}
.cta-band__text { position: relative; }
.cta-band__title { color: #fff; font-size: clamp(24px, 3.4vw, 38px); }
.cta-band__sub { color: rgba(255,255,255,.85); margin-top: 10px; font-weight: 500; }
.cta-band__actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); color:#fff; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.2); color:#fff; }
.cta-band .btn--light { background:#fff; color: var(--green-800); }
.cta-band .btn--light:hover { transform: translateY(-3px); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(50px, 7vw, 90px); position: relative; overflow: hidden; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 90% -10%, var(--green-50), transparent 60%);
}
.page-hero__title { font-size: clamp(38px, 7vw, 72px); }
.page-hero__title .hl { color: var(--green-600); }
.page-hero__sub { margin-top: 14px; color: var(--ink-400); font-size: clamp(17px, 2.2vw, 22px); font-weight: 600; }

/* ---------- About prose ---------- */
.prose p { color: var(--ink-700); font-weight: 500; margin-bottom: 20px; font-size: 18px; }
.prose p strong { color: var(--green-700); font-weight: 800; }

/* ---------- Icon feature grid (services) ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 46px; }
.icon-feature { display: flex; gap: 18px; }
.icon-feature__ico {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--green-50);
  color: var(--green-600);
  border: 1px solid var(--green-100);
}
.icon-feature__ico svg { width: 28px; height: 28px; }
.icon-feature__title { font-size: 20px; margin-bottom: 6px; }
.icon-feature__text { color: var(--ink-500); font-weight: 500; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; max-width: 560px; }
.contact-line a { color: inherit; }
.contact-info__title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.contact-info__text { color: var(--ink-500); font-weight: 500; margin-bottom: 28px; }
.contact-line { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; font-weight: 600; }
.contact-line .ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--green-50); color: var(--green-600);
  display: grid; place-items: center; flex: none;
}
.contact-line .ico svg { width: 22px; height: 22px; }
.contact-line small { display: block; color: var(--ink-400); font-weight: 500; font-size: 13px; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 15px; color: var(--ink-800); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink-900);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--mist);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-300); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-400);
  background: #fff;
  box-shadow: 0 0 0 4px var(--green-100);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note { display: none; margin-top: 8px; color: var(--green-700); font-weight: 700; }
.form-note.is-visible { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: #cfd8d2; padding-block: clamp(46px, 6vw, 72px); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 18px; }
.footer__brand .brand__mark { box-shadow: none; }
.footer__about { color: #9fb0a6; font-weight: 500; max-width: 320px; margin-bottom: 22px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: #cfd8d2;
  transition: background .25s, color .25s, transform .25s;
}
.footer__social a:hover { background: var(--green-600); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer__col a { display: block; color: #9fb0a6; padding: 6px 0; font-weight: 500; transition: color .2s; }
.footer__col a:hover { color: var(--green-300); }
.footer__bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #7f8f86;
  font-size: 14px;
}

/* ---------- Store badges ---------- */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink-900); color: #fff;
  padding: 10px 18px; border-radius: 14px;
  transition: transform .25s var(--ease);
}
.store:hover { transform: translateY(-3px); }
.store svg { width: 24px; height: 24px; }
.store small { display: block; font-size: 11px; opacity: .8; font-weight: 500; line-height: 1; }
.store b { font-size: 15px; font-weight: 700; line-height: 1.3; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .cards-3 { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .cards-2 { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .icon-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .nav {
    /* mobile menu panel */
  }
  .nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 18px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__menu .nav__link { padding: 14px 12px; font-size: 18px; }
  .nav__menu .nav__link.is-active::after { display: none; }
  .nav__menu .btn { display: inline-flex; margin-top: 12px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__stats { gap: 20px 30px; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: start; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
