:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-2: #edf4ef;
  --ink: #17211d;
  --muted: #5b6a63;
  --line: #d7e2dc;
  --green: #15835f;
  --green-dark: #0f5f49;
  --teal: #127f87;
  --amber: #c9832c;
  --graphite: #24302c;
  --shadow: 0 20px 60px rgba(20, 38, 32, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

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

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

.narrow {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(247, 250, 248, 0.9);
  border-bottom: 1px solid rgba(215, 226, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--graphite);
  font-size: 15px;
}

.main-nav a,
.footer-layout a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.footer-layout a:hover {
  border-color: currentColor;
}

.header-phone {
  color: var(--green-dark);
  font-weight: 700;
}

.header-callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 54px;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 25, 21, 0.92) 0%, rgba(9, 25, 21, 0.72) 42%, rgba(9, 25, 21, 0.24) 100%),
    linear-gradient(0deg, rgba(9, 25, 21, 0.82) 0%, transparent 38%);
}

.hero-content {
  position: relative;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #6ed6b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(930px, 100%);
  margin: 46px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.hero-facts div {
  padding: 18px;
  background: rgba(8, 25, 20, 0.55);
}

.hero-facts dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.hero-contact a,
.hero-contact span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 25, 20, 0.38);
}

.section {
  padding: 88px 0;
}

.proof-band {
  padding: 64px 0;
  background: var(--surface);
}

.progress-proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.company-stats div {
  position: relative;
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(21, 131, 95, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.94)),
    radial-gradient(circle at 90% 10%, rgba(18, 127, 135, 0.13), transparent 34%);
  box-shadow: 0 18px 42px rgba(20, 38, 32, 0.09);
  overflow: hidden;
}

.company-stats div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--amber));
}

.company-stats div::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(21, 131, 95, 0.08);
}

.company-stats dt {
  position: relative;
  z-index: 1;
  color: var(--green-dark);
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
}

.company-stats dd {
  position: relative;
  z-index: 1;
  max-width: 160px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.muted,
.intro-band {
  background: var(--surface-2);
}

.section-kicker {
  color: var(--green-dark);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

p {
  margin: 16px 0 0;
}

.split,
.checklist-layout,
.risk-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: start;
}

.flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
}

.flow-step {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  font-weight: 900;
  text-align: center;
}

.flow-step span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.flow-step.strong {
  color: #fff;
  background: var(--green-dark);
}

.flow-step.strong span {
  color: rgba(255, 255, 255, 0.75);
}

.flow-line {
  height: 2px;
  background: var(--amber);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

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

.info-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.services-section {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.services-grid article {
  min-height: 230px;
  padding: 24px;
  background: var(--bg);
}

.services-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--amber);
  font-weight: 900;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--graphite);
  font-weight: 900;
}

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

.checklist li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(21, 131, 95, 0.12);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline li {
  min-height: 300px;
  padding: 24px;
  background: var(--surface);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.risk-band {
  color: #fff;
  background: var(--graphite);
}

.instruction-section {
  background: var(--surface);
}

.instruction-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.instruction-layout a {
  color: var(--green-dark);
  font-weight: 800;
}

.max-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

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

.instruction-list li {
  position: relative;
  padding: 20px 20px 20px 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.instruction-list li::before {
  counter-increment: instruction;
  content: counter(instruction);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.instruction-list p {
  color: var(--muted);
}

.risk-band .section-kicker {
  color: #94e1ca;
}

.risk-list {
  display: grid;
  gap: 14px;
}

.risk-list p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.seo-text {
  background: var(--surface);
}

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

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

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

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

.contact-section {
  background: var(--surface);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.company-address {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

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

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(21, 131, 95, 0.18);
  border-color: var(--green);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #101815;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  max-width: 560px;
  margin-top: 8px;
}

.footer-logo {
  display: inline-block;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.footer-layout nav {
  display: flex;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .split,
  .checklist-layout,
  .risk-layout,
  .faq-layout,
  .contact-layout,
  .progress-proof {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .audience-grid,
  .hero-facts,
  .company-stats {
    grid-template-columns: 1fr;
  }

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

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .info-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-phone {
    display: none;
  }

  .header-callback {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
    padding: 100px 0 32px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .instruction-layout {
    grid-template-columns: 1fr;
  }

  .flow-line {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .footer-layout,
  .footer-layout nav {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
