/* ============================================================
   Blackstarr Trucking | styles.css
   Light / minimalist black-on-white. Montserrat display + Inter body.
   No build step required.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-2:      #f5f5f3;
  --bg-3:      #efefec;
  --ink:       #0a0a0a;
  --ink-2:     #565654;
  --ink-3:     #8a8a87;
  --line:      rgba(10,10,10,.14);
  --line-2:    rgba(10,10,10,.08);

  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1160px;
  --shadow:    0 30px 60px -32px rgba(10,10,10,.28);
  --ease:      cubic-bezier(.2,.7,.2,1);

  --ff-display: "Montserrat", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.08; letter-spacing: -.02em; margin: 0; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 1rem + 2.9vw, 3rem); }
h3 { font-size: 1.16rem; font-weight: 700; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; }

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

.i { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor; stroke-width: 2;
     stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad);
  font-family: var(--ff-display); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  border-radius: 9px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { --pad: 16px 28px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(10,10,10,.55); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.72); font-size: .8rem; }
.topbar__inner { display: flex; align-items: center; gap: 12px; min-height: 38px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; letter-spacing: .01em; }
.topbar__sep { color: rgba(255,255,255,.35); }
.topbar__call { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 600; }
.topbar__call .i { width: 15px; height: 15px; }
.topbar__call:hover { color: rgba(255,255,255,.8); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line-2); background: rgba(255,255,255,.94); }
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; color: var(--ink); flex: none; }
.brand__mark svg { width: 100%; height: 100%; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--ff-display); font-weight: 900; font-size: 1.16rem; letter-spacing: .02em; }
.brand__sub { font-size: .62rem; letter-spacing: .52em; color: var(--ink-2); font-weight: 700; margin-top: 4px; }

.nav { display: flex; gap: 4px; margin: 0 auto; }
.nav a {
  position: relative; padding: 9px 14px; border-radius: 7px; font-size: .9rem;
  color: var(--ink-2); font-weight: 500; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--ink); background: var(--bg-2); }

.header__actions { display: flex; align-items: center; gap: 10px; }
.btn--call { padding: 10px 16px; }

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

/* ---------- Eyebrow ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display);
  font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: 20px; }
.eyebrow__x { position: relative; width: 13px; height: 13px; flex: none; }
.eyebrow__x::before, .eyebrow__x::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
  background: var(--ink); }
.eyebrow__x::before { transform: translateY(-50%) rotate(45deg); }
.eyebrow__x::after  { transform: translateY(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(64px, 8vw, 124px) 0 clamp(56px, 6vw, 96px);
  border-bottom: 1px solid var(--line-2); }
.hero__watermark { position: absolute; top: 50%; right: -7%; width: min(620px, 56vw); aspect-ratio: 1;
  transform: translateY(-50%); color: var(--ink); opacity: .04; pointer-events: none; }
.hero__watermark svg { width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 1; max-width: 880px; }
.hero__title { font-size: clamp(2.3rem, 1rem + 6vw, 4.6rem); font-weight: 900; letter-spacing: -.03em; }
.hero__title em { display: block; color: var(--ink); margin-top: .1em;
  -webkit-text-stroke: 0; }
.hero__lead { color: var(--ink-2); font-size: clamp(1.04rem, .9rem + .5vw, 1.22rem); max-width: 620px; margin-top: 24px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 14px; padding: 0; margin: 34px 0 0; }
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: .9rem;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 15px; font-weight: 500; }
.hero__chips li::before { content: ""; width: 9px; height: 9px; flex: none;
  background:
    linear-gradient(45deg, transparent 44%, var(--ink) 44%, var(--ink) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--ink) 44%, var(--ink) 56%, transparent 56%); }

/* ---------- Stats ---------- */
.stats { background: var(--ink); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 34px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-right: 0; }
.stat__num { display: block; font-family: var(--ff-display); font-weight: 800; color: #fff;
  font-size: clamp(2rem, 1rem + 3vw, 2.9rem); line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.stat__num--text { font-size: clamp(1.5rem, .9rem + 2vw, 2.1rem); }
.stat__label { display: block; color: rgba(255,255,255,.6); font-size: .86rem; margin-top: 12px; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 7vw, 112px) 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.section__head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__sub { color: var(--ink-2); margin-top: 16px; font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card__icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--line-2); margin-bottom: 20px; }
.card__icon svg { width: 27px; height: 27px; fill: none; stroke: var(--ink); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-2); font-size: .96rem; }
.services__note { text-align: center; margin-top: 36px; color: var(--ink-2); }
.services__note a { color: var(--ink); font-weight: 600; border-bottom: 2px solid var(--ink); padding-bottom: 1px; }

/* ---------- Why / pillars ---------- */
.why { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.why__intro .eyebrow { justify-content: flex-start; }
.why__intro h2 { margin-bottom: 14px; }
.why__intro .btn { margin-top: 26px; }
.pillars { display: grid; gap: 14px; }
.pillar { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 28px 26px 30px; }
.pillar::before { content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px; background: var(--ink); }
.pillar__tag { display: inline-block; font-family: var(--ff-display); font-weight: 800; font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--ink);
  padding: 5px 12px; border-radius: 5px; margin-bottom: 15px; }
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--ink-2); font-size: .96rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.about__media { position: relative; }
.about__panel {
  position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius);
  background: var(--bg-2); border: 1px solid var(--line); display: grid; place-items: center;
  overflow: hidden; gap: 0;
}
.about__panel::after { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 45%, #000, transparent 78%); }
.about__mark { position: relative; width: 44%; color: var(--ink); }
.about__panel-word { position: relative; font-family: var(--ff-display); font-weight: 900;
  letter-spacing: .14em; font-size: clamp(.9rem, 2.4vw, 1.5rem); color: var(--ink); margin-top: 14px; }
.about__body h2 { margin-bottom: 16px; }
.about__body p { color: var(--ink-2); margin-bottom: 14px; }
.about__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.about__list li { position: relative; display: flex; align-items: center; gap: 13px; color: var(--ink); font-weight: 500; }
.about__list li::before { content: ""; width: 13px; height: 13px; flex: none;
  background:
    linear-gradient(45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%); }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; }
.step__num { display: block; font-family: var(--ff-display); font-weight: 900; font-size: 2rem;
  color: var(--ink); line-height: 1; margin-bottom: 16px; letter-spacing: -.03em; }
.step h3 { margin-bottom: 7px; }
.step p { color: var(--ink-2); font-size: .94rem; }

/* ---------- Coverage ---------- */
.coverage { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
.coverage__body h2 { margin-bottom: 14px; }
.coverage__body > p { color: var(--ink-2); }
.coverage__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.coverage__cols h4 { font-family: var(--ff-display); font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.coverage__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.coverage__cols li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: .95rem; }
.coverage__cols li::before { content: ""; position: absolute; left: 0; top: .42em; width: 10px; height: 10px;
  background:
    linear-gradient(45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%),
    linear-gradient(-45deg, transparent 42%, var(--ink) 42%, var(--ink) 58%, transparent 58%); }
.coverage__card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 32px 30px;
  position: sticky; top: 92px; }
.coverage__card h3 { margin-bottom: 10px; color: #fff; }
.coverage__card p { color: rgba(255,255,255,.7); margin-bottom: 22px; }
.coverage__card .btn { margin-bottom: 12px; }
.coverage__card .btn:last-child { margin-bottom: 0; }
.coverage__card .btn--solid { background: #fff; color: var(--ink); border-color: #fff; }
.coverage__card .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.coverage__card .btn--ghost:hover { border-color: #fff; }

/* ---------- Get a Quote (dark panel) ---------- */
.section--quote { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.quote__bgx { position: absolute; top: 50%; left: -9%; width: min(560px, 50vw); aspect-ratio: 1;
  transform: translateY(-50%); color: #fff; opacity: .045; pointer-events: none; }
.quote__bgx svg { width: 100%; height: 100%; }
.quotewrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.04fr;
  gap: clamp(36px, 5vw, 76px); align-items: center; }

.eyebrow--light { color: rgba(255,255,255,.66); }
.eyebrow--light .eyebrow__x::before, .eyebrow--light .eyebrow__x::after { background: #fff; }

.quoteinfo__title { color: #fff; font-size: clamp(2rem, 1rem + 3.6vw, 3.3rem); font-weight: 900;
  letter-spacing: -.03em; margin-bottom: 18px; }
.quoteinfo__lead { color: rgba(255,255,255,.66); font-size: 1.05rem; max-width: 470px; }

.qmethods { list-style: none; padding: 0; margin: 32px 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.qmethods li { border-bottom: 1px solid rgba(255,255,255,.14); }
.qmethods li > a, .qmethods__static { display: flex; align-items: center; gap: 16px; padding: 15px 4px; color: #fff; }
.qmethods a { transition: padding-left .25s var(--ease); }
.qmethods a:hover { padding-left: 12px; }
.qmethods__ic { display: grid; place-items: center; width: 44px; height: 44px; flex: none; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.22); }
.qmethods__ic .i { width: 21px; height: 21px; stroke: #fff; }
.qmethods__ic .i path[fill], .qmethods__ic .i circle[fill] { fill: var(--ink); stroke: none; }
.qmethods__txt { display: flex; flex-direction: column; line-height: 1.25; }
.qmethods__k { font-size: .73rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); font-weight: 600; }
.qmethods__v { font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; letter-spacing: -.01em; margin-top: 3px; }
.qmethods__go { margin-left: auto; color: rgba(255,255,255,.4); transition: transform .25s var(--ease), color .2s var(--ease); }
.qmethods__go svg { width: 22px; height: 22px; }
.qmethods a:hover .qmethods__go { transform: translateX(5px); color: #fff; }
.qmethods__motto { display: inline-flex; align-items: center; gap: 11px; margin-top: 26px;
  font-family: var(--ff-display); font-weight: 800; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.82); }
.qmethods__motto .eyebrow__x { width: 12px; height: 12px; }
.qmethods__motto .eyebrow__x::before, .qmethods__motto .eyebrow__x::after { background: #fff; }

/* ---------- Form ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.quote__title { font-family: var(--ff-display); font-weight: 900; font-size: 1.4rem; letter-spacing: -.02em; color: var(--ink); }
.quote__intro { color: var(--ink-2); font-size: .92rem; margin: 7px 0 24px; }
.quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field:last-of-type { margin-bottom: 20px; }
.quote__row .field { margin-bottom: 0; }
.field > span { font-family: var(--ff-display); font-size: .78rem; font-weight: 700; color: var(--ink-2);
  letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 9px; padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(10,10,10,.1); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }
.quote button[type="submit"] { margin-top: 4px; }
.quote__status { margin-top: 14px; font-size: .92rem; text-align: center; min-height: 1.2em; }
.quote__status.ok { color: #1c7a3d; }
.quote__status.err { color: #c0341d; }
.quote__fineprint { margin-top: 14px; text-align: center; color: var(--ink-3); font-size: .86rem; }
.quote__fineprint a { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(48px,5vw,68px) 0 26px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--ink-2); font-size: .92rem; max-width: 320px; }
.footer__motto { font-family: var(--ff-display); color: var(--ink) !important; font-weight: 800; font-size: .8rem !important;
  letter-spacing: .08em; text-transform: uppercase; margin-top: 14px; }
.footer__col h4 { font-family: var(--ff-display); font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ink); margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--ink-2); font-size: .92rem; }
.footer__col a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line-2); margin-top: 42px; padding-top: 22px; color: var(--ink-3); font-size: .85rem; }

/* ---------- Call FAB (mobile) ---------- */
.callfab { display: none; position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff;
  align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(10,10,10,.5); }
.callfab .i { width: 24px; height: 24px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why, .about, .coverage, .quotewrap { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .coverage__card { position: static; }
}

@media (max-width: 860px) {
  .nav, .header__actions { display: none; }
  .hamburger { display: flex; }
  .header.nav-open .nav {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px 22px;
  }
  .header.nav-open .nav a { padding: 13px 12px; font-size: 1rem; border-bottom: 1px solid var(--line-2); }
  .callfab { display: flex; }
}

@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .qmethods__v { font-size: 1.02rem; }
  .topbar__item:not(:first-child):not(.topbar__call) { display: none; }
  .topbar__sep { display: none; }
}

@media (max-width: 560px) {
  .cards, .steps, .coverage__cols, .quote__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__cta .btn { width: 100%; }
}
