:root {
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-alt: #f1f5f9;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-muted: #64748b;
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent-gold: #d97706;
  --accent-green: #16a34a;
  --border: #e2e8f0;
  --border-dark: #334155;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

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

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}

a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--primary);
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Site Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand span {
  color: var(--primary-dark);
}
.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-call a {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
}
.header-call .lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 40px 0 50px;
  border-bottom: 1px solid var(--border);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 40px;
  align-items: start;
}
.hero h1 {
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.hero .subline {
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero-media {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  background: var(--border);
  aspect-ratio: 16 / 9;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Buttons */
.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--accent-gold);
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
  text-align: center;
}
.cta-btn:hover {
  background: #b45309;
  transform: translateY(-1px);
}
.cta-btn .num {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.cta-btn .open {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 600;
}

/* Lead Form */
.lead-form {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.lead-form h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink);
}
.lead-form .fs {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.4;
}
.lead-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 14px;
  background: var(--bg-page);
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid var(--primary);
  background: #ffffff;
}
.lead-form textarea {
  height: 80px;
  resize: vertical;
}
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.consent-box input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.consent-box label {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--ink-soft);
  font-weight: 400;
}
.consent-box label a {
  color: var(--primary-dark);
}
.lead-form button[type="submit"] {
  width: 100%;
  background: var(--primary-dark);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lead-form button[type="submit"]:hover {
  background: var(--primary);
}
.form-status {
  margin-top: 10px;
  font-size: 0.85rem;
  text-align: center;
}

/* Post-submit confirmation state (replaces the form) */
.form-confirmation {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent-green);
  box-shadow: var(--shadow-lg);
}
.form-confirmation h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ink);
}
.form-confirmation p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}
.form-confirmation .confirm-landline {
  font-size: 0.9rem;
  color: var(--ink);
}
.form-confirmation .confirm-or {
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.form-confirmation .confirm-or a {
  color: var(--primary-dark);
  font-weight: 800;
}
/* Prose & Content */
.prose {
  padding: 48px 0;
}
.prose h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 36px 0 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--ink);
}
.prose p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.65;
}
.prose ul, .prose ol {
  margin: 0 0 24px 24px;
  color: var(--ink-soft);
}
.prose li {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.body-img {
  width: 100%;
  max-width: 820px;
  height: auto;
  border-radius: var(--radius);
  margin: 28px 0;
  box-shadow: var(--shadow);
  display: block;
}

/* Symptoms Block */
.symptoms {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent-gold);
  border-radius: var(--radius);
  padding: 32px;
  margin: 40px 0;
  box-shadow: var(--shadow);
}
.symptoms h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--ink);
}
.symptoms ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.symptoms li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-left: 24px;
}
.symptoms li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* Inline Call strip */
.call-inline {
  background: var(--primary-light);
  border: 1px solid #bae6fd;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin: 32px 0;
}
.call-inline a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
}
.call-inline a:hover {
  text-decoration: underline;
}

/* Cost Table */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 12px;
  background: #ffffff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cost-table th, .cost-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.cost-table th {
  background: var(--bg-alt);
  font-weight: 800;
  color: var(--ink);
}
.cost-table td:last-child {
  font-weight: 700;
  color: var(--primary-dark);
}
.cost-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

/* How It Works */
.how {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 48px 32px;
  border-radius: var(--radius);
  margin: 48px 0;
}
.how h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step .n {
  background: var(--primary);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}
.step p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* Area & Service Strips */
.area-strip, .services-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.area-strip h2, .services-strip h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.area-links, .services-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-links a, .services-links a {
  display: inline-block;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 0.15s ease;
}
.area-links a:hover, .services-links a:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

/* Final CTA */
.final-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  margin: 48px 0;
}
.final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.final-cta p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 24px;
}
.final-cta .big {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  text-decoration: none;
  margin-bottom: 24px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 60px 0 40px;
  margin-top: auto;
  border-top: 1px solid var(--border-dark);
}
.site-footer a {
  color: #cbd5e1;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .disc {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-dark);
}
.fgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.fcol h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.flinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.flinks a {
  font-size: 0.875rem;
  text-decoration: none;
}
.flinks a:hover {
  text-decoration: underline;
}

/* Sticky Mobile Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-gold);
  padding: 12px 16px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  justify-content: center;
}
.sticky-bar a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-bar .s {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
}
@media (max-width: 600px) {
  .sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 64px;
  }
  .site-header {
    height: 64px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .header-call a {
    font-size: 1.15rem;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .symptoms ul {
    grid-template-columns: 1fr;
  }
  .final-cta .big {
    font-size: 1.65rem;
  }
}
