/* =========================================================
   Midwest Hauling Group — modern rebuild
   Palette: lime #93ce20 · deep green #024731 · ink #1e1d24
   accent pink #f2295b · greys #79787f #e3e2e7
   ========================================================= */

:root {
  --lime: #93ce20;
  --lime-600: #7bb016;
  --lime-050: #f2f9e6;
  --green: #024731;
  --green-700: #05593e;
  --ink: #1e1d24;
  --ink-700: #35333d;
  --grey: #79787f;
  --line: #e6e6ea;
  --bg: #ffffff;
  --bg-soft: #f7f8f5;
  --pink: #f2295b;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(30,29,36,.06), 0 2px 8px rgba(30,29,36,.05);
  --shadow-md: 0 8px 30px rgba(30,29,36,.10);
  --shadow-lg: 0 24px 60px rgba(2,71,49,.16);

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

  --maxw: 1200px;
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(147,206,32,.25); }

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

/* anchor targets clear the sticky header when jumped to */
#hero-form, #quote-form { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .4em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1rem; color: var(--ink-700); }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(48px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--green { background: var(--green); color: #eafff4; }
.section--green p { color: #b9e6d3; }

/* ---------- utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); background: var(--lime-050);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 20px;
}
.section--green .eyebrow { color: #d7ff8f; background: rgba(147,206,32,.14); }
.lead { font-size: 1.18rem; color: var(--grey); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.text-lime { color: var(--lime-600); }
.grad-text { color: var(--lime-600); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1rem; font-family: inherit;
  padding: 15px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--lime); color: var(--ink); box-shadow: 0 10px 24px rgba(147,206,32,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(147,206,32,.45); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #000; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--lime); color: var(--lime-600); transform: translateY(-2px); }

/* ---------- header ---------- */
.topbar {
  background: var(--ink); color: #d7d7dd; font-size: .86rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 42px; }
.topbar a { color: #d7d7dd; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--lime); }
.topbar .topbar__meta { display: flex; gap: 22px; }
.topbar svg { width: 15px; height: 15px; color: var(--lime); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.12rem; letter-spacing: -.02em; }
.brand img { width: 42px; height: 42px; border-radius: 10px; }
.brand small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lime-600); }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 700; font-size: .96rem; padding: 10px 16px; border-radius: 100px; color: var(--ink-700);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--green); background: var(--lime-050); }
.nav__links a.active { color: var(--green); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; margin: 5px 0; transition: .25s; }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(2,32,22,.94) 0%, rgba(2,71,49,.80) 45%, rgba(2,71,49,.35) 100%);
}
.hero .container { position: relative; z-index: 1; padding: clamp(70px, 11vw, 140px) 0 clamp(80px, 12vw, 150px); }
.hero__inner { max-width: 720px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__sub { font-size: 1.2rem; color: #d6ece1; margin: 22px 0 34px; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 52px; }
.hero__stats .num { font-size: 2rem; font-weight: 900; color: #fff; }
.hero__stats .lbl { font-size: .9rem; color: #a9d4c1; }

/* ---------- hero two-column + hero form ---------- */
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-form {
  background: #fff; border-radius: var(--radius-lg); padding: 26px 24px; box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-form h3 { font-size: 1.35rem; margin-bottom: 4px; }
.hero-form .sub { color: var(--grey); font-size: .92rem; margin-bottom: 18px; }
.hero-form .field { margin-bottom: 12px; }
.hero-form label { display: block; font-weight: 700; font-size: .8rem; margin-bottom: 5px; }
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--ink); transition: .18s;
}
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: 0; border-color: var(--lime); background: #fff; box-shadow: 0 0 0 4px var(--lime-050);
}
.hero-form textarea { resize: vertical; min-height: 76px; }
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-form .form-success { display: none; align-items: center; gap: 9px; margin-top: 12px; color: var(--green); font-weight: 700; font-size: .95rem; }
.hero-form .form-success svg { width: 20px; height: 20px; flex: none; }
.hero-form .tiny { font-size: .78rem; color: var(--grey); margin: 10px 0 0; text-align: center; }

/* ---------- trust strip ---------- */
.trust { background: var(--ink); color: #fff; }
.trust .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 26px 0; }
.trust__item { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: .98rem; }
.trust__item svg { width: 26px; height: 26px; color: var(--lime); flex: none; }

/* ---------- section head ---------- */
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }

/* ---------- feature / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--lime); color: var(--ink);
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md); max-width: 220px;
}
.split__badge .big { font-size: 2rem; font-weight: 900; line-height: 1; }
.split__badge .small { font-weight: 700; font-size: .9rem; }

.check-list { list-style: none; margin: 26px 0 32px; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list svg { width: 24px; height: 24px; color: var(--lime-600); flex: none; margin-top: 1px; }

/* ---------- value cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--lime-050); color: var(--green); margin-bottom: 20px;
}
.value-card .ic svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { margin: 0; font-size: .98rem; }

/* ---------- values (editorial numbered list) ---------- */
.values { max-width: 860px; margin: 0 auto; }
.value-row { display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: start; padding: 32px 4px; border-top: 1px solid var(--line); }
.value-row:last-child { border-bottom: 1px solid var(--line); }
.value-row__no { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--lime); font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.value-row__body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.value-row__body p { margin: 0; color: var(--grey); max-width: 60ch; }
@media (max-width: 600px) {
  .value-row { gap: 18px; padding: 24px 0; }
  .value-row__no { font-size: 1.9rem; }
  .value-row__body h3 { font-size: 1.2rem; }
}

/* ---------- services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card__img { aspect-ratio: 16/11; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc-card p { font-size: .95rem; margin-bottom: 18px; flex: 1; }
.svc-card__link { font-weight: 800; color: var(--green); display: inline-flex; align-items: center; gap: 7px; font-size: .95rem; margin-top: auto; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 1.25rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: .95rem; margin: 0; }

/* ---------- rates ---------- */
.rate-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.rate-tab {
  font-family: inherit; font-weight: 800; font-size: 1rem; cursor: pointer;
  padding: 14px 28px; border-radius: 100px; border: 2px solid var(--line); background: #fff; color: var(--ink);
  transition: .2s;
}
.rate-tab.active { background: var(--green); border-color: var(--green); color: #fff; }
.rate-panel { display: none; }
.rate-panel.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.rate-card {
  max-width: 820px; margin-inline: auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
}
.rate-card__head { background: var(--green); color: #fff; padding: 26px 32px; display: flex; align-items: center; gap: 16px; }
.rate-card__head svg { width: 34px; height: 34px; color: var(--lime); }
.rate-card__head h3 { margin: 0; color: #fff; font-size: 1.4rem; }
.rate-card__head p { margin: 0; color: #a9d4c1; font-size: .9rem; }
.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th, .rate-table td { padding: 15px 32px; text-align: left; }
.rate-table th { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--line); }
.rate-table td { border-bottom: 1px solid var(--line); font-weight: 600; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table tr:hover td { background: var(--lime-050); }
.rate-table .price { text-align: right; font-weight: 900; color: var(--green); font-size: 1.08rem; }
.rate-table .vol { color: var(--grey); font-weight: 500; font-size: .92rem; }
.rate-note { text-align: center; color: var(--grey); margin-top: 26px; font-size: .95rem; }

/* ---------- testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.tst-card .stars { color: var(--lime); display: flex; gap: 3px; }
.tst-card .stars svg { width: 18px; height: 18px; }
.tst-card p { font-size: 1rem; color: var(--ink-700); margin: 0; flex: 1; }
.tst-card__who { display: flex; align-items: center; gap: 12px; }
.tst-card__ava { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 900; }
.tst-card__who strong { display: block; font-size: .98rem; }
.tst-card__who span { font-size: .85rem; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--lime) 0%, #b6e34a 100%); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; background: rgba(255,255,255,.18); border-radius: 50%; }
.cta-band .inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: var(--ink); margin: 0; max-width: 18ch; }
.cta-band p { color: #274d0a; margin: 8px 0 0; font-weight: 600; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--green); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -80px; bottom: -120px; width: 340px; height: 340px; background: rgba(147,206,32,.16); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; padding: clamp(26px, 4.5vw, 60px) 0 clamp(40px, 6vw, 72px); }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero p { color: #b9e6d3; font-size: 1.15rem; margin: 16px 0 0; max-width: 56ch; }
.crumbs { font-size: .9rem; color: #8fc7ac; margin-bottom: 18px; }
.crumbs a:hover { color: var(--lime); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-card:last-child { border-bottom: 0; }
.info-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--lime-050); color: var(--green); display: grid; place-items: center; flex: none; }
.info-card .ic svg { width: 24px; height: 24px; }
.info-card h4 { margin: 0 0 3px; font-size: 1.05rem; }
.info-card p, .info-card a { margin: 0; color: var(--grey); font-weight: 600; }
.info-card a:hover { color: var(--green); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg-soft); color: var(--ink); transition: .18s;
}
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--lime); background: #fff; box-shadow: 0 0 0 4px var(--lime-050); }
.field textarea { resize: vertical; min-height: 120px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--grey); margin-top: 6px; }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .2s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card__img { aspect-ratio: 16/10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .tag { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--lime-600); margin-bottom: 10px; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.post-card p { font-size: .95rem; flex: 1; }
.post-card .meta { font-size: .85rem; color: var(--grey); margin-top: 14px; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; font-family: inherit; font-size: 1.08rem; font-weight: 800; color: var(--ink); padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q svg { width: 22px; height: 22px; color: var(--green); flex: none; transition: transform .25s; }
.faq__item.open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; margin: 0; color: var(--grey); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #b6b5bd; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.site-footer a { color: #b6b5bd; }
.site-footer a:hover { color: var(--lime); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: #fff; font-weight: 900; font-size: 1.2rem; }
.footer-brand img { width: 46px; height: 46px; border-radius: 10px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--lime); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .88rem; }

/* ---------- sticky mobile CTA bar ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(30,29,36,.10);
  transform: translateY(120%); transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-cta.show { transform: none; }
.mobile-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; font-size: 1rem; padding: 14px 10px; border-radius: 100px; white-space: nowrap;
}
.mobile-cta a svg { width: 18px; height: 18px; }
.mobile-cta .mc-call { background: var(--ink); color: #fff; }
.mobile-cta .mc-quote { background: var(--lime); color: var(--ink); }

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

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid-3, .services-grid, .tst-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .topbar__meta .hide-sm { display: none; }
  .nav__links.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px 16px 18px; gap: 4px; box-shadow: var(--shadow-md);
  }
  .nav__links.open a { padding: 14px 16px; }
  .nav__toggle { display: block; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .grid-3, .services-grid, .tst-grid, .post-grid, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .row-2 { grid-template-columns: 1fr; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 22px; }
  .rate-table th, .rate-table td { padding: 12px 14px; }
  .split__badge { left: 0; }
}

/* ---------- super-tight mobile ---------- */
@media (max-width: 760px) {
  body { padding-bottom: 74px; }              /* room for sticky CTA bar */
  .mobile-cta { display: flex; }
  :root { --radius-lg: 20px; }
  .container { width: min(100% - 28px, var(--maxw)); }
  .section { padding: 44px 0; }
  h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); line-height: 1.08; }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  body { font-size: 16px; }
  .nav { height: 64px; }
  .brand img { width: 36px; height: 36px; }
  .brand { font-size: 1rem; gap: 9px; }
  .nav__links.open { top: 64px; }
  .topbar .container { height: 38px; font-size: .8rem; }
  .hero .container { padding: 40px 0 46px; }
  .hero__sub { font-size: 1.02rem; margin: 16px 0 22px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { margin-top: 32px; }
  .hero__stats .num { font-size: 1.6rem; }
  .section-head { margin-bottom: 30px; }
  .btn { padding: 13px 22px; }
  .value-card, .svc-card__body, .tst-card, .post-card__body { padding: 22px 20px; }
  .split__badge { padding: 16px 20px; bottom: -18px; }
  .split__badge .big { font-size: 1.6rem; }
  .cta-band { padding: 30px 24px; }
  .rate-card__head { padding: 20px 20px; }
  .form-card { padding: 22px 18px; }
  .footer-grid { padding-bottom: 40px; }
  .site-footer { padding-top: 52px; }
  .split__content .check-list { margin: 20px 0 24px; }
}
/* hide sticky bar on larger screens (header CTA covers it) */
@media (min-width: 761px) { .mobile-cta { display: none; } }

/* ---------- mobile: full hero kept, trust badges as a 2x2 block at the bottom ---------- */
@media (max-width: 760px) {
  .hero .container { padding: 32px 0 34px; }
  .hero__grid { gap: 22px; }
  .hero h1 { margin-bottom: 4px; }
  /* Name + Phone stay side by side */
  .hf-row { gap: 10px; }
  /* trust badges: neat 2x2 grid sitting at the bottom under the hero */
  .trust .container { padding: 20px 0; gap: 14px; }
  .trust__item { width: calc(50% - 7px); font-size: .85rem; gap: 10px; }
  .trust__item svg { width: 22px; height: 22px; flex: none; }
}
