/* ABFBA — Site Stylesheet
   Palette: cool neutral gray/white background, near-black text/footer,
   safety-yellow used only as a thin accent / CTA — never as a fill.
   Flat, square-edged components (placard / signage feel), no soft
   pill badges, no warm "AI SaaS" cream tones. */

:root {
  --bg: #f5f6f5;
  --bg-alt: #ebedec;
  --bg-panel: #ffffff;
  --text: #14171a;
  --text-muted: #565b60;
  --text-faint: #84898d;
  --black: #0e1012;
  --black-soft: #1c1f22;
  --border: #d9dcdd;
  --border-strong: #b6bbbd;
  --yellow: #f6c500;
  --yellow-dark: #cf9f00;
  --yellow-ink: #3a2e00;
  --radius: 2px;
  --max-width: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.1rem; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--bg-panel);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand-logo {
  height: 50px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-link.active {
  border-bottom-color: var(--yellow);
}
.caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.15s ease;
}
.nav-drop { position: relative; }
.nav-drop.open .caret { transform: rotate(225deg); margin-top: 3px; }
.nav-drop-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(14, 16, 18, 0.12);
  padding: 6px;
  z-index: 200;
}
.nav-drop.open .nav-drop-panel { display: block; }
.nav-drop-panel a {
  display: block;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid transparent;
}
.nav-drop-panel a:hover,
.nav-drop-panel a.active {
  background: var(--bg-alt);
  border-left-color: var(--yellow);
}
.nav-phone {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  padding: 10px 14px;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--yellow-dark); }
.nav-cta {
  background: var(--black);
  color: #fff !important;
  padding: 11px 20px !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 13.5px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--yellow); color: var(--black) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  width: 42px;
  height: 38px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: none;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: inherit;
}
.btn-primary {
  background: var(--yellow);
  color: var(--yellow-ink);
  border-color: var(--yellow-dark);
}
.btn-primary:hover { background: var(--yellow-dark); }
.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover { background: var(--black-soft); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--black); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 24px, var(--black) 24px 48px);
}
.hero .wrap {
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  background: none;
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 12px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.hero p.lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.hero-stats div strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
}
.hero-stats div span {
  font-size: 12.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hero-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  padding: 26px;
}
.hero-panel h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}
.hero-panel p {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 10px;
  background: var(--bg-alt);
  border-left: 3px solid var(--yellow);
}

/* ---------- Section shell ---------- */
section { padding: 64px 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  max-width: 680px;
  margin: 0 0 36px;
}
.section-head .eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow-dark);
  margin-bottom: 10px;
  display: block;
}
.section-head h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 12px;
  font-weight: 800;
}
.section-head p { color: var(--text-muted); font-size: 15.5px; margin: 0; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-item {
  background: var(--bg-panel);
  padding: 28px 24px;
}
.service-item .num {
  font-size: 12px;
  font-weight: 800;
  color: var(--yellow-dark);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}
.service-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
  font-weight: 800;
}
.service-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Two column / why ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
}

.fact-panel {
  background: var(--black);
  color: #e9ebec;
  padding: 30px;
}
.fact-panel h3 { color: #fff; font-size: 18px; margin: 0 0 16px; }
.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #2c2f32;
  font-size: 14px;
}
.fact-row:last-child { border-bottom: none; }
.fact-row span.label { color: #9aa0a4; }
.fact-row span.val { font-weight: 700; color: var(--yellow); }

/* ---------- Quote tool ---------- */
.quote-shell {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}
.quote-form { padding: 36px; }
.quote-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}
.field select,
.field input,
.field textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 11px 12px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
}
.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow-dark);
}
.quote-form .submit-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-note { font-size: 12.5px; color: var(--text-faint); }

.quote-result {
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.quote-result h3 { margin: 0 0 4px; font-size: 16px; font-weight: 800; }
.quote-result .sub { font-size: 13px; color: var(--text-muted); margin: 0 0 20px; }
.range-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-strong);
  border-top: 3px solid var(--yellow);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}
.range-box .figure {
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
}
.range-box .unit { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.range-breakdown { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; font-size: 13px; }
.range-breakdown li { display: flex; justify-content: space-between; color: var(--text-muted); }
.range-breakdown li strong { color: var(--text); }
.disclaimer {
  font-size: 12px;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.status-pill {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 0 4px 10px;
  border-left: 3px solid var(--yellow);
  color: var(--text);
  margin-bottom: 12px;
}

/* ---------- City coverage ---------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-chip {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 14px 14px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.city-chip span.tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ---------- Landing pages ---------- */
.lp-hero {
  background: var(--black);
  color: #eef0f1;
  position: relative;
}
.lp-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 24px, transparent 24px 48px);
}
.lp-hero .wrap {
  display: block;
  padding: 56px 24px 48px;
}
.lp-hero .hero-tag {
  color: var(--yellow);
  border-left-color: var(--yellow);
}
.lp-hero h1 { color: #fff; max-width: 760px; }
.lp-hero p.lede { color: #b7bcbe; max-width: 640px; }
.breadcrumb {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--yellow-dark); }

.lane-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}
.lane-table th, .lane-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.lane-table th {
  background: var(--bg-alt);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}
.lane-table tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: var(--text);
}
.faq-q .icon {
  flex: none;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border-strong);
  position: relative;
}
.faq-q .icon::before, .faq-q .icon::after {
  content: "";
  position: absolute;
  background: var(--black);
}
.faq-q .icon::before { left: 5px; right: 5px; top: 9px; height: 1.5px; }
.faq-q .icon::after { top: 5px; bottom: 5px; left: 9px; width: 1.5px; transition: opacity .15s; }
.faq-item.open .faq-q .icon::after { opacity: 0; }
.faq-a {
  display: none;
  padding: 0 4px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 720px;
}
.faq-item.open .faq-a { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: #fff;
}
.cta-band .wrap {
  padding: 48px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 6px; font-size: 24px; }
.cta-band p { margin: 0; color: #b7bcbe; font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  padding: 26px;
}
.contact-card h3 { margin: 0 0 14px; font-size: 16px; }
.contact-line { display: flex; gap: 10px; font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: none; }
.contact-line .k { color: var(--text-muted); width: 110px; flex: none; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: #b7bcbe;
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #26292c;
}
.footer-grid h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-grid a { font-size: 13.5px; color: #b7bcbe; }
.footer-grid a:hover { color: var(--yellow); }
.footer-brand p { font-size: 13.5px; color: #8d9296; max-width: 280px; margin: 0; }
.footer-bottom {
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #6e7377;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .quote-shell { grid-template-columns: 1fr; }
  .quote-result { border-left: none; border-top: 1px solid var(--border); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  nav.main-nav {
    display: none;
  }
  .menu-toggle { display: flex; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 75px; left: 0; right: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 20px;
    gap: 0;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  nav.main-nav.open .nav-link {
    width: 100%;
    padding: 13px 0;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  nav.main-nav.open .nav-drop { width: 100%; }
  nav.main-nav.open .nav-drop-panel {
    position: static;
    display: none;
    border: none;
    border-top: none;
    box-shadow: none;
    padding: 0 0 6px 14px;
  }
  nav.main-nav.open .nav-drop.open .nav-drop-panel { display: block; }
  nav.main-nav.open .nav-drop-panel a { padding: 11px 0; border-left: none; border-bottom: 1px solid var(--border); }
  nav.main-nav.open .nav-phone { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--border); }
  nav.main-nav.open .nav-cta { margin: 14px 0 0; text-align: center; justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr !important; }
  .quote-form .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
