:root {
  --bg: #f7fbfa;
  --bg-alt: #edf4f1;
  --surface: #ffffff;
  --surface-strong: #0d3b3b;
  --text: #143131;
  --text-muted: #2f4c4c;
  --line: #c9dbd7;
  --brand: #0f766e;
  --brand-strong: #0b5d57;
  --accent: #ff7f50;
  --accent-soft: #ffe6dc;
  --success: #0e9f6e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 14px 40px rgba(13, 59, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fdfc 0%, #f2f8f6 100%);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
}

h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
}

p,
li {
  color: var(--text-muted);
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #ffffff;
  font-weight: 700;
  padding: 0.88rem 1.3rem;
  transition:
    transform 180ms ease,
    filter 180ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--line);
}

.btn-small {
  font-size: 0.9rem;
  padding: 0.68rem 1rem;
}

.btn-full {
  width: 100%;
}

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

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2000;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 253, 252, 0.88);
  border-bottom: 1px solid rgba(201, 219, 215, 0.65);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #149a90);
}

.brand-text {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 1.35rem;
  font-weight: 600;
  color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--brand-strong);
}

.hero {
  overflow: hidden;
  padding-top: 5.6rem;
}

.bg-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
}

.bg-shape-a {
  width: 360px;
  height: 360px;
  background: #7fded7;
  top: -130px;
  right: -40px;
}

.bg-shape-b {
  width: 300px;
  height: 300px;
  background: #ffc9b2;
  left: -120px;
  bottom: -90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-points {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.hero-cta-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
}

.metric-card strong {
  display: block;
  color: var(--surface-strong);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.metric-card span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lead-card {
  background: #fff;
  border: 1px solid rgba(201, 219, 215, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

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

form {
  display: grid;
  gap: 0.68rem;
}

label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  border: 1px solid #b8cdc8;
  border-radius: 12px;
  background: #fff;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.25);
  border-color: var(--brand);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.checkbox-row input {
  width: 1rem;
  height: 1rem;
}

.hidden {
  display: none;
}

.fine-print {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 1.2rem 0;
}

.trust-grid {
  text-align: center;
  font-size: 1rem;
}

.local-seo {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.city-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--surface-strong);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-intro {
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  position: relative;
}

.service-card.featured {
  border: 2px solid #17857d;
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  background: var(--accent);
  color: #332219;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.price {
  margin: 0.6rem 0;
  font-size: 1.25rem;
  color: var(--surface-strong);
  font-weight: 800;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.timeline article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #7d3c24;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

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

.results-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

summary + p {
  margin-top: 0.7rem;
}

.cta-band {
  background: linear-gradient(130deg, #114948 0%, #0f6963 55%, #15988e 100%);
  color: #e8fffb;
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #ecfffc;
}

.cta-band .eyebrow::before {
  background: #ecfffc;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.cta-band .btn {
  background: linear-gradient(135deg, #ff9d74, #ff7f50);
  color: #302017;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.1rem 0 1.3rem;
  background: #f5fbf9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.brand-footer {
  color: var(--surface-strong);
  font-weight: 800;
}

.copyright {
  text-align: center;
  margin-top: 1.4rem;
  color: #355252;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  animation-delay: 120ms;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .cards-grid,
  .timeline,
  .results-grid,
  .footer-grid,
  .metrics,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    display: grid;
  }

  .section {
    padding: 4rem 0;
  }
}
