
:root {
  --ink: #15211d;
  --muted: #58645f;
  --line: #d9e2dd;
  --paper: #f6f8f4;
  --surface: #ffffff;
  --accent: #0f6b5b;
  --accent-2: #c85b34;
  --focus: #f2b84b;
  --shadow: 0 18px 55px rgba(21, 33, 29, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 248, 244, 0.92);
  border-bottom: 1px solid rgba(217, 226, 221, 0.85);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: white;
  background: var(--accent);
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 650;
}

nav a[aria-current="page"],
nav a:hover { color: var(--ink); background: #e9eee9; }

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 10vh, 150px) clamp(18px, 4vw, 56px) 42px;
  color: white;
  background:
    linear-gradient(90deg, rgba(12, 23, 19, 0.88), rgba(12, 23, 19, 0.54) 48%, rgba(12, 23, 19, 0.18)),
    var(--hero-image) center / cover;
}

.hero-inner {
  width: min(900px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffd596; }

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: #f2f6f0;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
}

.button.primary { color: white; background: var(--accent); }
.button.secondary { color: white; border-color: rgba(255,255,255,0.58); background: rgba(255,255,255,0.12); }
.button.ghost { color: var(--accent); border-color: var(--line); background: white; }
.button:hover { transform: translateY(-1px); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--line);
}

.stat {
  min-height: 106px;
  padding: 24px;
  background: var(--surface);
}

.stat span {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 820;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.stat small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 650;
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px clamp(18px, 4vw, 56px);
  background: #edf2ed;
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  padding: clamp(34px, 6vw, 80px) clamp(18px, 4vw, 56px) 28px;
}

.main-copy,
.panel,
.faq,
.lead-form,
.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.main-copy {
  width: 100%;
}

.content-section,
.side-panel,
.panel,
.faq,
.lead-form,
.cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-section {
  padding: clamp(24px, 4vw, 42px);
  margin-bottom: 18px;
}

.content-section h2,
.panel h2,
.faq h2,
.lead-form h2,
.cta-band h2,
.side-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.content-section p,
.panel p,
.faq p,
.lead-form p,
.cta-band p,
.side-panel p {
  color: var(--muted);
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

li + li { margin-top: 8px; }

.side-panel {
  position: sticky;
  top: 82px;
  align-self: start;
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 780;
}

.panel,
.faq,
.lead-form,
.cta-band {
  padding: clamp(24px, 4vw, 42px);
  margin-top: 28px;
}

.data-panel { overflow: hidden; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: white;
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf2ed;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.link-card {
  min-height: 166px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

.link-card a {
  display: inline-flex;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.link-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

details:first-of-type { border-top: 0; }

summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.cta-band p { color: #dfe7e2; }
.cta-band .section-kicker { color: #ffd596; }

.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: 30px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 720;
}

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

textarea { resize: vertical; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 42px clamp(18px, 4vw, 56px);
  color: #dce6e0;
  background: #111b18;
}

.site-footer p {
  max-width: 640px;
  color: #aebbb4;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a { color: #dce6e0; }

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
    background:
      linear-gradient(180deg, rgba(12, 23, 19, 0.84), rgba(12, 23, 19, 0.56)),
      var(--hero-image) center / cover;
  }

  h1 { max-width: 12ch; }

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

  .page-grid,
  .lead-form,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

@media (max-width: 520px) {
  .hero {
    min-height: 68vh;
    padding-top: 54px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

  .stat {
    min-height: 88px;
    padding: 18px;
  }

  .main-copy,
  .panel,
  .faq,
  .lead-form,
  .cta-band {
    width: min(100% - 24px, 1180px);
  }

  .content-section,
  .panel,
  .faq,
  .lead-form,
  .cta-band {
    padding: 20px;
  }
}
