:root {
  --ink: #18201b;
  --muted: #5f695f;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --line: #ddd8ca;
  --green: #255c42;
  --green-dark: #123a2a;
  --gold: #d7a942;
  --brick: #914d38;
  --shadow: 0 18px 50px rgba(24, 32, 27, 0.15);
}

* {
  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.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 5vw;
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0d2e21 0%, var(--green-dark) 55%, #1a4531 100%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 12vh 5vw 14vh;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--green-dark);
  background: var(--gold);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.45);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  min-height: 118px;
  padding: 28px 5vw;
  background: var(--white);
}

.trust-band strong {
  display: block;
  color: var(--green-dark);
}

.trust-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 86px 5vw;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 60px;
  align-items: start;
}

.split > div > p:not(.eyebrow),
.form-intro > p:not(.eyebrow),
.faq > div > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  color: var(--brick);
  font-weight: 900;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 52px;
  background: var(--green-dark);
  color: var(--white);
}

.form-intro > p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.82);
}

.score-panel {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
}

.score-label {
  display: block;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
}

#scoreValue {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 4rem;
  line-height: 1;
}

#scoreText {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.82);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.consent input {
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hidden {
  display: none;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: 52px;
}

details {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer {
  padding: 34px 5vw;
  color: rgba(255, 253, 248, 0.78);
  background: var(--ink);
}

.footer p {
  margin: 0;
}

.fine-print {
  margin-top: 8px !important;
  font-size: 0.9rem;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--green-dark);
}

.confirmation {
  max-width: 760px;
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.confirmation h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.confirmation p:not(.eyebrow) {
  color: var(--muted);
}

.policy h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.policy h2 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
}

.policy .button {
  margin-top: 28px;
}

.page-hero {
  padding: 96px 5vw 64px;
  color: var(--white);
  background: var(--green-dark);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.page-hero p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 1.12rem;
}

.page-hero .button {
  margin-top: 28px;
}

.content p,
.content li {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.footer-links {
  margin-top: 14px !important;
  font-size: 0.9rem;
}

.footer-links a {
  margin-right: 14px;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 82vh;
  }

  .trust-band,
  .split,
  .form-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .lead-form {
    padding: 20px;
  }
}
