/* Ayrshire Vehicle Recovery
   Mobile-first. No framework, no webfonts, no external requests. */

:root {
  --navy: #0b1d2a;
  --navy-2: #14344a;
  --amber: #ffb400;
  --amber-dk: #d99700;
  --ink: #14202a;
  --muted: #5a6b78;
  --line: #dfe5ea;
  --bg: #ffffff;
  --bg-alt: #f4f7f9;
  --radius: 10px;
  --wrap: 1080px;
  --sticky-h: 62px;
  --gutter: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  /* Clears the fixed mobile call bar. */
  padding-bottom: var(--sticky-h);
}

img { max-width: 100%; height: auto; }
a { color: var(--navy-2); }

.wrap {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding-left: var(--gutter); padding-right: var(--gutter);
}

.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 8px; top: 8px; z-index: 100;
  background: #fff; padding: 10px 14px; border-radius: 6px;
}

/* Scroll marker the header observer watches. It must have real height — a
   zero-height sentinel can never be "intersecting", so the header would
   condense on load and never restore. Absolutely positioned so it occupies no
   space in the flow and shifts nothing. */
#header-sentinel {
  position: absolute; top: 0; left: 0;
  width: 1px; height: 60px;
  pointer-events: none; visibility: hidden;
}

/* ── Header ─────────────────────────────────────────────────────────── */
/* position:sticky, not fixed: the header keeps its place in the document
   flow, so pinning it costs no layout shift and needs no spacer element.
   The condensed state only changes padding and type size — never the
   document height — so scrolling can't reflow the page under the reader. */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy); color: #fff;
  transition: box-shadow .18s ease;
}
.site-header.is-stuck { box-shadow: 0 2px 14px rgba(0,0,0,.35); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding-top: 12px; padding-bottom: 12px;
  transition: padding .18s ease;
}
.site-header.is-condensed .header-inner { padding-top: 6px; padding-bottom: 6px; }

.brand { display: block; text-decoration: none; color: #fff; }
.brand-name {
  display: block; font-weight: 700; font-size: 1.05rem; line-height: 1.2;
  transition: font-size .18s ease;
}
.brand-strap {
  display: block; font-size: .76rem; color: var(--amber); letter-spacing: .02em;
  /* Collapsed by max-height rather than display:none so it animates and the
     header height changes smoothly instead of snapping. */
  max-height: 1.4em; overflow: hidden;
  transition: max-height .18s ease, opacity .18s ease;
}
.site-header.is-condensed .brand-name { font-size: .95rem; }
.site-header.is-condensed .brand-strap { max-height: 0; opacity: 0; }

.call-btn {
  display: flex; flex-direction: column; align-items: center;
  background: var(--amber); color: #12202b; text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius); font-weight: 700;
  line-height: 1.15; white-space: nowrap;
  transition: padding .18s ease;
}
.call-btn:hover { background: var(--amber-dk); }
.call-btn-label {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
  max-height: 1.4em; overflow: hidden;
  transition: max-height .18s ease, opacity .18s ease;
}
.call-btn-num { font-size: 1rem; }
.site-header.is-condensed .call-btn { padding: 6px 14px; }
.site-header.is-condensed .call-btn-label { max-height: 0; opacity: 0; }

.site-nav { background: var(--navy-2); }
.site-nav .wrap { display: flex; gap: 4px; overflow-x: auto; }
.site-nav a {
  color: #dbe6ee; text-decoration: none; padding: 11px 12px;
  font-size: .92rem; white-space: nowrap;
  transition: padding .18s ease;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-header.is-condensed .site-nav a { padding-top: 8px; padding-bottom: 8px; }

/* Anchored links (#content, #cta) must not land underneath the sticky bar. */
html { scroll-padding-top: 120px; }

@media (prefers-reduced-motion: reduce) {
  .site-header, .header-inner, .brand-name, .brand-strap,
  .call-btn, .call-btn-label, .site-nav a { transition: none; }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 34px 0 38px;
}
.hero h1 { margin: 0 0 12px; font-size: 1.85rem; line-height: 1.2; }
.hero-lede { margin: 0 0 22px; font-size: 1.05rem; color: #cfdce5; max-width: 62ch; }

/* Hero background image.
   Hidden on mobile: it is decorative, and the target user is on a phone at the
   roadside, possibly on one bar of signal. Nothing goes between them and the
   call button.
   The scrim is not optional — the headline and tick list are white, and over a
   bright sky they would be unreadable without it. */
.hero-bg { display: none; }

.hero.has-image { position: relative; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; }

.hero-actions {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 560px; margin-bottom: 22px;
}

/* The two hero buttons are one component with two colour variants. Both size
   from the same rules, so they cannot drift apart. */
.hero-call,
.hero-request {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 3px; min-height: 78px; padding: 14px 24px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 800; text-align: center; text-decoration: none;
}
.hero-call span,
.hero-request span {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  font-weight: 700; opacity: .85;
}
.hero-call strong,
.hero-request strong { font-size: 1.35rem; letter-spacing: .01em; }

.hero-call { background: var(--amber); color: #12202b; }
.hero-call:hover { background: var(--amber-dk); }

.hero-request { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }
.hero-request:hover { background: rgba(255,255,255,.2); }

.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.hero-points li { padding-left: 26px; position: relative; color: #cfdce5; font-size: .95rem; }
.hero-points li::before {
  content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 700;
}

/* ── Sections ───────────────────────────────────────────────────────── */
/* Vertical padding only. These classes sit on the same element as .wrap, and
   a `padding: 34px 0` shorthand would silently zero out its gutters — which is
   exactly how the cards ended up flush against the screen edge. */
.section { padding-top: 34px; padding-bottom: 34px; }
.page { padding-top: 24px; padding-bottom: 40px; }
h1 { font-size: 1.8rem; line-height: 1.2; margin: 0 0 12px; }
h2 { font-size: 1.3rem; margin: 30px 0 12px; }
h3 { font-size: 1.05rem; margin: 0 0 6px; }
.lede { font-size: 1.08rem; color: var(--muted); max-width: 65ch; margin: 0 0 20px; }
.section-lede { color: var(--muted); max-width: 65ch; }

.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }

.prose { max-width: 68ch; }
.prose p { margin: 0 0 15px; }

.more-link { font-weight: 600; text-decoration: none; }
.more-link:hover { text-decoration: underline; }

/* ── Call-to-action links ───────────────────────────────────────────── */
.inline-call {
  display: inline-block; background: var(--navy); color: #fff;
  text-decoration: none; font-weight: 700; padding: 13px 22px;
  border-radius: var(--radius); margin: 4px 0 24px;
}
.inline-call:hover { background: var(--navy-2); }

.big-call {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--amber); color: #12202b; text-decoration: none;
  padding: 22px; border-radius: var(--radius); font-weight: 800;
  text-align: center; margin: 0 0 26px;
}
.big-call:hover { background: var(--amber-dk); }
.big-call span { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.big-call strong { font-size: 1.9rem; }
.big-call-note { font-weight: 600; opacity: .8; text-transform: none !important; letter-spacing: 0 !important; }

.cta-band {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; margin: 30px 0;
  text-align: center;
}
.cta-band h2 { margin-top: 0; }

/* ── Info required / trust ──────────────────────────────────────────── */
.need-list { padding-left: 20px; max-width: 68ch; }
.need-list li { margin-bottom: 9px; color: var(--muted); }
.need-list strong { color: var(--ink); }

.trust {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.trust h2 { margin-top: 0; }
.trust ul { padding-left: 20px; max-width: 68ch; }
.trust li { margin-bottom: 9px; color: var(--muted); }

/* ── How it works ───────────────────────────────────────────────────── */
.how { display: grid; gap: 16px; grid-template-columns: 1fr; }
.how-step {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; background: var(--bg-alt); position: relative;
}
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800; font-size: .9rem;
  margin-bottom: 8px;
}
.how-step h3 { color: var(--navy); margin-bottom: 4px; }
.how-step p { margin: 0; color: var(--muted); font-size: .93rem; }

/* ── Cards ──────────────────────────────────────────────────────────── */
.cards { display: grid; gap: 12px; grid-template-columns: 1fr; }
.card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; background: #fff;
}
.card:hover { border-color: var(--navy-2); box-shadow: 0 2px 10px rgba(11,29,42,.07); }
.card h3 { color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: .93rem; }

.area-cards { display: grid; gap: 12px; grid-template-columns: 1fr; }
.area-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; background: #fff;
}
.area-card:hover { border-color: var(--navy-2); }
.area-card h3 { color: var(--navy); margin-bottom: 2px; }
.area-council { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.area-card p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }

/* ── Roads ──────────────────────────────────────────────────────────── */
.road-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.road-chip {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 11px 15px; background: var(--bg-alt); min-width: 150px;
}
.road-chip:hover { border-color: var(--navy-2); background: #fff; }
.road-chip strong { color: var(--navy); font-size: 1.05rem; }
.road-chip span { font-size: .8rem; color: var(--muted); }

.road-list { color: var(--muted); }

.safety {
  border-left: 4px solid var(--amber); background: var(--bg-alt);
  padding: 16px 18px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 22px 0 26px;
}
.safety h2 { margin-top: 0; font-size: 1.1rem; }
.safety ol { margin: 0 0 16px; padding-left: 20px; }
.safety li { margin-bottom: 6px; }

/* ── Town grid ──────────────────────────────────────────────────────── */
.town-grid {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  margin-bottom: 16px;
}
.town-grid a {
  display: block; text-align: center; text-decoration: none;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 6px; font-size: .92rem; font-weight: 600;
  color: var(--navy); background: #fff;
}
.town-grid a:hover { background: var(--bg-alt); border-color: var(--navy-2); }

/* ── Articles ───────────────────────────────────────────────────────── */
.article-list { display: grid; gap: 22px; }
.article-item { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.article-item h2 { margin: 0 0 4px; }
.article-item h2 a { text-decoration: none; color: var(--navy); }
.article-date { font-size: .82rem; color: var(--muted); margin: 0 0 8px; }

/* ── Form ───────────────────────────────────────────────────────────── */
.callback {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; margin: 34px 0;
}
.callback h2 { margin-top: 0; }
.callback-lede { color: var(--muted); margin: 0 0 18px; }

.enquiry-form { display: grid; gap: 14px; max-width: 520px; }
.field { display: grid; gap: 5px; }
.field label { font-weight: 600; font-size: .9rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%; padding: 12px; font: inherit; font-size: 16px; /* 16px stops iOS zooming on focus */
  border: 1px solid #c3ccd4; border-radius: 8px; background: #fff;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--navy-2); outline-offset: 1px; border-color: var(--navy-2);
}
.field-error { color: #b3261e; font-size: .85rem; margin: 0; }
.form-error {
  background: #fdecea; border: 1px solid #f5c2bd; color: #8c1d18;
  padding: 10px 12px; border-radius: 8px; font-size: .9rem;
}

/* Off-screen, not display:none — bots skip display:none fields. */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.submit-btn {
  background: var(--navy); color: #fff; border: 0; border-radius: var(--radius);
  padding: 15px 20px; font: inherit; font-weight: 700; font-size: 1rem;
  cursor: pointer;
}
.submit-btn:hover { background: var(--navy-2); }

.thanks { text-align: center; max-width: 520px; margin: 30px auto; }
.thanks .lede { margin-left: auto; margin-right: auto; }

.contact-facts { max-width: 65ch; }
.contact-facts ul { padding-left: 20px; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: #b9cad7; margin-top: 40px;
  padding: 32px 0 26px; font-size: .9rem;
}
.foot-cols { display: grid; gap: 26px; grid-template-columns: 1fr; }
.site-footer h2 { color: #fff; font-size: .95rem; margin: 0 0 10px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 5px; }
.site-footer a { color: #b9cad7; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.foot-areas { columns: 2; }
.foot-phone a { color: var(--amber); font-weight: 700; font-size: 1.15rem; }
.copy {
  margin: 26px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: #8ba2b3;
}

/* ── CTA block ──────────────────────────────────────────────────────── */
.cta {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; margin: 34px 0;
}
.cta h2 { margin-top: 0; }
.cta-lede { color: var(--muted); margin: 0 0 18px; }
.cta-actions { display: grid; gap: 12px; }

/* Same pairing as the hero: one size, two colour variants. */
.cta-call,
.cta-request {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 3px; min-height: 78px; padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none; text-align: center; font-weight: 800;
}
.cta-call span,
.cta-request span {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  font-weight: 700; opacity: .85;
}
.cta-call strong,
.cta-request strong { font-size: 1.35rem; letter-spacing: .01em; }

.cta-call { background: var(--amber); color: #12202b; }
.cta-call:hover { background: var(--amber-dk); }

.cta-request { background: var(--navy); color: #fff; }
.cta-request:hover { background: var(--navy-2); }

/* ── Staged request form ────────────────────────────────────────────── */
.request-page { max-width: 640px; }
.req-head { margin-bottom: 18px; }
.req-urgent {
  background: var(--bg-alt); border-left: 4px solid var(--amber);
  padding: 10px 14px; margin: 0; font-size: .95rem;
}

.progress { margin-bottom: 24px; }
.progress-bar {
  height: 5px; background: var(--line); border-radius: 3px; overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar span {
  display: block; height: 100%; background: var(--amber);
  transition: width .25s ease;
}
.progress-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.progress-steps li {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .7rem; color: var(--muted); text-align: center;
}
.ps-num {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--line); color: var(--muted);
  font-weight: 700; font-size: .75rem;
}
.progress-steps .is-current .ps-num { background: var(--navy); color: #fff; }
.progress-steps .is-current { color: var(--navy); font-weight: 700; }
.progress-steps .is-done .ps-num { background: var(--amber); color: #12202b; }

.staged-form { display: block; }
.staged-form h2 { margin-top: 0; }
.staged-form .field { margin-bottom: 16px; }
.staged-form select,
.staged-form input[type="text"],
.staged-form input[type="tel"],
.staged-form input[type="email"],
.staged-form input[type="number"],
.staged-form input[type="file"],
.staged-form textarea {
  width: 100%; padding: 12px; font: inherit; font-size: 16px;
  border: 1px solid #c3ccd4; border-radius: 8px; background: #fff;
}
.staged-form ul { list-style: none; margin: 4px 0 0; padding: 0; }
.staged-form ul li { margin-bottom: 4px; }
.staged-form ul label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 400; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: 8px; background: #fff;
  cursor: pointer;
}
.staged-form ul label:hover { border-color: var(--navy-2); }
.staged-form ul input[type="radio"] { width: auto; margin: 0; }
.field-check label { display: flex; align-items: center; gap: 8px; font-weight: 400; }
.field-check input { width: auto !important; }
.field-help { font-size: .84rem; color: var(--muted); margin: 5px 0 0; }

.locate-btn {
  width: 100%; padding: 13px; margin-bottom: 8px;
  background: #fff; border: 2px dashed var(--navy-2); border-radius: 8px;
  color: var(--navy); font: inherit; font-weight: 700; cursor: pointer;
}
.locate-btn:hover { background: var(--bg-alt); }
.locate-btn:disabled { opacity: .6; cursor: default; }
.locate-status { font-size: .85rem; color: var(--muted); margin: 0 0 16px; min-height: 1.2em; }
.locate-status.is-ok { color: #1e7e46; }
.locate-status.is-warn { color: #a15c00; }

.consent-box {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; margin: 20px 0;
  font-size: .9rem;
}
.consent-box p { margin: 0 0 10px; }
.consent-box p:last-child { margin-bottom: 0; }
.consent-privacy { color: var(--muted); font-size: .85rem; }

.form-nav { display: flex; gap: 10px; align-items: center; margin-top: 22px; }
.back-btn {
  padding: 15px 20px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  color: var(--muted); text-decoration: none; font-weight: 600;
}
.back-btn:hover { border-color: var(--navy-2); color: var(--navy); }
.form-nav .submit-btn { flex: 1; }

/* ── Confirmation ───────────────────────────────────────────────────── */
.done { max-width: 560px; margin: 0 auto; }
.done-notice {
  background: #fff8e6; border: 1px solid #f0d391;
  border-radius: var(--radius); padding: 16px 18px; margin: 18px 0 22px;
}
.done-notice p { margin: 0 0 8px; }
.done-notice p:last-child { margin-bottom: 0; }
.done-danger {
  background: #fdecea; border: 1px solid #f0b7b1; color: #8c1d18;
  border-radius: var(--radius); padding: 16px 18px; margin-bottom: 22px;
}
.done-danger h2 { margin-top: 0; font-size: 1.05rem; }
.done-summary { background: var(--bg-alt); border-radius: var(--radius); padding: 18px; margin: 24px 0; }
.done-summary dl { margin: 0; }
.done-summary dt { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.done-summary dd { margin: 2px 0 12px; font-weight: 600; }
.done-fix { font-size: .87rem; color: var(--muted); margin: 6px 0 0; }
.done-tips { color: var(--muted); padding-left: 20px; }
.done-tips li { margin-bottom: 7px; }

/* ── Persistent mobile action bar ───────────────────────────────────── */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1.3fr 1fr;
  background: var(--navy);
  box-shadow: 0 -2px 14px rgba(0,0,0,.22);
  padding-bottom: env(safe-area-inset-bottom);
}
.ab-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-height: var(--sticky-h); padding: 8px 4px;
  text-decoration: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: .72rem;
  background: transparent; color: #cfdce5;
}
.ab-item:active { background: rgba(255,255,255,.1); }
.ab-icon { font-size: 1.15rem; line-height: 1; }
.ab-call { background: var(--amber); color: #12202b; }
.ab-call:active { background: var(--amber-dk); }
.ab-request { background: var(--navy-2); color: #fff; }
.ab-share:disabled { opacity: .6; }

/* ── Desktop ────────────────────────────────────────────────────────── */
@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .action-bar { display: none; }
  .cta-actions { grid-template-columns: 1fr 1fr; }
  .progress-steps li { font-size: .78rem; }

  .hero { padding: 56px 0 60px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-lede { font-size: 1.15rem; }
  .hero-points { grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-top: 6px; }

  .hero.has-image { padding: 88px 0 92px; }

  .hero-bg {
    display: block;
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center right;
    display: block;
  }

  /* Scrim. Opaque enough on the left that white text is legible over any
     image, fading out to the right so the picture is still visible. */
  .hero-bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(11, 29, 42, .96) 0%,
        rgba(11, 29, 42, .90) 32%,
        rgba(11, 29, 42, .62) 58%,
        rgba(11, 29, 42, .38) 100%
      );
  }

  /* Text column is capped so it never runs across the picture. */
  .hero.has-image .hero-text { max-width: 620px; }
  .hero.has-image .hero-points { grid-template-columns: 1fr; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.5rem; }

  .cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .area-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .how { grid-template-columns: repeat(4, 1fr); }
  .hero-actions { grid-template-columns: 1fr 1fr; }
  .foot-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
  .big-call { display: inline-flex; padding: 24px 48px; }
}

@media (min-width: 1000px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
