:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #5b665f;
  --line: #d9ded8;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --accent: #176b5b;
  --accent-2: #b94d2c;
  --soft: #e8efe9;
  --dark: #102019;
}

* {
  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;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10;
  padding: 10px 12px;
  background: var(--dark);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(23, 32, 27, 0.12);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(10px);
}

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

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

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(16, 32, 25, 0.18);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(247, 245, 239, 0.95) 0%, rgba(247, 245, 239, 0.78) 52%, rgba(16, 32, 25, 0.2) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1000' viewBox='0 0 1600 1000'%3E%3Crect width='1600' height='1000' fill='%23d8ded8'/%3E%3Cg fill='none' stroke='%2317201b' stroke-opacity='.22' stroke-width='5'%3E%3Cpath d='M1100 245h260v150h-260zM1136 290h188M1136 330h128M996 566h388v210H996zM1034 620h312M1034 675h250M1034 730h188M270 532h520M300 572h460M340 612h370M390 652h280'/%3E%3Cpath d='M118 810 540 260l360 470 156-210 426 290'/%3E%3C/g%3E%3Cg fill='%23176b5b' fill-opacity='.28'%3E%3Crect x='112' y='176' width='310' height='90' rx='10'/%3E%3Crect x='150' y='296' width='500' height='44' rx='8'/%3E%3Crect x='150' y='366' width='420' height='44' rx='8'/%3E%3C/g%3E%3Cg fill='%23b94d2c' fill-opacity='.2'%3E%3Crect x='1040' y='148' width='390' height='48' rx='8'/%3E%3Crect x='1060' y='822' width='285' height='42' rx='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-inner,
.section-inner,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.hero-content {
  max-width: 760px;
  padding: 72px 0 88px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 21px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #354039;
  font-size: clamp(18px, 2vw, 22px);
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-item {
  padding: 26px 22px;
  background: var(--panel);
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
}

section {
  padding: 74px 0;
}

.section-dark {
  background: var(--dark);
  color: #f6f1e7;
}

.section-dark .muted,
.section-dark .section-kicker {
  color: #bed0c5;
}

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

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.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 {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.section-dark .card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.card p,
.card ul,
.policy-main p,
.policy-main ul {
  margin-bottom: 0;
}

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 2px;
  background: var(--accent-2);
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 54px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--accent-2);
  font-weight: 900;
}

.price-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.price {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 900;
  line-height: 1;
}

.fine-print {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.policy-hero {
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--line);
}

.policy-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 54px 22px 80px;
}

.policy-main h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-main h2:first-child {
  margin-top: 0;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-row,
  .grid.two,
  .grid.three,
  .price-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 56px;
  }

  section {
    padding: 56px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
