:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5d6b65;
  --line: #dce5df;
  --paper: #fbfcfa;
  --soft: #eef6f1;
  --brand: #0f7a5b;
  --brand-dark: #09523e;
  --accent: #d97925;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(220, 229, 223, 0.9);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.top-nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white) !important;
  font-weight: 700;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 34px 18px 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  width: 100%;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 17px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 122, 91, 0.22);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 76% 86%;
}

.section {
  padding: 44px 18px;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-bottom: 22px;
}

.compact {
  padding-top: 20px;
  padding-bottom: 22px;
}

.section-grid {
  display: grid;
  gap: 16px;
  border-block: 1px solid var(--line);
  padding: 24px 0;
}

.section-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  min-height: 140px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.band {
  background: var(--soft);
}

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

.steps li {
  min-height: 150px;
  border: 1px solid rgba(15, 122, 91, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.steps span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.local {
  display: grid;
  gap: 18px;
  align-items: center;
}

.local p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 56px;
  padding: 16px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.form-section {
  display: grid;
  gap: 20px;
  background: #17211d;
  color: var(--white);
}

.form-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.form-section .eyebrow {
  color: #84d6bd;
}

.lead-form {
  display: grid;
  gap: 14px;
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 122, 91, 0.22);
  border-color: var(--brand);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.consent input {
  min-height: 20px;
  margin-top: 2px;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 28px 18px 92px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(220, 229, 223, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(23, 33, 29, 0.16);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  font-weight: 900;
}

.sticky-cta a:first-child {
  background: var(--brand);
  color: var(--white);
}

.sticky-cta a:last-child {
  background: var(--soft);
  color: var(--ink);
}

.simple-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 18px 96px;
}

.simple-page h1 {
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.simple-page p,
.simple-page li {
  color: var(--muted);
}

@media (min-width: 680px) {
  .hero-actions {
    width: auto;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .service-grid,
  .steps,
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-header {
    padding-inline: 32px;
  }

  .top-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
    align-items: center;
    min-height: calc(100vh - 68px);
    padding: 54px 32px 42px;
  }

  .hero-media img {
    aspect-ratio: 5 / 4;
    object-position: center;
  }

  .section {
    padding: 72px 32px;
  }

  .section-grid,
  .local,
  .form-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  }

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

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

  .sticky-cta {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 34px 32px;
  }
}

@media (min-width: 1180px) {
  .hero,
  .section,
  .site-header,
  .site-footer {
    padding-inline: max(32px, calc((100vw - 1180px) / 2));
  }
}
