:root {
  --primary-dark: #161616;
  --primary: #033f33;
  --primary-light: #f3f9ec;
  --primary-light-2: #eef3e8;
  --blue-50: #f0f7ff;
  --blue-100: #e0edfe;
  --blue-200: #b9dbfe;
  --blue-600: #0066c9;
  --blue-700: #0250a2;
  --blue-900: #0b3b6f;
  --blue-950: #07254a;
  --green-500: #497f64;
  --green-300: #a1cc9f;
  --text: #161616;
  --text-muted: #364441;
  --text-soft: #5d6c7b;
  --line: #d8e4de;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(7, 37, 74, 0.1);
  --shadow-md: 0 16px 36px rgba(7, 37, 74, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(224, 237, 254, 0.6), transparent 24%),
    radial-gradient(circle at top right, rgba(161, 204, 159, 0.18), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfb 52%, #f5f8f7 100%);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
strong,
.header-cta,
.main-cta,
.estimate-form button,
.closing-cta,
.mobile-cta a {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--white);
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid var(--blue-100);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(161, 204, 159, 0.32);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 2.55rem;
  width: auto;
}

.header-cta,
.main-cta,
.estimate-form button,
.closing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--blue-600);
  color: var(--white);
  border: 0;
  border-radius: 14px;
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1em;
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(0, 102, 201, 0.18);
  cursor: pointer;
}

.header-cta:hover,
.header-cta:focus-visible,
.main-cta:hover,
.main-cta:focus-visible,
.estimate-form button:hover,
.estimate-form button:focus-visible,
.closing-cta:hover,
.closing-cta:focus-visible {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.header-cta {
  min-width: 160px;
  padding: 1rem 1.4rem;
  text-transform: uppercase;
}

.hero-spotlight {
  background:
    radial-gradient(circle at top center, rgba(124, 191, 253, 0.16), transparent 24%),
    linear-gradient(145deg, var(--blue-950) 0%, var(--blue-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-spotlight::after {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(161, 204, 159, 0.1);
  filter: blur(20px);
}

.hero-spotlight-content {
  text-align: center;
  padding: 5rem 0 4.3rem;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  margin: 0;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid rgba(224, 237, 254, 0.9);
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-style: italic;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.spotlight-title {
  margin: 1.35rem 0 0;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.spotlight-title span {
  display: block;
  color: #dfeeff;
}

.spotlight-subcopy {
  margin: 1.2rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
}

.main-cta {
  margin-top: 2rem;
  padding: 1.15rem 2.1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  text-transform: uppercase;
}

.trust-points {
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.trust-points li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0.72rem 1rem;
}

.trust-points li span {
  color: #9fe0b0;
  font-weight: 900;
  margin-right: 0.22rem;
}

.stats-strip {
  margin-top: -2rem;
  position: relative;
  z-index: 3;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  text-align: center;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.stat {
  padding: 0.3rem 0.5rem;
}

.stat strong {
  display: block;
  color: var(--primary);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.02;
}

.stat p {
  margin: 0.32rem 0 0;
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
}

.overview {
  padding: 5rem 0 4.5rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 1.5rem;
  align-items: start;
}

.overview-copy {
  padding-top: 0.65rem;
}

.overview-copy h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(2.1rem, 4.8vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.overview-subcopy {
  margin: 1rem 0 1.5rem;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 42rem;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  position: relative;
  padding: 0.92rem 0.35rem 0.92rem 2.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--text);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 50%;
  width: 1.08rem;
  height: 1.08rem;
  margin-top: -0.54rem;
  border-radius: 999px;
  background: var(--primary);
}

.benefit-list li::after {
  content: "";
  position: absolute;
  left: 0.98rem;
  top: 50%;
  width: 0.38rem;
  height: 0.2rem;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: translateY(-55%) rotate(-45deg);
}

.call-cta {
  margin-top: 1.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: var(--primary);
  border: 1px solid var(--green-300);
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.45rem;
  background: var(--primary-light);
  box-shadow: 0 8px 20px rgba(3, 63, 51, 0.08);
}

.phone-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.lead-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.warranty-pill {
  margin: 0 0 1rem;
  background: var(--primary-light);
  border: 1px solid var(--green-300);
  border-radius: 14px;
  color: var(--primary);
  font-size: 0.97rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
}

.lead-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.lead-note {
  margin: 0.58rem 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.estimate-form {
  display: grid;
  gap: 0.74rem;
}

.estimate-form label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fcfefd;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0.82rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(0, 102, 201, 0.12);
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form button {
  margin-top: 0.35rem;
  padding: 1.05rem 1.2rem;
  text-transform: uppercase;
}

.privacy-note {
  margin: 0.25rem 0 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.section {
  padding: clamp(3.8rem, 7vw, 6rem) 0;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-sub {
  margin: 0.95rem auto 0;
  text-align: center;
  max-width: 45rem;
  font-size: 1.02rem;
  line-height: 1.65;
}

.why {
  background: linear-gradient(180deg, var(--primary) 0%, #0f4c3e 100%);
  color: var(--white);
}

.why .section-sub {
  color: rgba(255, 255, 255, 0.78);
}

.why-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(161, 204, 159, 0.34);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 1.6rem 1.2rem;
  backdrop-filter: blur(8px);
}

.why-icon {
  margin: 0;
  font-size: 2rem;
}

.why-card h3 {
  margin: 0.72rem 0 0.45rem;
  font-size: 1.08rem;
}

.why-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.process {
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.steps-top {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  text-align: center;
  position: relative;
  padding: 1.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.step:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -0.8rem;
  top: 2.7rem;
  color: rgba(73, 127, 100, 0.5);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-num {
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 102, 201, 0.16);
}

.step h3 {
  margin: 1rem 0 0.42rem;
  font-size: 1.18rem;
  color: var(--primary);
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.step-bottom {
  margin: 1.25rem auto 0;
  max-width: 29rem;
}

.step-bottom::after {
  content: none;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
}

.stars {
  margin: 0;
  font-size: 1.3rem;
  color: var(--blue-600);
  letter-spacing: 0.05em;
}

.testimonial-card blockquote {
  margin: 0.8rem 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  font-style: italic;
}

.author {
  margin: 0.92rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--primary);
}

.location {
  margin: 0.12rem 0 0;
  color: var(--text-soft);
}

.areas {
  background: var(--primary-light);
  border-top: 1px solid rgba(161, 204, 159, 0.34);
  border-bottom: 1px solid rgba(161, 204, 159, 0.34);
}

.area-pills {
  margin: 1.7rem auto 0;
  max-width: 58rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.area-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.3rem;
  border: 1px solid var(--green-300);
  border-radius: 999px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0.55rem 1.05rem;
}

.closing {
  background: linear-gradient(135deg, var(--blue-600) 0%, #0c84eb 100%);
  color: var(--white);
}

.closing-wrap {
  text-align: center;
}

.closing h2 {
  color: var(--white);
}

.closing p {
  margin: 0.95rem auto 0;
  max-width: 45rem;
  font-size: 1.16rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.closing-cta {
  margin-top: 1.7rem;
  min-width: 320px;
  padding: 1rem 1.4rem;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  text-transform: uppercase;
}

.closing-cta:hover,
.closing-cta:focus-visible {
  background: var(--primary-light);
  color: var(--primary);
}

.site-footer {
  background: var(--white);
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 calc(1.2rem + env(safe-area-inset-bottom));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  height: 2.6rem;
  width: auto;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: none;
  background: var(--blue-600);
  box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.16);
}

.mobile-cta a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom));
  text-transform: uppercase;
}

.thanks-hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top center, rgba(124, 191, 253, 0.16), transparent 24%),
    linear-gradient(145deg, var(--blue-950) 0%, var(--blue-900) 100%);
  color: var(--white);
  text-align: center;
}

.thanks-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.7rem;
  max-width: 560px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.thanks-card h1 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.thanks-card p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.thanks-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 14px;
  font-weight: 700;
  padding: 0.9rem 1.45rem;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-copy {
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .why-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-top {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .step:not(:last-child)::after {
    content: none;
  }

  .stats-strip {
    margin-top: 1.5rem;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 2.1rem;
  }

  .header-cta {
    min-width: 138px;
    padding: 0.88rem 1rem;
    font-size: 0.9rem;
  }

  .hero-spotlight-content {
    padding: 4rem 0 3.2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .spotlight-title {
    font-size: 2.15rem;
  }

  .spotlight-subcopy {
    font-size: 1rem;
  }

  .main-cta {
    width: 100%;
  }

  .trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    justify-items: stretch;
    max-width: 18rem;
  }

  .trust-points li {
    white-space: normal;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
    padding: 1rem;
  }

  .overview {
    padding-top: 3.5rem;
  }

  .lead-card h2 {
    font-size: 2rem;
  }

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

  .closing p {
    font-size: 1.02rem;
  }

  .closing-cta {
    min-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 4.4rem;
  }

  .thanks-hero {
    min-height: calc(100vh - 72px);
  }

  .thanks-card {
    padding: 2rem 1.4rem;
  }
}
