/* ==========================================================================
   ZQuest Restoration — Site Stylesheet
   ========================================================================== */

:root {
  /* Brand palette (drawn from the ZQuest flame/drop logo) */
  --navy-950: #0a1c2e;
  --navy-900: #0d2540;
  --navy-800: #123258;
  --navy-700: #1a4272;
  --teal-600: #10849e;
  --teal-500: #28c7eb;
  --teal-100: #def7fc;
  --flame-600: #f04e00;
  --flame-500: #fd7a07;
  --flame-400: #fe9c1f;
  --amber-400: #ffd21e;
  --ink-900: #16232e;
  --ink-700: #3c4d5c;
  --ink-500: #64778a;
  --ink-300: #a9b8c4;
  --paper-0: #ffffff;
  --paper-50: #f6f9fa;
  --paper-100: #eef3f5;
  --border: #dde6ea;
  --danger: #c8352c;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(10, 28, 46, 0.08), 0 1px 2px rgba(10,28,46,.06);
  --shadow-md: 0 8px 24px rgba(10, 28, 46, 0.12);
  --shadow-lg: 0 20px 48px rgba(10, 28, 46, 0.18);
  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; flex: none; display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; margin: 0 0 .5em; color: var(--navy-900); }
p { margin: 0 0 1em; color: var(--ink-700); }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

@media (max-width: 720px) {
  section { padding: 48px 0; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--flame-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--flame-500);
  display: inline-block;
}
.lede { font-size: 19px; color: var(--ink-700); max-width: 62ch; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.bg-paper { background: var(--paper-50); }
.bg-navy { background: var(--navy-900); color: var(--paper-0); }
.bg-navy h2, .bg-navy h3 { color: var(--paper-0); }
.bg-navy p { color: #c7d5df; }
.text-teal { color: var(--teal-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-flame {
  background: linear-gradient(135deg, var(--flame-500), var(--flame-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 78, 0, .32);
}
.btn-flame:hover { box-shadow: 0 14px 30px rgba(240, 78, 0, .4); }
.btn-outline-light {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-navy {
  background: var(--navy-900);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-800); }
.btn-outline-navy {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: #b9c8d3;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #b9c8d3; }
.topbar .topbar-emergency { color: var(--amber-400); font-weight: 600; }
.topbar-links { display: flex; gap: 20px; align-items: center; justify-content: space-between; width: 100%; flex-wrap: wrap; }
.topbar-links span { color: var(--ink-300); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 152px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active { color: var(--navy-900); background: var(--paper-100); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink-700);
}
.dropdown a:hover { background: var(--paper-100); color: var(--navy-900); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-phone .label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-500); }
.header-phone .number { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--navy-900); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 0 0 0 30%; z-index: 110; background: #fff; padding: 90px 24px 24px; transform: translateX(100%); transition: transform .25s ease; box-shadow: -20px 0 40px rgba(0,0,0,.15); overflow-y: auto; }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; display: none; padding-left: 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: block; position: relative; z-index: 111; }
  .header-phone { display: none; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(10,28,46,.4); z-index: 90; }
  body.nav-open .nav-scrim { display: block; }
  .header-cta { gap: 8px; }
}
@media (max-width: 640px) {
  .brand img { height: 98px; }
  .brand { margin-left: 14px; }
  .header-cta .btn-sm { padding: 10px 14px; font-size: 13.5px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 45%, rgba(253,122,7,.28), transparent 45%),
    radial-gradient(circle at 15% 20%, var(--navy-700), var(--navy-950) 62%);
  color: #fff;
}
.hero .container { position: relative; padding-top: 88px; padding-bottom: 88px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.hero .lede { color: #cfdce6; font-size: 19px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: #dce8f0;
}
.hero-badge svg { width: 16px; height: 16px; flex: none; color: var(--amber-400); }

.hero-card {
  background: #fff;
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero-card h3 { font-size: 19px; margin-bottom: 4px; }
.hero-card p.sub { color: var(--ink-500); font-size: 14px; margin-bottom: 20px; }
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 12px;
  background: var(--paper-50);
}
.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
  outline: 2px solid var(--teal-500); outline-offset: 1px; background: #fff;
}
.hero-form-note { font-size: 12px; color: var(--ink-500); margin-top: 10px; text-align: center; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero .container { padding-top: 56px; padding-bottom: 56px; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--paper-50); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--teal-600); flex: none; }

/* ---------- Section headers ---------- */
.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); }

/* ---------- Service cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 620px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--flame-500), var(--flame-600));
  color: #fff;
}
.service-icon.teal { background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { font-size: 14.5px; margin-bottom: 16px; }
.card-link { font-weight: 600; font-size: 14px; color: var(--flame-600); display: inline-flex; align-items: center; gap: 6px; }
.card-link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px 20px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); }
.step .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  margin-bottom: 14px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13.5px; margin: 0; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split, .split.reverse .split-media { grid-template-columns: 1fr; order: initial; } }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: auto; object-fit: cover; }
.split-media.stack { position: relative; }
.checklist { margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink-700); }
.checklist svg { width: 20px; height: 20px; color: var(--teal-600); flex: none; margin-top: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,4vw,40px); color: #fff; }
.stat .label { font-size: 13.5px; color: #b9c8d3; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.stars { color: var(--amber-400); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p.quote { font-size: 15px; color: var(--ink-700); font-style: italic; }
.testimonial .who { font-weight: 600; font-family: var(--font-head); font-size: 14px; color: var(--navy-900); margin-top: 14px; }
.testimonial .where { font-size: 12.5px; color: var(--ink-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--flame-600), var(--flame-500) 60%, var(--amber-400));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 { color: #fff; font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.92); margin: 0; }
.cta-band .btn-flame { background: #fff; color: var(--flame-600); box-shadow: none; }
.cta-band .btn-flame:hover { background: var(--navy-950); color:#fff; }

/* ---------- Areas served ---------- */
.area-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 24px; }
@media (max-width: 780px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-700); padding: 6px 0; border-bottom: 1px dashed var(--border); }
.area-list svg { width: 16px; height: 16px; color: var(--flame-500); flex: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: #fff;
  padding: 56px 0;
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: 13px; color: #a9c0cf; margin-bottom: 14px; }
.breadcrumb a { color: #a9c0cf; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; max-width: 46ch; }
.page-hero .lede { color: #cfdce6; max-width: 60ch; }
.page-hero-actions { display:flex; gap:12px; margin-top:22px; flex-wrap: wrap; }

/* ---------- Sidebar / service page layout ---------- */
.service-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }
.service-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--paper-50); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.sidebar-card h4 { font-size: 15px; margin-bottom: 12px; }
.sidebar-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--ink-700); margin-bottom: 2px;
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: #fff; color: var(--navy-900); font-weight: 600; box-shadow: var(--shadow-sm); }
.sidebar-emergency { background: var(--navy-950); color: #fff; border-radius: var(--radius-md); padding: 24px; text-align: center; }
.sidebar-emergency .number { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--amber-400); display: block; margin: 8px 0 14px; }

.prose h2 { margin-top: 1.6em; font-size: 24px; }
.prose h3 { margin-top: 1.3em; font-size: 18px; }
.prose ul { list-style: none; margin: 1em 0; display: flex; flex-direction: column; gap: 10px; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul li::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--flame-500);
  margin-top: 8px; flex: none;
}

/* ---------- Signs grid (symptom checklist) ---------- */
.signs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 1.4em 0; }
@media (max-width: 560px) { .signs-grid { grid-template-columns: 1fr; } }
.sign-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px; background: var(--paper-50); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.sign-item svg { width: 18px; height: 18px; color: var(--danger); flex: none; margin-top: 2px; }
.sign-item span { font-size: 14px; color: var(--ink-700); }

/* ---------- Insurance strip ---------- */
.insurer-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--teal-100); border: 1px solid #bfe6ec; border-radius: var(--radius-md);
  padding: 20px; margin: 1.6em 0;
}
.insurer-note svg { width: 26px; height: 26px; color: var(--teal-600); flex: none; }
.insurer-note strong { color: var(--navy-900); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-card:last-child { border-bottom: none; }
.info-card .icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--paper-100);
  display: flex; align-items: center; justify-content: center; flex: none; color: var(--navy-900);
}
.info-card .icon svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 15px; margin-bottom: 4px; }
.info-card p { font-size: 14.5px; margin: 0; color: var(--ink-700); }
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: 20px; box-shadow: var(--shadow-sm); }
.map-frame iframe { display: block; width: 100%; height: 280px; border: 0; }

.form-card { background: var(--paper-50); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--teal-500); outline-offset: 1px; }
.form-note { font-size: 12.5px; color: var(--ink-500); margin-top: 10px; }
.form-success { display: none; background: var(--teal-100); border: 1px solid #bfe6ec; color: var(--navy-900); padding: 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.form-success.show { display: block; }
.form-success.form-error { background: #fdeee6; border-color: #f7c9ae; color: var(--flame-600); }
.hero-card .form-success { text-align: left; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #b9c8d3; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand img { height: 116px; width: auto; background: #fff; border-radius: 8px; padding: 8px 14px; }
.site-footer h5 { color: #fff; font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { font-size: 14.5px; color: #b9c8d3; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 13px; color: #8298a7; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #8298a7; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--navy-950);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--flame-500), var(--flame-600));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 13px; border-radius: var(--radius-sm);
}
@media (max-width: 720px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
}

/* ---------- Misc ---------- */
.badge-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 20px; }
.badge-pill { display:flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--border); padding:8px 14px; border-radius:100px; font-size:13px; color:var(--ink-700); box-shadow: var(--shadow-sm); }
.badge-pill svg { width:16px; height:16px; color:var(--teal-600); }

.divider { height: 1px; background: var(--border); margin: 48px 0; }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: 6px; z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }
