/* ================================================================
   GOOD2GO HVAC LANDING PAGE — CSS
   Mobile-first. Brand colors: Navy, Orange, Teal
   ================================================================ */

/* ── Custom Properties ─────────────────────────────────────────── */
:root {
  --navy:        #0C1059;
  --navy-dark:   #080c40;
  --navy-mid:    #0C2B6B;
  --orange:      #F27127;
  --orange-dark: #d4601a;
  --orange-light:#FFF0E5;
  --teal:        #04BFBF;
  --teal-dark:   #039999;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-gray:  #EEF0F5;
  --mid-gray:    #6B7280;
  --dark-gray:   #1F2937;
  --red:         #DC2626;
  --success:     #16a34a;

  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Barlow Condensed', var(--font-body);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --shadow-sm:   0 1px 3px rgba(12,16,89,.08), 0 1px 2px rgba(12,16,89,.06);
  --shadow:      0 4px 16px rgba(12,16,89,.12);
  --shadow-lg:   0 10px 40px rgba(12,16,89,.18);
  --shadow-card: 0 2px 12px rgba(12,16,89,.1);

  --transition:  0.22s ease;
  --header-h:    68px;
  --header-h-mobile: 100px;
  --mobile-bar-h:64px;
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--header-h-mobile);
  padding-bottom: var(--mobile-bar-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
address { font-style: normal; }
blockquote { margin: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout Utilities ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padded { padding: 60px 0; }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-orange { color: var(--orange); }
.text-light-muted { color: rgba(255,255,255,.75); }
.bg-light { background: var(--off-white); }
.bg-navy  { background: var(--navy); }
.desktop-only { display: none; }

/* ── Typography ─────────────────────────────────────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

.section-subhead {
  font-size: 1.05rem;
  color: var(--mid-gray);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header { margin-bottom: 40px; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-lg  { padding: 15px 30px; font-size: 1.05rem; }
.btn-sm  { padding: 9px 18px;  font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover, .btn-orange:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,113,39,.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--mid-gray);
  border-color: var(--light-gray);
  font-weight: 600;
}
.btn-ghost:hover { background: var(--light-gray); color: var(--dark-gray); }

/* Focus ring for accessibility */
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ================================================================
   STICKY HEADER
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--header-h-mobile);
  box-shadow: 0 2px 16px rgba(8,12,64,.35);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 10px 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.header-logo img { height: 44px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.header-call {
  font-size: 0.78rem;
  padding: 7px 12px;
}
.header-cta {
  font-size: 0.78rem;
  padding: 7px 14px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  position: relative;
  background: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(12,16,89,.92) 0%, rgba(12,43,107,.85) 60%, rgba(4,191,191,.15) 100%),
    url('https://sspark.genspark.ai/cfimages?u1=TBH1nPeqB4mUwXVUa4Ip3r2C1DQAssX29kCNoGoVi3%2FLIf1G8TIbAiakWDDi06Np%2FKnhmssmrQ%2BRsxOfmFtfVwoTg2kM1kHGjjbhGv%2BT4cIBi7l%2FrR%2FddNUnNoSrkJrl5Yh3jA%3D%3D&u2=92n4v5r1X8IPndzX&width=2560');
  background-size: cover;
  background-position: center 30%;
  padding: 24px 0 calc(var(--mobile-bar-h) + 40px);
  overflow: visible;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

@media (max-width: 639px) {
  .hero-section::after { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(4,191,191,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero-subhead {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 16px;
  line-height: 1.55;
}

/* Trust items stacked on desktop */
@media (min-width: 640px) {
  .hero-subhead {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .trust-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .trust-item {
    font-size: 1rem;
  }
  .trust-item i {
    font-size: 1.05rem;
  }
}

/* Trust Row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item i {
  color: var(--teal);
  font-size: 0.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================================================================
   LEAD FORM CARD
   ================================================================ */
.lead-form-wrapper {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.form-header {
  background: var(--navy);
  padding: 20px 24px 16px;
  text-align: center;
}

.form-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.form-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 0.875rem;
  margin-top: 4px;
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 0;
  gap: 8px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid-gray);
}

.progress-step.active { color: var(--navy); }
.progress-step.completed { color: var(--success); }

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--light-gray);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all var(--transition);
}

.progress-step.active .step-num  { background: var(--orange); color: var(--white); }
.progress-step.completed .step-num { background: var(--success); color: var(--white); }

.progress-divider {
  flex: 1;
  height: 2px;
  background: var(--light-gray);
  max-width: 60px;
  border-radius: 2px;
}

/* Form Internals */
.lead-form {
  padding: 14px 12px 18px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.form-step { display: none; border: none; padding: 0; min-width: 0; }
.form-step--active { display: block; }

.form-group {
  margin-bottom: 16px;
  min-width: 0;
  box-sizing: border-box;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-width: 0;
}

.field-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.required { color: var(--red); }

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"],
.lead-form textarea,
.lead-form select {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-gray);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.lead-form textarea { resize: vertical; min-height: 80px; }

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,113,39,.15);
}

.lead-form input.invalid,
.lead-form select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.field-error {
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 4px;
  min-height: 1em;
  font-weight: 600;
}

.field-hint {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: 3px;
  display: block;
}

/* Service Selection Chips */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  width: 100%;
}

.service-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  min-width: 0;
  word-break: break-word;
  line-height: 1.3;
  width: 100%;
}

.service-chip:hover {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange-dark);
}

.service-chip.selected {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(242,113,39,.3);
}

.service-chip i { font-size: 0.9rem; flex-shrink: 0; }

/* SMS Consent */
.consent-group { margin-top: 4px; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--orange);
}

.consent-text {
  font-size: 0.72rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

.consent-text a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(12,16,89,.3);
}
.consent-text a:hover { color: var(--orange); }

/* Step Navigation */
.form-step-nav {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  margin-top: 8px;
}

.form-step-nav .btn-ghost {
  width: 100%;
  justify-content: center;
}
.form-step-nav .btn-orange {
  width: 100%;
  justify-content: center;
}

/* Submit Button Loading State */
.btn-loading { display: none; }
.btn[data-submitting="true"] .btn-text { display: none; }
.btn[data-submitting="true"] .btn-loading { display: inline-flex; align-items: center; gap: 7px; }

.form-fine-print {
  font-size: 0.72rem;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-fine-print i { color: var(--teal); }

/* ================================================================
   OFFER SECTION
   ================================================================ */
.offer-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 28px 0;
}

.offer-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.offer-flame {
  font-size: 2.5rem;
  color: var(--orange);
  animation: flicker 2.4s ease-in-out infinite alternate;
}

@keyframes flicker {
  0%   { opacity: 1;    transform: scale(1) rotate(-2deg); }
  50%  { opacity: 0.85; transform: scale(1.06) rotate(1deg); }
  100% { opacity: 1;    transform: scale(1) rotate(-1deg); }
}

.offer-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.offer-divider {
  color: var(--orange);
  margin: 0 8px;
}

.offer-terms {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  max-width: 600px;
  line-height: 1.55;
  margin-top: 6px;
}

/* ================================================================
   PROBLEMS SECTION
   ================================================================ */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 36px;
}

.problem-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 13px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.problem-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}

.problem-icon.orange { background: var(--orange-light); color: var(--orange); }

.problem-card p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  line-height: 1.35;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid #E5E7EB;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.service-card-icon.teal   { background: rgba(4,191,191,.12); color: var(--teal-dark); }
.service-card-icon.orange { background: var(--orange-light); color: var(--orange); }
.service-card-icon.red    { background: rgba(220,38,38,.1);  color: var(--red); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
  flex: 1;
}

.service-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
  transition: color var(--transition);
}
.service-card-link:hover { color: var(--orange-dark); }

.service-card--featured {
  border-color: var(--orange);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, rgba(242,113,39,.04) 100%);
}

.service-card--featured .service-card-icon {
  background: var(--orange);
  color: var(--white);
}

.service-card--emergency {
  border-color: rgba(220,38,38,.2);
  background: linear-gradient(135deg, #fff 0%, rgba(220,38,38,.03) 100%);
}

.emergency-link { color: var(--red) !important; }
.emergency-link:hover { color: #b91c1c !important; }

/* ================================================================
   WHY GOOD2GO SECTION
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.why-icon {
  width: 46px; height: 46px;
  background: rgba(242,113,39,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.tagline-banner {
  text-align: center;
  margin: 10px 0 32px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.tagline-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* ================================================================
   HOW IT WORKS SECTION
   ================================================================ */
.steps-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.step-connector {
  display: none;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid #E5E7EB;
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(242,113,39,.4);
}

.step-icon {
  font-size: 2rem;
  color: var(--teal);
  margin: 8px 0 12px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ================================================================
   REVIEWS SECTION
   ================================================================ */
.review-source-note {
  font-style: italic;
  font-size: 0.875rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .review-placeholder styles removed — real reviews in use */

.review-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }

.review-text p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.65;
  font-style: italic;
}

.review-author strong { font-size: 0.875rem; color: var(--navy); }
.review-location { font-size: 0.75rem; color: var(--mid-gray); margin-left: 6px; }

.review-source {
  font-size: 0.72rem;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.review-source .fa-google { color: #4285F4; }

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.google-reviews-link:hover { color: var(--orange); }

/* ================================================================
   SERVICE AREA SECTION
   ================================================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  transition: background var(--transition);
}

.area-card:hover { background: rgba(255,255,255,.15); }

.area-card i { color: var(--orange); font-size: 0.9rem; }

/* Map */
.map-wrapper { margin-bottom: 32px; }

.map-placeholder {
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: rgba(255,255,255,.6);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--teal);
  margin-bottom: 12px;
}

.map-placeholder p { font-size: 0.875rem; line-height: 1.6; }

/* ZIP Checker */
.zip-checker { padding-top: 8px; }

.zip-checker-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.zip-checker-form {
  display: flex;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.zip-checker-form input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.zip-checker-form input::placeholder { color: rgba(255,255,255,.45); }
.zip-checker-form input:focus { outline: none; border-color: var(--orange); }

.zip-result {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.4em;
}
.zip-result.found    { color: var(--teal); }
.zip-result.not-found{ color: rgba(255,120,120,.9); }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-container { max-width: 780px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question[aria-expanded="true"] {
  background: var(--navy);
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--orange);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}

.faq-answer.open {
  max-height: 600px;
  padding: 14px 20px 18px;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.faq-answer a { color: var(--orange); font-weight: 600; }

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.final-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.final-cta-text { text-align: center; }

.phone-prominent {
  margin-top: 20px;
  font-size: 1.1rem;
  border-width: 2px;
}

.final-form-wrapper .form-title { font-size: 1.3rem; }

/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand img { margin-bottom: 16px; }

.footer-address {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}
.footer-address a { color: var(--orange); }
.footer-address a:hover { color: var(--orange-light); }

.footer-tagline {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  font-style: italic;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-phone:hover { color: var(--orange); }

.footer-cta-btn { display: inline-flex; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-license, .footer-copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  margin-bottom: 6px;
}

.footer-license em { color: rgba(255,200,100,.65); }

/* ================================================================
   MOBILE STICKY BOTTOM BAR
   ================================================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  height: var(--mobile-bar-h);
  box-shadow: 0 -3px 16px rgba(0,0,0,.18);
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: filter var(--transition);
}

.mobile-bar-btn i { font-size: 1.2rem; }

.mobile-bar-call {
  background: var(--navy);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.15);
}
.mobile-bar-call:hover { filter: brightness(1.2); color: var(--white); }

.mobile-bar-request {
  background: var(--orange);
  color: var(--white);
}
.mobile-bar-request:hover { filter: brightness(1.1); color: var(--white); }

/* ================================================================
   SCROLLED HEADER STATE
   ================================================================ */
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(8,12,64,.45);
}

/* ================================================================
   TABLET — min-width: 640px
   ================================================================ */
@media (min-width: 640px) {
  body {
    padding-top: var(--header-h);
    padding-bottom: 0;
  }

  .mobile-sticky-bar { display: none; }
  .desktop-only { display: flex; }

  .site-header { height: var(--header-h); }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    gap: 0;
  }

  .header-logo img { height: 46px; }

  .header-nav {
    width: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .header-call { font-size: 0.85rem; padding: 9px 14px; }
  .header-cta  { font-size: 0.875rem; padding: 10px 18px; }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .lead-form { padding: 20px 20px 24px; }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-text { flex: 1; max-width: 560px; }

  .lead-form-wrapper { width: 380px; max-width: 100%; flex-shrink: 0; box-sizing: border-box; }

  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .area-grid { grid-template-columns: repeat(3, 1fr); }

  .final-cta-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .final-cta-text { flex: 1; text-align: left; padding-right: 24px; }
  .final-form-wrapper { width: 380px; max-width: 100%; flex-shrink: 0; box-sizing: border-box; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }

  .offer-banner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .offer-content { flex: 1; }

  .steps-row {
    flex-direction: row;
    align-items: flex-start;
  }
  .step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--orange);
    font-size: 1.2rem;
  }
  .step-card { flex: 1; }
}

/* ================================================================
   DESKTOP — min-width: 900px
   ================================================================ */
@media (min-width: 900px) {
  .hero-section { padding: 48px 0 64px; }

  .hero-headline { font-size: clamp(2.6rem, 3.8vw, 3.6rem); }

  .hero-subhead {
    font-size: 1.2rem;
    max-width: 560px;
    margin-bottom: 24px;
  }

  .trust-row { gap: 14px; margin-bottom: 24px; }

  .trust-item {
    font-size: 1.1rem;
  }

  .trust-item i {
    font-size: 1.15rem;
  }

  .lead-form-wrapper { width: 420px; max-width: 100%; box-sizing: border-box; }

  .problems-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: repeat(3, 1fr); }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .area-grid { grid-template-columns: repeat(6, 1fr); }

  .section-padded { padding: 80px 0; }

  .header-call { font-size: 0.9rem; padding: 10px 20px; }
  .header-cta  { font-size: 0.9rem; padding: 10px 22px; }
}

/* ================================================================
   PRINT — basic cleanup
   ================================================================ */
@media print {
  .site-header, .mobile-sticky-bar, .offer-section { display: none; }
  body { padding: 0; color: #000; background: #fff; }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
