:root {
  --bg: #f6faf7;
  --surface: #ffffff;
  --surface-2: #edf5f0;
  --ink: #17211d;
  --muted: #5b6a63;
  --line: #d7e2dc;
  --green: #15835f;
  --green-dark: #0f5f49;
  --teal: #127f87;
  --amber: #c9832c;
  --graphite: #24302c;
  --danger: #b94d38;
  --shadow: 0 18px 48px rgba(20, 38, 32, 0.12);
}

* { 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 { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(880px, calc(100% - 40px)); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(215, 226, 220, 0.82);
  background: rgba(246, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 245px; }
.brand img, .site-footer img {
  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; font-size: 15px; }
.main-nav a:hover, .footer-layout a:hover { border-bottom: 1px solid currentColor; }
.header-phone { color: var(--green-dark); font-weight: 900; white-space: nowrap; }
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 54px;
  color: #fff;
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 24, 20, 0.95) 0%, rgba(10, 24, 20, 0.74) 48%, rgba(10, 24, 20, 0.16) 100%),
    linear-gradient(0deg, rgba(10, 24, 20, 0.86) 0%, transparent 40%);
}
.hero-content { position: relative; }
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: #76dbc0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 780px;
  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: 900;
  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,.46); background: rgba(255,255,255,.08); }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(930px, 100%);
  margin: 46px 0 0;
}
.hero-facts div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 25, 20, 0.58);
}
.hero-facts dt { font-size: 26px; font-weight: 900; }
.hero-facts dd { margin: 6px 0 0; color: rgba(255,255,255,.78); font-size: 14px; }

.section { padding: 88px 0; }
.muted, .proof-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; }
.section-head { max-width: 900px; margin-bottom: 36px; }

.proof-layout, .service-layout, .checklist-layout, .risk-layout, .faq-layout, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 54px;
  align-items: start;
}
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.company-stats div {
  min-height: 150px;
  display: grid;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.company-stats dt {
  color: var(--green-dark);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  font-weight: 900;
}
.company-stats dd { margin: 10px 0 0; color: var(--muted); font-weight: 900; }

.cards-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card, .steps article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.info-card { min-height: 300px; }
.info-card span, .steps span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--amber);
  font-weight: 900;
}
.info-card p, .steps p { color: var(--muted); }

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(21, 131, 95, .12);
}
.steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.steps article { min-height: 260px; }

.checklist-section { background: var(--surface); }
.checklist {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(21, 131, 95, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,250,247,.97)),
    radial-gradient(circle at 90% 0%, rgba(18,127,135,.14), transparent 36%);
  box-shadow: var(--shadow);
}
.checklist label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}
.checklist label:last-child { border-bottom: 0; }
.checklist input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--green); }

.risk-section { color: #fff; background: var(--graphite); }
.risk-section .section-kicker { color: #93e2c9; }
.risk-copy { display: grid; gap: 14px; }
.risk-copy p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.seo-text, .contact-section { 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-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: 900;
}
.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: 900; }
.lead-form input, .lead-form textarea, .lead-form select {
  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, .lead-form select:focus {
  outline: 3px solid rgba(21, 131, 95, .18);
  border-color: var(--green);
}
.consent { grid-template-columns: 18px 1fr; align-items: start; color: var(--muted); font-size: 13px; 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: 900; }

.site-footer { padding: 36px 0; color: rgba(255,255,255,.82); background: #101815; }
.footer-layout { display: flex; justify-content: space-between; gap: 24px; }
.footer-layout > div { max-width: 640px; }
.footer-layout img { display: inline-block; margin-right: 10px; vertical-align: middle; }
.footer-layout p { margin-top: 8px; }
.footer-layout nav { display: flex; gap: 18px; align-items: start; }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav { display: none; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-phone { display: none; }
  .proof-layout, .service-layout, .checklist-layout, .risk-layout, .faq-layout, .contact-layout,
  .cards-grid, .steps, .company-stats { grid-template-columns: 1fr; }
  .hero-facts { grid-template-columns: 1fr; }
  .info-card, .steps article { 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 { display: none; }
  .header-action { 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; }
  .footer-layout, .footer-layout nav { flex-direction: column; }
}
