﻿:root {
  --ink: #14231f;
  --muted: #52615d;
  --line: #dfe5df;
  --paper: #fbfaf2;
  --white: #ffffff;
  --forest: #0f4d3a;
  --moss: #6f8d58;
  --gold: #b8873b;
  --blue: #315f7c;
  --clay: #a55d46;
  --shadow: 0 24px 60px rgba(20, 35, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #263631;
}

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

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  padding: 9px 13px;
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #10261f;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 38, 31, 0.9) 0%, rgba(9, 38, 31, 0.68) 43%, rgba(9, 38, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(9, 38, 31, 0.12) 0%, rgba(9, 38, 31, 0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 24px 96px;
  color: var(--white);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #d9e6d2;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(36px, 4.4vw, 54px);
  line-height: 1.12;
  max-width: 660px;
}

.hero p {
  max-width: 640px;
  font-size: 19px;
  color: #e8eee8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 760;
  background: var(--forest);
  color: var(--white);
}

.button.alt {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button.light {
  background: var(--white);
  color: var(--forest);
  border-color: var(--line);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof div {
  padding: 18px;
  background: rgba(16, 38, 31, 0.62);
}

.hero-proof strong {
  display: block;
  font-size: 22px;
}

.hero-proof span {
  color: #d9e6d2;
  font-size: 13px;
}

main {
  overflow: hidden;
}

.section {
  padding: 88px 24px;
}

.section.white {
  background: var(--white);
}

.section.forest {
  background: var(--forest);
  color: var(--white);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

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

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 14px;
}

.section-head p {
  font-size: 18px;
  color: var(--muted);
}

.forest .section-head p,
.forest p {
  color: #dfeadf;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 28px rgba(20, 35, 31, 0.06);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

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

.forest .card {
  color: var(--ink);
}

.offer-card {
  border-top: 5px solid var(--gold);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2e403a;
  background: #fbfaf7;
  font-size: 13px;
  font-weight: 650;
}

.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}

.journey div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.journey div:last-child {
  border-right: 0;
}

.journey span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 8px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.visual-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.dashboard {
  margin-top: -54px;
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

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

.metric {
  padding: 12px;
  background: #f3f5ef;
  border-radius: 6px;
}

.metric span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.metric strong {
  display: block;
  font-size: 24px;
}

.bar {
  height: 9px;
  border-radius: 999px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--forest) 0 48%, var(--gold) 48% 71%, var(--clay) 71%);
}


.video-card {
  overflow: hidden;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #10261f;
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #10261f;
}

.video-caption {
  padding: 16px 18px 18px;
  background: var(--white);
}

.video-caption strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.video-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.lead-box {
  padding: 28px;
  border-radius: var(--radius);
  background: #ebefe6;
  border: 1px solid #d5ddce;
}

.lead-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.checklist {
  padding-left: 20px;
}

.checklist li {
  margin: 10px 0;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 760;
}

.page-hero {
  padding: 74px 24px;
  background: #10261f;
  color: var(--white);
}

.page-hero .container {
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.page-hero p {
  max-width: 760px;
  color: #dfeadf;
  font-size: 20px;
}

.form {
  display: grid;
  gap: 18px;
}

.question {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.question label {
  display: block;
  font-weight: 760;
  margin-bottom: 10px;
}
.form-intro {
  background: #f3f5ef;
}

.form-intro strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

.lead-capture {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid #d5ddce;
  border-radius: var(--radius);
  background: #f7f8f3;
}

.lead-capture .question {
  padding: 0;
  border: 0;
  background: transparent;
}

.optional {
  color: var(--muted);
  font-weight: 560;
}

.question select,
.question input,
.question textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #ccd5cd;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}

.result-box {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.result-box.show {
  display: block;
}
.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  margin: 22px 0;
}

.result-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.result-grid h3 {
  margin: 8px 0 10px;
  font-size: 24px;
}

.lead-summary dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.lead-summary dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-summary dd {
  margin: -6px 0 4px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.lead-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.lead-status.pending {
  background: #eef3f4;
  color: var(--blue);
}

.lead-status.success {
  background: #ebefe6;
  color: var(--forest);
}

.lead-status.warning {
  background: #fbf2df;
  color: #72501b;
}

.lead-status a {
  color: inherit;
}

button:disabled,
.button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.68;
}

.score-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--white);
}

.score-badge.green {
  background: var(--forest);
}

.score-badge.yellow {
  background: var(--gold);
}

.score-badge.red {
  background: var(--clay);
}

.site-footer {
  padding: 42px 24px;
  background: #0d1b17;
  color: #dfeadf;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
}

.site-footer a {
  color: #dfeadf;
  text-decoration: none;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 8px 0;
}

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

.site-footer .small {
  color: #b8c8c0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .hero-proof,
  .grid.two,
  .grid.three,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .journey div {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 18px;
  }

  .nav {
    padding: 12px 18px;
  }

  .hero-inner,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero p,
  .page-hero p {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.5vw, 40px);
  }

  .journey,
  .metric-row,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    padding: 14px;
  }
}


