/* SWRS Towing — styles.css (dark slate + orange, prototype-aligned) */
:root {
  /* Surfaces */
  --bg:       #020617;  /* slate-950  page */
  --bg-soft:  #0b1220;  /* section alt */
  --bg-tint:  #0f172a;  /* slate-900  elevated */
  --card:     #0f172a;  /* slate-900  default card */
  --card-2:   #1e293b;  /* slate-800  input / secondary */

  /* Text — kept in historical variable names so existing selectors still read naturally */
  --ink:      #f1f5f9;  /* slate-100  body */
  --ink-2:    #cbd5e1;  /* slate-300  secondary text */
  --muted:    #94a3b8;  /* slate-400  captions */
  --navy:     #f8fafc;  /* "primary" text/heading in dark mode */
  --navy-2:   #ffffff;
  --navy-dark:#e2e8f0;

  /* Accents */
  --orange:     #f97316;
  --orange-2:   #ea580c;
  --orange-3:   #c2410c;
  --red:        #f97316;  /* semantic = CTA; mapped to orange in dark theme */
  --red-dark:   #ea580c;
  --amber:      #f59e0b;
  --amber-dark: #d97706;
  --green:      #22c55e;
  --green-dim:  #16a34a;

  /* Borders & lines */
  --line:   rgba(30, 41, 59, .8);   /* slate-800/80 */
  --line-2: rgba(51, 65, 85, .8);   /* slate-700/80 */

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 1px 3px rgba(0,0,0,.45);
  --shadow:    0 4px 14px rgba(0,0,0,.4),  0 10px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.55);
  --shadow-orange: 0 8px 30px rgba(249,115,22,.28);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--orange); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--orange-2); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 .6rem; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1rem; color: var(--ink-2); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4.5rem 0; background: var(--bg); }
section.soft { background: var(--bg-soft); }
section.tint { background: var(--bg-tint); }
.sub { color: var(--muted); max-width: 60ch; margin: 0 auto 2rem; text-align: center; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: #fff; padding: .6rem 1rem; z-index: 999; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* Topbar */
.topbar {
  background: var(--bg-tint);
  color: var(--muted);
  font-size: .85rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; padding-top: .85rem; padding-bottom: .85rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.shield {
  display: inline-block;
  width: 48px; height: 48px;
  background: url('/images/logo-shield.png') center/contain no-repeat;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
}
.brand-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; line-height: 1; color: var(--ink); }
.brand-tag  { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }

.primary { display: flex; gap: .35rem; align-items: center; }
.primary a {
  text-decoration: none;
  color: var(--ink-2);
  padding: .55rem .85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .95rem;
  transition: background .15s, color .15s;
}
.primary a:hover { background: var(--card-2); color: var(--ink); }
.primary a[aria-current="page"] { color: var(--ink); background: var(--card-2); font-weight: 600; }
.nav-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%) !important;
  color: #fff !important;
  padding: .6rem 1.1rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-orange);
}
.nav-cta:hover { filter: brightness(1.06); color: #fff !important; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink);
  padding: .45rem .7rem; border-radius: 8px; cursor: pointer; font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .08s, box-shadow .15s, background .15s, filter .15s;
  border: 1.5px solid transparent;
  font-size: 1rem;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { filter: brightness(1.08); color: #fff; }
.btn-secondary { background: var(--card-2); color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { background: var(--card); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { background: var(--card-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink-2); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--card-2); color: var(--ink); }

.ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(249,115,22,.12), transparent 60%),
    radial-gradient(800px 350px at 10% 100%, rgba(249,115,22,.05), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(249,115,22,.1); color: var(--orange);
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  border: 1px solid rgba(249,115,22,.35);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(249,115,22,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(249,115,22,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
.hero h1 { margin-bottom: 1rem; color: var(--ink); }
.lede { font-size: 1.1rem; color: var(--ink-2); max-width: 58ch; margin-bottom: 1.6rem; }
.hero .ctas { margin-bottom: 1.4rem; }
.trust {
  display: flex; gap: 1.1rem; flex-wrap: wrap; color: var(--muted);
  font-size: .9rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.trust span { display: inline-flex; align-items: center; gap: .35rem; }
.trust svg { width: 16px; height: 16px; color: var(--amber); }

.hero-media { position: relative; }
.hero-img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-stat {
  position: absolute; bottom: -24px; left: 20px; right: 20px;
  background: var(--card); border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
  border: 1px solid var(--line-2);
}
.hero-stat .s { text-align: center; }
.hero-stat .s strong { display: block; color: var(--orange); font-size: 1.15rem; font-weight: 800; line-height: 1.1; }
.hero-stat .s span { color: var(--muted); font-size: .78rem; }

/* Trust strip */
.trust-strip {
  background: var(--bg-tint);
  color: var(--ink);
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip .badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.badge { display: flex; gap: .8rem; align-items: flex-start; }
.badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  margin-top: .5rem;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  flex-shrink: 0;
}
.badge strong { display: block; color: var(--ink); font-size: .98rem; }
.badge span { color: var(--muted); font-size: .82rem; }

/* Cards / grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(249,115,22,.4);
}
.card h3 { color: var(--ink); }
.card p, .card ul { color: var(--ink-2); }
.card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(249,115,22,.12);
  color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(249,115,22,.22);
}
.card .icon svg { width: 24px; height: 24px; }
.card ul { margin: .6rem 0 1rem; padding-left: 1.1rem; }
.card ul li { margin: .2rem 0; }
.card .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--orange); font-weight: 700; text-decoration: none;
  font-size: .95rem;
}
.card .more::after { content: "→"; transition: transform .15s; }
.card .more:hover::after { transform: translateX(3px); }

/* Zone cards */
.zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.zone {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.zone header { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.zone h3 { margin: 0; font-size: 1.02rem; color: var(--ink); }
.zone .eta {
  background: rgba(34,197,94,.12);
  color: var(--green);
  border: 1px solid rgba(34,197,94,.3);
  padding: .25rem .6rem; border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  white-space: nowrap;
}
.zone .eta.eta-rush {
  background: rgba(249,115,22,.12);
  color: var(--orange);
  border-color: rgba(249,115,22,.3);
}
.zone p { color: var(--ink-2); font-size: .92rem; margin: 0; }

.rush-banner {
  background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange);
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
  margin: 0 0 1.2rem;
  font-size: .95rem;
  display: flex; align-items: center; gap: .5rem;
}
.rush-banner::before { content: "⏱"; font-size: 1.15rem; flex-shrink: 0; }
.rush-banner a { color: var(--orange); font-weight: 700; text-decoration: underline; }

/* Estimator */
.estimator {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.est-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.est-grid label { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; }
.est-grid select, .est-grid input[type="range"] {
  width: 100%; margin-top: .4rem; font: inherit;
}
.est-grid select {
  padding: .7rem .8rem; border: 1px solid var(--line-2); border-radius: 10px;
  background: var(--card-2); color: var(--ink);
}
.est-grid input[type="range"] { accent-color: var(--orange); }
.est-grid output { display: block; margin-top: .4rem; color: var(--orange); font-weight: 700; }
.est-out {
  margin-top: 1.25rem;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.est-line { display: flex; justify-content: space-between; padding: .35rem 0; color: var(--ink-2); }
.est-line strong { color: var(--ink); }
.est-total {
  display: flex; justify-content: space-between;
  padding: .75rem 0 .1rem;
  margin-top: .5rem;
  border-top: 1px dashed var(--line-2);
  font-size: 1.1rem;
  color: var(--ink);
}
.est-total strong { color: var(--orange); font-size: 1.5rem; font-weight: 800; }
.disclaimer { color: var(--muted); font-size: .82rem; margin: .9rem 0 0; line-height: 1.5; }
.disclaimer a { color: var(--orange); }

/* Pricing promise */
.promise { text-align: center; padding: 1.4rem; }
.promise svg {
  width: 32px; height: 32px; color: var(--green);
  background: rgba(34,197,94,.12); border-radius: 999px; padding: 8px;
  margin: 0 auto 0.7rem;
}

/* Why us / reasons */
.reasons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.reason {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.reason h3 { color: var(--ink); }
.reason p { color: var(--ink-2); }
.reason .num {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .95rem; font-weight: 800;
  margin-bottom: .7rem;
  box-shadow: var(--shadow-orange);
}

/* Partners */
.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 1rem; }
.partner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* Reviews */
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .5rem; font-size: 1.05rem; }
.review blockquote { margin: 0 0 .8rem; color: var(--ink-2); font-style: italic; }
.review cite { color: var(--ink); font-weight: 700; font-style: normal; display: block; }
.review .meta { color: var(--muted); font-size: .85rem; display: block; margin-top: .15rem; }

.reviews-scroll {
  position: relative;
  overflow: hidden;
  padding: .5rem 0 1.25rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll-reviews 180s linear infinite;
}
.reviews-scroll:hover .reviews-track,
.reviews-scroll:focus-within .reviews-track {
  animation-play-state: paused;
}
@keyframes scroll-reviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-scroll { overflow-x: auto; }
}
.reviews-track .review {
  flex: 0 0 min(360px, 85vw);
  display: flex;
  flex-direction: column;
  margin: 0;
}
.reviews-scroll .review blockquote { flex: 1; }
.review-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: .6rem;
  padding: .6rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: inherit;
}
.review-foot a { color: inherit; }
.review-date {
  color: var(--muted);
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Photo showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(3, 200px);
  gap: .8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.showcase-grid figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
  border: 1px solid var(--line);
}
.showcase-grid figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.showcase-grid figure:hover img { transform: scale(1.04); }
.showcase-grid .big { grid-column: 1; grid-row: 1 / 4; }
.showcase-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(2,6,23,.9));
  color: #fff; padding: 1.5rem 1rem .85rem;
  font-size: .85rem; font-weight: 600;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-grid h2 { margin-top: 0; margin-bottom: 1.2rem; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-of-type { border-bottom: 0; }
.info-row > svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--orange);
  background: rgba(249,115,22,.12);
  padding: 9px;
  border-radius: 10px;
  box-sizing: content-box;
  border: 1px solid rgba(249,115,22,.22);
}
.info-row .label {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .15rem;
}
.info-row a {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.info-row a:hover { color: var(--orange); text-decoration: underline; }
.contact-grid .btn { margin-right: .5rem; margin-bottom: .5rem; }

/* Map embed */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-tint);
}
.map-wrap iframe,
.map-wrap #coverage-map { width: 100%; height: 100%; border: 0; display: block; }
.map-wrap .leaflet-container { border-radius: 0; }

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: .6rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700; color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.4rem; color: var(--orange); transition: transform .15s;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 1.2rem 1.1rem; color: var(--ink-2); }
.faq .answer a { color: var(--orange); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 60%, var(--orange-3) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% 0%, rgba(255,255,255,.18), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band .sub { color: rgba(255,255,255,.92); position: relative; }
.cta-band .ctas { justify-content: center; position: relative; }
.cta-band .btn-primary {
  background: #fff; color: var(--orange-2); box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.cta-band .btn-primary:hover { filter: brightness(.97); color: var(--orange-3); }
.cta-band .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Page head (subpages) */
.page-head {
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  padding: 3.2rem 0;
  text-align: center;
  position: relative;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 220px at 50% 0%, rgba(249,115,22,.10), transparent 70%);
  pointer-events: none;
}
.page-head > * { position: relative; }
.page-head h1 { margin-bottom: .8rem; color: var(--ink); }
.page-head p { color: var(--ink-2); max-width: 65ch; margin: 0 auto; font-size: 1.08rem; }

/* Prose */
.prose h2 { margin-top: 2rem; }
.prose ul li { margin: .35rem 0; color: var(--ink-2); }
.prose a { color: var(--orange); }

/* Coverage list */
.coverage-list {
  columns: 2; column-gap: 2rem;
  padding-left: 1.1rem;
  color: var(--ink-2);
}

/* Request-a-tow grid */
.request-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.request-grid .card.primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-orange);
}
.request-grid .card.primary h3,
.request-grid .card.primary p,
.request-grid .card.primary a { color: #fff; }
.request-grid .card.primary .icon {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.request-grid .card .phone-big {
  font-size: 2rem; font-weight: 800; color: #fff; margin: .5rem 0; display: block; text-decoration: none;
  letter-spacing: -0.01em;
}

/* Footer */
footer {
  background: #010409;
  color: var(--ink-2);
  padding: 3.5rem 0 1rem;
  border-top: 1px solid var(--line);
}
footer h4 { color: var(--ink); margin-bottom: .8rem; }
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--orange); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin: .35rem 0; font-size: .92rem; }
.legal {
  margin-top: 2.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); flex-wrap: wrap; gap: .5rem;
}

/* Mobile call bar */
.mobile-call {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  color: #fff;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 14px rgba(0,0,0,.45);
}
.mobile-call a {
  color: #fff; font-weight: 800; text-decoration: none; font-size: 1.02rem;
  padding: .9rem .6rem;
  text-align: center;
  display: block;
}
.mobile-call a + a { border-left: 1px solid rgba(255,255,255,.28); }

/* Forms */
.form-row { display: grid; gap: .8rem; margin: .6rem 0; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  padding: .7rem .8rem;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--card-2);
  color: var(--ink);
  font: inherit; width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}

/* Responsive */
@media (max-width: 900px) {
  section { padding: 3rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero .wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat { position: static; margin-top: 1rem; }
  .trust-strip .badges { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .zones { grid-template-columns: 1fr 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .est-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; gap: .7rem; }
  .showcase-grid .big { grid-column: 1 / 3; grid-row: 1 / 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .coverage-list { columns: 1; }
  .request-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Mobile nav */
  .nav-toggle { display: inline-flex; }
  .primary {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg-tint);
    flex-direction: column;
    padding: .6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: stretch;
  }
  .primary a { padding: .8rem 1rem; }
  .primary.open { display: flex; }
  .site-header .wrap { position: relative; }
  .mobile-call { display: grid; }
  main { padding-bottom: 62px; }
}

@media (max-width: 560px) {
  .zones { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .topbar { font-size: .78rem; }
  .topbar .wrap { justify-content: center; }
  .topbar span:nth-child(2) { display: none; }
}
