:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #18202a;
  --muted: #5f6b7a;
  --line: #dde3ea;
  --brand: #0f5dbb;
  --brand-dark: #0a468c;
  --alt: #eef4fb;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --max: 1120px;

  /* Global phone number — change this one variable to update everywhere */
  --phone: "1-888-488-7530";
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* URGENT BAR */
.urgent-bar {
  background: #b91c1c;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}
.urgent-link {
  color: white;
  text-decoration: underline;
  margin-left: 8px;
}
.urgent-link:hover {
  color: #fef2f2;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.narrow {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo:hover { text-decoration: none; }

.hero {
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.eyebrow {
  color: var(--brand);
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.8rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}
.section {
  padding: 56px 0;
}
.section-alt {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* CTA BAND */
.cta-band {
  background: var(--brand);
  padding: 56px 0;
}
.cta-band h2 {
  color: white;
}
.cta-band p {
  color: rgba(255,255,255,0.8) !important;
}
.cta-band .btn {
  background: white;
  color: var(--brand);
}
.cta-band .btn:hover {
  background: #f0f0f0;
}
.cta-band .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.stack { margin-bottom: 24px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 0;
}
.btn {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover {
  background: var(--brand-dark);
  text-decoration: none;
  color: white;
}
.btn-secondary {
  background: white;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-secondary:hover {
  background: var(--alt);
  color: var(--brand);
}
.btn-small {
  padding: 10px 14px;
  font-size: 0.85rem;
}

/* STEP NUMBERS */
.step-num {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* AREA PILLS */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.area-pill {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.trust-list,
.service-list {
  padding-left: 20px;
  line-height: 2;
}
.faq-item {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  background: white;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand);
  border-color: var(--brand);
}
.callout {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* THANK YOU PAGE */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 16px;
}

@media (max-width: 840px) {
  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    flex-direction: column;
  }
}
