/* ============================================================
   Apex Comfort — HVAC demo template v1
   Brand tokens are at the top — change these to reskin.
   ============================================================ */

:root {
  /* Brand */
  --brand-700: #082c6b;
  --brand-600: #0b3d91;
  --brand-500: #1a55c0;
  --brand-50:  #eef3fb;
  --accent:    #ff6a13;        /* urgency / CTA */
  --accent-2:  #ffb000;
  --success:   #1a8754;

  /* Neutrals */
  --ink:       #0e1726;
  --ink-2:     #2b3654;
  --ink-3:     #5b6781;
  --line:      #e3e8f1;
  --bg:        #ffffff;
  --bg-alt:    #f6f8fc;
  --bg-dark:   #0e1726;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;

  /* Layout */
  --header-h: 72px;
  --container: 1180px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(15,23,42,.05), 0 1px 3px rgba(15,23,42,.06);
  --sh-2: 0 4px 14px rgba(15,23,42,.07), 0 12px 32px rgba(15,23,42,.06);
  --sh-3: 0 12px 30px rgba(11,61,145,.18);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-700); }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.18; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.018em; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-2); }

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

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 .8em;
}

.hl { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-600);
  color: #fff;
  box-shadow: var(--sh-3);
}
.btn-primary:hover { background: var(--brand-700); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--brand-700);
  border: 1.5px solid var(--brand-600);
}
.btn-secondary:hover { background: var(--brand-50); }
.btn-call {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,106,19,.32);
}
.btn-call:hover { background: #e85a06; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink-3);
}
.btn-ghost:hover { color: var(--ink); }

.link-arrow {
  font-weight: 700;
  color: var(--brand-600);
  display: inline-block;
  margin-top: .25em;
}
.link-arrow:hover { color: var(--brand-700); }

/* ===== Top urgency strip ===== */
.urgency-strip {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: .88rem;
  padding: 9px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55em;
  flex-wrap: wrap;
}
.urgency-strip .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,176,0,.7);
  animation: pulse 2s infinite;
}
.urgency-strip .sep { opacity: .4; }
.urgency-strip strong { color: var(--accent-2); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,176,0,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,176,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,176,0,0); }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--brand-600);
  color: #fff;
  border-radius: var(--r-sm);
  flex: none;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name strong {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand-name em {
  font-style: normal;
  font-size: .72rem;
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.primary-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.primary-nav a {
  color: var(--ink-2);
  font-weight: 600;
  font-size: .95rem;
}
.primary-nav a:hover { color: var(--brand-600); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}
.phone-link:hover { color: var(--brand-600); }
.phone-link svg { color: var(--accent); }

.menu-toggle { display: none; padding: 8px; color: var(--ink); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 22px 22px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.mobile-menu a {
  padding: 14px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
  font-weight: 600;
}
.mobile-menu a:hover { background: var(--bg-alt); }
.mobile-menu .btn { margin-top: 8px; min-height: 52px; }
.mobile-menu-call {
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
}

/* ===== Hero ===== */
.hero {
  padding: clamp(48px, 6vw, 84px) 0 clamp(48px, 5vw, 80px);
  background:
    radial-gradient(1100px 480px at 88% -10%, rgba(255,176,0,.18), transparent 60%),
    radial-gradient(900px 460px at -10% 110%, rgba(11,61,145,.10), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fd 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-copy h1 {
  margin-top: .15em;
}
.hero-copy .lede {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--ink-2);
  max-width: 56ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}
.hero-ctas .btn { padding: 16px 24px; font-size: 1.02rem; }
.hero-microproof {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: .94rem;
  color: var(--ink-2);
  box-shadow: var(--sh-1);
}
.hero-microproof .stars { color: var(--accent-2); letter-spacing: 2px; }
.hero-microproof strong { color: var(--ink); }

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--sh-2);
}
.hero-card-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-card-icon {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--brand-50);
  border-radius: var(--r-sm);
  flex: none;
}
.hero-card-row strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.hero-card-row p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-3);
}

/* ===== Trust bar ===== */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 4px 8px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  font-size: .92rem;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
}
.trust-item span {
  font-size: .8rem;
  color: var(--ink-3);
}

/* ===== Sections ===== */
.section {
  padding: clamp(56px, 6vw, 96px) 0;
}
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head h2 { margin-bottom: .35em; }
.section-head .section-lede {
  font-size: 1.08rem;
  color: var(--ink-2);
}

/* ===== Services grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: var(--brand-500);
}
.service-icon {
  font-size: 1.8rem;
  width: 52px; height: 52px;
  background: var(--brand-50);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 6px; }
.service-card p { font-size: .96rem; }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  background: var(--brand-600);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
  border-radius: 50%;
  border: 2px solid var(--brand-600);
  box-sizing: border-box;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--sh-1);
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--brand-600);
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -.02em;
}
.stat span { color: var(--ink-3); font-size: .92rem; }

/* ===== Quote form ===== */
.section-quote {
  background:
    radial-gradient(800px 320px at 0% 0%, rgba(11,61,145,.10), transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, #ffffff 100%);
}
.quote-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.quote-copy h2 { margin-top: .15em; }
.quote-copy p { font-size: 1.05rem; }
.quote-call {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
}
.quote-or { color: var(--ink-3); font-size: .94rem; }

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--sh-2);
  position: relative;
}
.quote-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.quote-progress .dot {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 4px;
  transition: background .25s ease;
}
.quote-progress .dot.active { background: var(--brand-600); }

.step { border: 0; padding: 0; margin: 0; display: none; }
.step.active { display: block; }
.step legend {
  display: block;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.choice-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-2);
  font-size: .95rem;
  transition: all .15s ease;
  min-height: 64px;
}
.choice-grid label:hover {
  border-color: var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-700);
}
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid input:checked + span {
  color: var(--brand-700);
}
.choice-grid label:has(input:checked) {
  border-color: var(--brand-600);
  background: var(--brand-50);
  box-shadow: 0 0 0 3px rgba(11,61,145,.10);
}

.field {
  display: block;
  margin-bottom: 14px;
}
.field span {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field span em { color: var(--ink-3); font-style: normal; font-weight: 500; }
.field input,
.field select {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 14px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--ink);
  min-height: 50px;
}
.field input:focus,
.field select:focus {
  outline: 2px solid var(--brand-500);
  outline-offset: 1px;
  border-color: var(--brand-600);
}

.fineprint { font-size: .82rem; color: var(--ink-3); margin: 4px 0 0; }

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.step-nav .btn { min-width: 140px; }

.form-success {
  text-align: center;
  padding: 24px 8px 8px;
}
.form-success h3 { color: var(--brand-700); margin-bottom: .4em; }

/* ===== City grid ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.city-grid a {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
  transition: all .15s ease;
}
.city-grid a:hover {
  background: var(--brand-50);
  border-color: var(--brand-500);
  color: var(--brand-700);
  transform: translateY(-1px);
}

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-1);
}
.review-stars {
  color: var(--accent-2);
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.review-card p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.review-card footer {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--ink-3);
}
.review-card footer strong { color: var(--ink); }

/* ===== Promo cards (financing + membership) ===== */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.card-promo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-1);
}
.card-promo h2 { font-size: 1.85rem; }
.card-promo .check-list { margin-bottom: 22px; }
.card-promo-dark {
  background: linear-gradient(160deg, var(--brand-700), var(--brand-600));
  color: #fff;
  border: 0;
}
.card-promo-dark h2,
.card-promo-dark .eyebrow { color: #fff; }
.card-promo-dark .eyebrow { color: var(--accent-2); }
.card-promo-dark p,
.card-promo-dark .check-list li { color: rgba(255,255,255,.92); }
.card-promo-dark .check-list li::before {
  background: #fff;
  border-color: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b3d91' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
}
.card-promo-dark .btn-primary {
  background: var(--accent);
  color: #fff;
}
.card-promo-dark .btn-primary:hover { background: #e85a06; }

.finance-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 22px;
}
.finance-partners li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--bg-alt);
}

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 10px;
  box-shadow: var(--sh-1);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--brand-600);
  font-weight: 600;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-2);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.84);
  padding: 60px 0 24px;
  margin-top: 0;
}
.site-footer a { color: rgba(255,255,255,.84); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand .brand { color: #fff; margin-bottom: 14px; display: inline-flex; }
.footer-brand .brand-name strong { color: #fff; }
.footer-brand .brand-name em { color: rgba(255,255,255,.6); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-col h4 {
  color: #fff;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 8px; font-size: .94rem; }
.footer-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff !important;
  display: block;
  margin-bottom: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Mobile sticky call bar ===== */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  background: var(--accent);
  color: #fff !important;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 1.02rem;
  box-shadow: 0 12px 28px rgba(255,106,19,.42), 0 2px 8px rgba(0,0,0,.18);
  text-decoration: none;
  min-height: 56px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .trust-item:nth-child(3n) { border-right: 0; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-grid  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .city-grid     { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid   { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .header-book { display: none; }
  .menu-toggle { display: inline-flex; }
  .phone-link .phone-number { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-card { order: 2; }

  .why-grid  { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .two-col-section { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }

  .mobile-call-bar { display: flex; }
  body { padding-bottom: 84px; } /* room for sticky call bar */
}

@media (max-width: 560px) {
  .urgency-strip { font-size: .8rem; }
  .urgency-strip .sep { display: none; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .trust-item { border-right: 0; padding: 8px; }
  .city-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 16px; }
  .stat strong { font-size: 1.6rem; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== Hidden utility ===== */
[hidden] { display: none !important; }

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
