:root {
  --green: #57b33e;
  --green-2: #69c84c;
  --green-dark: #255629;
  --green-darker: #1d4722;
  --charcoal: #1e2328;
  --text: #1f2933;
  --muted: #6b7280;
  --bg: #f7f6f1;
  --white: #ffffff;
  --border: rgba(22, 31, 25, 0.08);
  --shadow: 0 24px 60px rgba(21, 36, 23, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  max-width: 840px;
}

.section-heading h2,
.why-copy h2,
.closing-cta h2,
.estimate-card h2,
.seo-grid h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-heading p,
.hero-copy p,
.why-copy p,
.estimate-card p,
.closing-cta p,
.seo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker,
.eyebrow,
.estimate-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
  text-transform: uppercase;
}

.topbar {
  background: linear-gradient(90deg, var(--green-darker), var(--green-dark));
  color: rgba(255,255,255,0.94);
  font-size: 0.9rem;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 31, 25, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 70px;
}

.logo {
  width: 178px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-weight: 600;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-weight: 700;
}

.header-phone small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.phone-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(87, 179, 62, 0.12);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--charcoal);
  margin: 5px 0;
}

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: linear-gradient(90deg, rgba(18, 29, 22, 0.84) 0%, rgba(18, 29, 22, 0.72) 38%, rgba(18, 29, 22, 0.28) 100%), url('assets/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background: radial-gradient(circle at top left, rgba(87, 179, 62, 0.18), transparent 35%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 455px);
  gap: 28px;
  align-items: start;
  min-height: 610px;
  padding: 20px 0 40px;
}

.hero-copy {
  max-width: 620px;
  margin-top: -22px;
}

.hero-copy h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.8rem, 5.3vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  font-size: 1rem;
}

.microcopy {
  margin-top: 10px !important;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.82) !important;
}

.hero-checks,
.estimate-benefits,
.why-list,
.area-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.hero-checks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 8px;
  margin-top: 16px;
}

.hero-checks li,
.estimate-benefits li,
.why-list li,
.area-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.hero-checks li::before,
.estimate-benefits li::before,
.why-list li::before,
.area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #62c548 0%, #4da93a 100%);
  box-shadow: 0 18px 35px rgba(87, 179, 62, 0.26);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.46);
}

.btn-light {
  background: var(--white);
  color: var(--green-dark);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}


.social-proof small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
}

.avatar-row {
  display: flex;
}

.avatar-row img {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  object-fit: cover;
  background: linear-gradient(135deg, #d9d9d9, #8f8f8f);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.avatar-row img:first-child {
  margin-left: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 0.84rem;
  font-weight: 700;
}

.estimate-card {
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
}

.estimate-card h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.offer-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.offer-stack div {
  display: grid;
  gap: 2px;
  padding: 10px 12px 10px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(87, 179, 62, 0.08), rgba(37, 86, 41, 0.04));
  border: 1px solid rgba(87, 179, 62, 0.12);
}

.offer-stack strong {
  font-size: 0.98rem;
}

.offer-stack span {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-shell {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 31, 25, 0.08);
}

.services {
  background: linear-gradient(180deg, #faf9f5 0%, #ffffff 100%);
}

.services-grid,
.testimonial-grid,
.feature-band-grid,
.steps-grid,
.objection-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.step-card,
.testimonial-card,
.objection-card,
.area-card,
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.05);
}

.service-card {
  padding: 24px 18px 22px;
  text-align: center;
}

.service-icon,
.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(87, 179, 62, 0.12);
  color: var(--green-dark);
  font-size: 1.8rem;
}

.service-card h3,
.step-card h3,
.site-footer h3,
.objection-card h3,
.area-card h3,
.faq-item summary {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.service-card p,
.step-card p,
.testimonial-card p,
.site-footer p,
.site-footer li,
.objection-card p,
.area-card li,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.section-action {
  margin-top: 30px;
}

.feature-band {
  background: linear-gradient(180deg, var(--green-darker) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 26px 0;
}

.feature-band-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-band-item {
  display: grid;
  gap: 6px;
  text-align: center;
}

.feature-band-item strong {
  font-size: 1.4rem;
}

.feature-band-item span {
  color: rgba(255, 255, 255, 0.8);
}

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

.step-card {
  position: relative;
  text-align: center;
  padding: 36px 24px 28px;
}

.step-number {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.why-grid,
.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.why-media {
  position: relative;
}

.why-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.review-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 15px 30px rgba(26, 31, 35, 0.14);
}

.review-badge strong,
.testimonial-author strong {
  display: block;
}

.review-badge span,
.testimonial-author span {
  color: var(--muted);
  font-size: 0.92rem;
}

.objection-section {
  background: linear-gradient(180deg, #f7faf5 0%, #ffffff 100%);
}

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

.objection-card {
  padding: 26px 22px;
}

.testimonials {
  background: linear-gradient(180deg, #faf9f4 0%, #ffffff 100%);
}

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

.testimonial-card {
  padding: 28px 24px;
}

.quote-mark {
  color: var(--green);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-author {
  margin-top: 18px;
}

.seo-area {
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f2 100%);
}

.area-card {
  padding: 28px 24px;
}

.area-list {
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 26px;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin-top: 12px;
}

.closing-cta {
  background: linear-gradient(135deg, #3c9731 0%, #2f7c2c 100%);
  color: var(--white);
  padding: 30px 0;
}

.closing-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.closing-cta p {
  color: rgba(255,255,255,0.88);
}

.site-footer {
  background: #171d1f;
  color: var(--white);
  padding: 64px 0 28px;
}

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

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.mobile-sticky-cta {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 120;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(23, 29, 31, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
}

.mobile-sticky-cta a {
  flex: 1;
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 800;
}

.mobile-call {
  background: #fff;
  color: var(--green-dark);
}

.mobile-estimate {
  background: var(--green);
  color: #fff;
}

@media (max-width: 1140px) {
  .header-inner {
    grid-template-columns: 190px auto auto;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero-grid,
  .why-grid,
  .seo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-grid,
  .feature-band-grid,
  .steps-grid,
  .objection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: auto;
    padding: 20px 0 42px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    gap: 10px 18px;
    padding: 8px 0;
    font-size: 0.84rem;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 18px 20px 24px;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(22, 31, 25, 0.08);
    text-align: left;
  }

  .site-nav.open {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .services-grid,
  .testimonial-grid,
  .feature-band-grid,
  .steps-grid,
  .objection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .closing-cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 68px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px 0 44px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-checks,
  .trust-badges,
  .topbar-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .estimate-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .services-grid,
  .testimonial-grid,
  .feature-band-grid,
  .steps-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card,
  .testimonial-card,
  .objection-card,
  .area-card,
  .faq-item {
    border-radius: 18px;
  }

  .feature-band {
    padding: 18px 0;
  }

  .feature-band-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .feature-band-item:last-child {
    border-bottom: 0;
  }

  .why-media img {
    border-radius: 22px;
  }

  .review-badge {
    position: static;
    margin-top: 14px;
  }

  .mobile-sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 88px;
  }

  .footer-grid {
    gap: 28px;
  }

  .topbar {
    display: none;
  }
}


.social-proof-image-wrap {
  display: block;
  margin-top: 16px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.social-proof-strip {
  display: block;
  width: min(100%, 520px);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}
