:root {
  --ink: #172024;
  --muted: #5b666b;
  --line: #d9e1df;
  --paper: #ffffff;
  --soft: #f6f8f5;
  --soft-2: #eef5f1;
  --brand: #1b6b5d;
  --brand-dark: #12483f;
  --accent: #bf6f28;
  --accent-soft: #fbefe4;
  --focus: #2563eb;
  --shadow: 0 18px 45px rgba(23, 32, 36, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brand);
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.logo {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.93rem;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-dark);
}

.nav-cta,
.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--brand);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover,
button.button:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.button.secondary {
  background: var(--paper);
  color: var(--brand-dark);
  border-color: var(--line);
}

.button.secondary:hover {
  background: var(--soft-2);
  color: var(--brand-dark);
}

.section {
  padding: 72px 0;
}

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

.section.tight {
  padding: 48px 0;
}

.hero {
  padding: 78px 0 56px;
  background:
    linear-gradient(135deg, rgba(238, 245, 241, 0.95), rgba(255, 255, 255, 0.88)),
    repeating-linear-gradient(90deg, rgba(27, 107, 93, 0.08), rgba(27, 107, 93, 0.08) 1px, transparent 1px, transparent 72px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.report-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.report-topbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--soft-2);
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

.mini-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.mini-table tr:last-child td {
  border-bottom: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 650px;
  color: var(--muted);
}

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

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

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

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

.card,
.price-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card {
  padding: 22px;
}

.card p,
.price-card p,
.faq-item p,
.note-list,
.field-help {
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.sample-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sample-table {
  min-width: 860px;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

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

.sample-table th {
  background: var(--soft-2);
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.price {
  font-size: 2.35rem;
  font-weight: 900;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.check-list,
.note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.note-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

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

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

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

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
}

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

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 700;
}

.form-status.error {
  color: #9f1d1d;
}

.form-status.success {
  color: var(--brand-dark);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content ul {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #eef5f1;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 800;
}

.footer-disclaimer {
  max-width: 860px;
  color: #cbd7d3;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero-grid,
  .lead-form-wrap,
  .grid.four,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .nav-cta {
    width: 100%;
  }

  .main-nav {
    gap: 10px 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 52px 0;
  }

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

  .button {
    width: 100%;
  }
}
