/* ============================================================
   SATH (सहायता) — Company Website
   Stylesheet: shared across all pages
   Stack: HTML5 + CSS3 + Vanilla JS (no frameworks)
   ============================================================ */

/* -------------------- Design Tokens -------------------- */
:root {
  /* Brand palette (dark is the default theme) */
  --primary:   #0EA5E9;
  --secondary: #38BDF8;
  --accent:    #06B6D4;
  --saffron:   #F59E0B;   /* warm signature accent tied to the सहायता wordmark */

  /* Dark surfaces */
  --bg:     #0F172A;
  --bg-2:   #0B1120;
  --card:   #1E293B;
  --card-2: #243044;
  --text:   #F8FAFC;
  --muted:  #94A3B8;
  --border: rgba(148, 163, 184, .14);
  --glass:  rgba(15, 23, 42, .55);
  --shadow: 0 24px 60px -20px rgba(2, 8, 23, .75);
  --ring:   rgba(14, 165, 233, .45);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;
  --font-deva:    "Tiro Devanagari Hindi", "Noto Sans Devanagari", serif;

  /* Layout */
  --container: 1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --gap:       clamp(1rem, 2.5vw, 2rem);

  --grad: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Light theme overrides */
[data-theme="light"] {
  --bg:     #EEF3F9;
  --bg-2:   #FFFFFF;
  --card:   #FFFFFF;
  --card-2: #F4F8FD;
  --text:   #0B1120;
  --muted:  #4B5A70;
  --border: rgba(15, 23, 42, .10);
  --glass:  rgba(255, 255, 255, .68);
  --shadow: 0 24px 50px -24px rgba(15, 23, 42, .28);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 6px; }

::selection { background: var(--primary); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }

/* Devanagari wherever the .deva class appears */
.deva { font-family: var(--font-deva); font-weight: 400; }

/* -------------------- Layout helpers -------------------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-head p { color: var(--muted); margin-top: .9rem; font-size: 1.05rem; }

.grad-text {
  background: linear-gradient(120deg, var(--secondary), var(--accent), var(--saffron));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #04121f; box-shadow: 0 14px 30px -12px var(--ring); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px var(--ring); }
.btn--ghost { border: 1px solid var(--border); background: var(--card); color: var(--text); }
.btn--ghost:hover { border-color: var(--secondary); transform: translateY(-3px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* -------------------- Navbar -------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: var(--glass);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 10px 30px -20px rgba(0,0,0,.6); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: .65rem; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__en { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .04em; }
.brand__hi { font-family: var(--font-deva); font-size: 1rem; color: var(--secondary); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  position: relative; padding: .55rem .9rem; border-radius: 10px;
  font-weight: 500; font-size: .96rem; color: var(--muted);
  transition: color .25s ease, background .25s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--text); }
.nav__links a.active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: 2px; height: 2px;
  background: var(--grad); border-radius: 2px;
}

.nav__actions { display: flex; align-items: center; gap: .6rem; }

/* Theme toggle */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border);
  display: grid; place-items: center; background: var(--card);
  transition: border-color .25s ease, transform .25s ease;
}
.theme-toggle:hover { border-color: var(--secondary); transform: rotate(-12deg); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* Hamburger */
.hamburger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); place-items: center; }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: transform .3s ease, opacity .3s ease; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s ease; }
.hamburger span::before { top: -6px; }
.hamburger span::after  { top:  6px; }
.nav.open .hamburger span { background: transparent; }
.nav.open .hamburger span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .hamburger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(4rem, 10vw, 8rem); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow::before, .hero__glow::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero__glow::before { width: 460px; height: 460px; background: radial-gradient(circle, var(--primary), transparent 65%); top: -140px; right: -90px; }
.hero__glow::after  { width: 420px; height: 420px; background: radial-gradient(circle, var(--accent), transparent 65%); bottom: -160px; left: -110px; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card);
  font-size: .82rem; font-weight: 500; color: var(--muted); margin-bottom: 1.6rem;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 4px rgba(245,158,11,.18); }

.hero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); font-weight: 700; }
.hero__sub { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); margin-top: 1.4rem; max-width: 640px; }
.hero__hi { font-family: var(--font-deva); color: var(--secondary); margin-top: 1.1rem; font-size: clamp(1rem, 2vw, 1.25rem); max-width: 700px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-top: clamp(3rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.stat { padding: 1.4rem 1.2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--card); }
.stat__num { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { color: var(--muted); font-size: .9rem; margin-top: .3rem; }

/* -------------------- Generic card grid -------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; overflow: hidden;
  padding: 1.8rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card:hover::after { opacity: 1; }

.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.12)); border: 1px solid var(--border); margin-bottom: 1.1rem; }
.card__icon svg { width: 26px; height: 26px; stroke: var(--secondary); }
.card h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card__list { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .45rem; }
.card__list li { font-size: .82rem; color: var(--text); background: var(--card-2); border: 1px solid var(--border); padding: .3rem .7rem; border-radius: 999px; }

/* Why-us tile uses a number index */
.tile { padding: 1.6rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); transition: transform .3s ease, border-color .3s ease; }
.tile:hover { transform: translateY(-5px); border-color: var(--secondary); }
.tile__no { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--saffron); letter-spacing: .1em; }
.tile h3 { font-size: 1.12rem; margin: .5rem 0 .4rem; }
.tile p { color: var(--muted); font-size: .92rem; }

/* -------------------- Founder section -------------------- */
.founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.founder__media { position: relative; }
.founder__photo { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.founder__media::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 120px; height: 120px; border-radius: 20px; background: var(--grad); filter: blur(50px); opacity: .5; z-index: -1; }
.founder__chip { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); background: var(--glass); border: 1px solid var(--border); border-radius: 14px; padding: .85rem 1rem; }
.founder__chip strong { display: block; font-family: var(--font-display); }
.founder__chip span { color: var(--secondary); font-size: .85rem; }
.founder blockquote { font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-family: var(--font-display); font-weight: 500; line-height: 1.4; margin: 1.4rem 0; }
.founder__sig { font-family: var(--font-deva); color: var(--secondary); font-size: 1.15rem; }

/* -------------------- CTA -------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: calc(var(--radius) + 8px); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; background: linear-gradient(135deg, #0c2236, #0a1a2c); border: 1px solid var(--border); }
[data-theme="light"] .cta-band { background: linear-gradient(135deg, #e2effb, #f4f8fd); }
.cta-band::before { content: ""; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,.35), transparent 60%); top: -200px; left: 50%; transform: translateX(-50%); filter: blur(40px); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: var(--muted); margin: 1rem auto 2rem; max-width: 520px; }

/* -------------------- Process timeline (services page) -------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.step { padding: 1.5rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); position: relative; }
.step__no { font-family: var(--font-display); font-weight: 700; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.1rem; margin: .4rem 0; }
.step p { color: var(--muted); font-size: .9rem; }

/* Detailed service block */
.service-detail { padding: clamp(1.6rem, 3vw, 2.6rem); border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.service-detail__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.service-detail h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.service-detail .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 1.2rem; }
.service-detail h4 { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); margin-bottom: .7rem; }
.service-detail ul.checks li { position: relative; padding-left: 1.6rem; margin-bottom: .55rem; color: var(--muted); }
.service-detail ul.checks li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }

/* -------------------- About: values + mission -------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: stretch; }
.panel { padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); }
.panel h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.panel p { color: var(--muted); }
.panel .deva { display: block; margin-top: .8rem; color: var(--secondary); font-size: 1.1rem; line-height: 1.7; }

/* -------------------- Contact -------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--gap); align-items: start; }
.form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 500; margin-bottom: .45rem; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: .96rem; transition: border-color .2s ease, box-shadow .2s ease;
}
[data-theme="light"] .field input, [data-theme="light"] .field select, [data-theme="light"] .field textarea { background: var(--card-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.field textarea { resize: vertical; min-height: 120px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field .err { display: none; color: #fb7185; font-size: .8rem; margin-top: .35rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #fb7185; }
.field.invalid .err { display: block; }
.form__note { font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.form__success { display: none; padding: 1rem 1.2rem; border-radius: var(--radius-sm); background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.4); color: #34d399; font-size: .95rem; margin-bottom: 1.2rem; }
.form__success.show { display: block; }

.contact-aside .contact-card { padding: 1.4rem 1.5rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--border); margin-bottom: 1rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color .25s ease, transform .25s ease; }
.contact-aside .contact-card:hover { border-color: var(--secondary); transform: translateY(-3px); }
.contact-aside .contact-card .ci { width: 44px; height: 44px; border-radius: 12px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, rgba(14,165,233,.18), rgba(6,182,212,.12)); }
.contact-aside .contact-card svg { width: 22px; height: 22px; stroke: var(--secondary); }
.contact-aside .contact-card .label { display: block; font-size: .78rem; color: var(--muted); }
.contact-aside .contact-card .value { display: block; font-weight: 600; font-family: var(--font-display); }
.btn--wa { background: #25D366; color: #04210f; }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(37,211,102,.5); }

.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); display: grid; place-items: center; transition: transform .25s ease, border-color .25s ease; }
.socials a:hover { transform: translateY(-3px); border-color: var(--secondary); }
.socials svg { width: 20px; height: 20px; stroke: var(--secondary); }

/* Page hero (sub-pages) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 5.5rem); text-align: center; }
.page-hero::before { content: ""; position: absolute; width: 600px; height: 380px; background: radial-gradient(circle, rgba(14,165,233,.28), transparent 60%); top: -120px; left: 50%; transform: translateX(-50%); filter: blur(40px); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.page-hero p { color: var(--muted); max-width: 600px; margin: 1rem auto 0; }

/* -------------------- Footer -------------------- */
.footer { border-top: 1px solid var(--border); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gap); }
.footer__brand p { color: var(--muted); margin-top: 1rem; max-width: 320px; font-size: .95rem; }
.footer h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer ul li { margin-bottom: .6rem; }
.footer ul li a { color: var(--muted); font-size: .95rem; transition: color .2s ease; }
.footer ul li a:hover { color: var(--text); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); margin-top: 2.5rem; padding-top: 1.5rem; color: var(--muted); font-size: .88rem; }

/* -------------------- Loader -------------------- */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: grid; place-items: center; transition: opacity .5s ease, visibility .5s ease; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__mark { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.loader__ring { width: 54px; height: 54px; border-radius: 50%; border: 3px solid var(--border); border-top-color: var(--primary); animation: spin .8s linear infinite; }
.loader__word { font-family: var(--font-deva); color: var(--secondary); letter-spacing: .05em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------- Back to top -------------------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #04121f; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .3s ease, transform .3s ease; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top svg { width: 22px; height: 22px; }

/* -------------------- Scroll reveal -------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* -------------------- Responsive -------------------- */
@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; }
  .founder__media { max-width: 420px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hamburger { display: grid; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: .6rem 1.2rem 1.4rem;
    transform: translateY(-130%); transition: transform .35s cubic-bezier(.16,1,.3,1);
    box-shadow: var(--shadow);
  }
  .nav.open .nav__links { transform: translateY(0); }
  .nav__links a { padding: .9rem .6rem; font-size: 1.05rem; }
  .nav__links a.active::after { display: none; }
  .nav__links .btn { margin-top: .6rem; }
  .grid--3, .grid--2, .split, .service-detail .cols, .steps { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

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