/* ==========================================================================
   The Traffic Planner — "Work Zone" design system (site-wide stylesheet)
   Source of truth: work-zone-handoff.md (extracted from the-traffic-planner.html
   + thank-you.html). Tokens, type scale, components, states, breakpoints and
   motion rules are implemented verbatim from that spec; roles the spec did not
   define for inner pages (page title block, nav, footer, prose) extend the same
   system and are marked EXT below.
   ========================================================================== */

:root {
  --asphalt:      #14161B;
  --asphalt-2:    #191C23;
  --card-bg:      #1B1F27;
  --card-border:  rgba(244,243,238,0.09);
  --line-white:   #F4F3EE;
  --text-muted:   rgba(244,243,238,0.66);
  --orange:       #FF6B1A;
  --orange-glow:  rgba(255,107,26,0.14);
  --radius:       8px;
  --container:    1200px;
  --sans: "Overpass", "Helvetica Neue", Arial, sans-serif;
  --mono: "Overpass Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --field-bg:     #101216;                      /* .quote-form fields (handoff) */
  --field-border: rgba(244,243,238,0.14);
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--line-white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--line-white); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--orange); color: var(--asphalt); }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--orange); color: var(--asphalt);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  padding: 10px 16px; border-radius: 0 0 var(--radius) 0; z-index: 100;
}
.skip-link:focus { left: 0; color: var(--asphalt); }

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

.section { padding: 120px 24px; }
.section-alt { background: var(--asphalt-2); }
.section-tight { padding: 72px 24px; }
.section > .container, .section-tight > .container { padding: 0; }

/* ---------- Type scale (handoff) ---------- */

h1, h2, h3, h4 { margin: 0 0 0.5em; }

h2, .h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h3, .h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }

.lead { font-size: 19px; color: var(--text-muted); max-width: 62ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
}

.muted { color: var(--text-muted); }

.mono-note {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* EXT — inner-page H1 role (between hero H1 and section H2 of the spec scale) */
.page-title {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 22ch;
}

/* ---------- Buttons (handoff) ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  padding: 16px 34px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease,
              box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary { background: var(--orange); color: var(--asphalt); }
.btn-primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px -8px rgba(255,107,26,0.55);
  color: var(--asphalt);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--line-white);
  border-color: rgba(244,243,238,0.28);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-secondary:active { transform: translateY(-1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header / nav (EXT) ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--asphalt);
  border-bottom: 1px solid var(--card-border);
}

.header-inner {
  display: flex; align-items: center; gap: 22px;
  min-height: 76px; padding-top: 10px; padding-bottom: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 17px; font-weight: 800; letter-spacing: 0.01em; }
.brand-text span {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
}
.brand:hover strong { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.site-nav a { text-decoration: none; font-size: 15.5px; font-weight: 600; color: var(--text-muted); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--orange); }
.site-nav .nav-cta {
  color: var(--asphalt); background: var(--orange);
  padding: 11px 20px 9px; border-radius: var(--radius); font-weight: 700;
}
.site-nav .nav-cta:hover { color: var(--asphalt); filter: brightness(1.08); }

.nav-dropdown { position: relative; }
.nav-dropbtn {
  font: inherit; font-size: 15.5px; font-weight: 600; color: var(--text-muted);
  background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-dropbtn::after {
  content: ""; width: 7px; height: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform 0.2s ease;
}
.nav-dropbtn:hover { color: var(--orange); }
.nav-dropdown.open .nav-dropbtn::after { transform: translateY(1px) rotate(-135deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 14px); left: -18px;
  min-width: 300px; padding: 10px 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.7);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 9px 18px; font-size: 15px; }

.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  color: var(--line-white); white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; stroke: var(--orange); }
.header-phone:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--line-white); background: none;
  border: 1px solid var(--field-border); border-radius: var(--radius);
  padding: 10px 14px 8px; cursor: pointer;
}
.nav-toggle:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Home hero (EXT) ---------- */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 56px;
  background: radial-gradient(760px 380px at 12% -10%, var(--orange-glow), transparent 70%);
}
.home-hero .page-title { max-width: 14ch; }
.cred-col {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none; margin: 26px 0 0; padding: 0;
}
.hero-actions { margin-top: 30px; }

/* ---------- Page header "title block" (EXT — TCP drawing vernacular) ---------- */

.title-block-wrap { padding: 64px 24px 0; position: relative; overflow: hidden; }

.title-block {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(640px 300px at 85% -20%, var(--orange-glow), transparent 70%),
    var(--asphalt-2);
  padding: 0 0 48px;
}

.tb-meta {
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 44px;
}
.tb-meta span {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 13px 20px 11px;
  border-right: 1px solid var(--card-border);
}
.tb-meta span:first-child { color: var(--orange); }
.tb-meta span:last-child { border-right: 0; }

.tb-body { padding: 0 48px; max-width: 900px; }
.tb-body .lead { margin-bottom: 30px; }

.tb-corner {
  position: absolute; width: 7px; height: 7px; background: var(--orange);
}
.tb-corner.tl { top: -4px; left: -4px; }
.tb-corner.br { bottom: -4px; right: -4px; }

/* Drawing strips live in tcp-sig.css now, next to the signature motion. */

/* ---------- Credentials strip (handoff .cred) ---------- */

.cred-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px 64px;
  list-style: none; margin: 0; padding: 0;
}
.cred {
  position: relative;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 17px;
}
.cred::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 7px; height: 7px; margin-top: -4px;
  background: var(--orange);
}

/* ---------- Stat strip (EXT) ---------- */

.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.stat {
  border-top: 2px solid var(--orange);
  padding-top: 18px;
}
.stat-number { display: block; font-size: 40px; font-weight: 800; line-height: 1.05; }
.stat-label {
  display: block; margin-top: 6px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
}
.stat p { margin: 10px 0 0; font-size: 15.5px; color: var(--text-muted); }

/* ---------- Cards (handoff .feature-card) ---------- */

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--line-white);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--orange); color: var(--line-white); }
.feature-card svg { width: 28px; height: 28px; stroke: var(--orange); fill: none; margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 15.5px; color: var(--text-muted); }
.feature-card .card-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange);
}

/* ---------- Process steps (handoff step pattern) ---------- */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 18px;
  border: 1.5px solid var(--orange); border-radius: var(--radius);
  font-family: var(--mono); font-size: 16px; font-weight: 700; color: var(--orange);
}
.step h3 { font-size: 22px; }
.step p { font-size: 15.5px; color: var(--text-muted); }

/* ---------- Spec list (EXT — drawing-legend style inclusion list) ---------- */

.spec-list { list-style: none; margin: 0; padding: 0; }
.spec-list li {
  position: relative; padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--card-border);
  font-size: 16.5px;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 7px; height: 7px; background: var(--orange);
}

/* ---------- Badges (EXT — mono chips) ---------- */

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.badge {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--field-border); border-radius: var(--radius);
  padding: 8px 12px 6px;
}

/* ---------- Panels & split layouts ---------- */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
}
.panel h3 { margin-bottom: 12px; }

/* ---------- Testimonials (EXT) ---------- */

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
}
.testimonial-quote { font-size: 16.5px; margin-bottom: 18px; }
.testimonial-author {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--text-muted); text-transform: uppercase;
}
.testimonial-author strong { color: var(--line-white); }

/* ---------- FAQ (details/summary as spec rows) ---------- */

.faq-list { border-top: 1px solid var(--card-border); }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-item summary {
  display: flex; align-items: baseline; gap: 18px;
  list-style: none; cursor: pointer;
  padding: 22px 44px 22px 2px;
  font-size: 19px; font-weight: 700;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: attr(data-q);
  font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--orange); flex: 0 0 auto;
  transform: translateY(-2px);
}
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 9px; height: 9px; margin-top: -7px;
  border-right: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(45deg); transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { color: var(--orange); }
.faq-answer { padding: 0 2px 24px 0; max-width: 70ch; color: var(--text-muted); }

/* ---------- Forms (handoff .quote-form) ---------- */

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  position: relative;
}
.form-card > .form-title { margin-bottom: 6px; }
.form-card > .form-sub { font-size: 15.5px; color: var(--text-muted); margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; margin-bottom: 7px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  color: var(--line-white);
  font-family: var(--sans); font-size: 16px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,243,238,0.38); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23FF6B1A' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-card .btn { width: 100%; text-align: center; }
.form-footnote {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 16px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Hazard divider (handoff — used once per page max) ---------- */

.hazard-divider {
  height: 8px;
  background: repeating-linear-gradient(-45deg,
    var(--orange) 0 16px, transparent 16px 36px);
  opacity: 0.55;
}

/* ---------- Closing CTA band ---------- */

.cta-band { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .lead { margin-left: auto; margin-right: auto; }

/* ---------- Prose (privacy / long-form, EXT) ---------- */

.prose { max-width: 720px; }
.prose h2 {
  font-size: 26px; letter-spacing: 0;
  margin: 44px 0 14px; padding-left: 18px; position: relative;
}
.prose h2::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 7px; height: 7px; background: var(--orange);
}
.prose p, .prose li { color: var(--text-muted); }
.prose ul { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--line-white); }
.prose a:hover { color: var(--orange); }

/* ---------- Footer (EXT) ---------- */

.site-footer { background: var(--asphalt-2); border-top: 1px solid var(--card-border); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-top: 72px; padding-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 48px; height: 48px; }
.footer-brand strong { font-size: 18px; font-weight: 800; }
.footer-grid p { font-size: 15.5px; color: var(--text-muted); max-width: 40ch; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; font-size: 15.5px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  border-top: 1px solid var(--card-border);
  padding-top: 26px; padding-bottom: 30px;
}
.footer-bottom p, .footer-bottom a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--text-muted); margin: 0; text-decoration: none;
}
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Mobile CTA bar ---------- */

.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20,22,27,0.96);
  border-top: 1px solid var(--card-border);
}
.mobile-cta-bar .btn { flex: 1; text-align: center; font-size: 16px; padding: 13px 10px 11px; }

/* ---------- Reveal on scroll (driven by ui.js: .reveal -> .in) ---------- */

html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

/* ---------- Ambient glow (EXT) ---------- */

.glow-spot {
  position: absolute; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 68%);
  animation: glow-float 16s ease-in-out infinite;
}
@keyframes glow-float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(24px, -30px); }
}

/* ---------- Reduced motion (handoff: kill all CSS animation) ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive (handoff: 900 / 580) ---------- */

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .site-nav a, .nav-dropbtn { font-size: 14.5px; }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .nav-toggle { display: inline-block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--asphalt-2);
    border-bottom: 1px solid var(--card-border);
    padding: 10px 24px 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .nav-dropbtn { font-size: 16px; padding: 12px 0; }
  .nav-dropdown-menu {
    position: static; display: none; min-width: 0;
    border: 0; border-left: 2px solid var(--orange);
    border-radius: 0; box-shadow: none; background: none;
    margin: 0 0 6px 4px; padding: 0 0 0 14px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .site-nav .nav-cta { text-align: center; margin-top: 10px; padding: 13px 20px 11px; }
  .header-phone { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
}

@media (max-width: 580px) {
  .section { padding: 88px 20px; }
  .section-tight { padding: 56px 20px; }
  .title-block-wrap { padding: 40px 20px 0; }
  .tb-body { padding: 0 24px; }
  .tb-meta span { padding: 11px 14px 9px; font-size: 10.5px; }
  .page-title { font-size: clamp(32px, 9vw, 44px); }
  h2, .h2 { font-size: clamp(30px, 8vw, 40px); }
  .card-grid, .card-grid-2, .stat-grid, .form-grid { grid-template-columns: 1fr; }
  .header-phone .phone-label { display: none; }
  .header-phone svg { width: 22px; height: 22px; }
  .brand-text span { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }            /* clear the fixed call bar */
  .btn { font-size: 17px; padding: 15px 26px 13px; }
  .faq-item summary { font-size: 17px; gap: 12px; }
}
