:root {
  --ink: #17211b;
  --muted: #566158;
  --brand: #24583a;
  --brand-dark: #173b27;
  --accent: #f4b740;
  --accent-dark: #d99616;
  --bg: #fbfaf4;
  --panel: #ffffff;
  --soft: #eef4ec;
  --line: #dfe8dc;
  --shadow: 0 18px 45px rgba(23, 33, 27, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 1.2rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.nav-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  padding: 14px 16px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-menu.is-open { display: grid; gap: 10px; }

.nav-menu a {
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
  border-radius: 10px;
}

.nav-menu a:hover { background: var(--soft); color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #1b1505;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 24px rgba(244, 183, 64, 0.22);
}

.button:hover { background: var(--accent-dark); }

.button-secondary {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
}

.hero {
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at 85% 10%, rgba(244, 183, 64, 0.2), transparent 32%),
    linear-gradient(180deg, #f5f1df 0%, var(--bg) 82%);
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h1 { font-size: clamp(2.35rem, 11vw, 5rem); }
h2 { font-size: clamp(1.8rem, 7vw, 3rem); }
h3 { font-size: 1.25rem; }

.hero-text {
  margin: 16px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 3.7vw, 1.3rem);
}

.hero-actions, .section-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-list li::before {
  content: "✓";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand);
  font-weight: 900;
}

.hero-card, .card, .notice-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card { padding: 22px; }

.price-box {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child { border-bottom: 0; }

.price-row strong { color: var(--brand); }

.section { padding: 54px 0; }

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

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading p, .content p, .card p, .notice-card p { color: var(--muted); }

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  padding: 22px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--brand);
  font-size: 1.35rem;
}

.content-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.notice-card {
  padding: 24px;
  background: #173b27;
  color: #fff;
}

.notice-card p { color: rgba(255, 255, 255, 0.82); }

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.link-list a {
  display: inline-flex;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 800;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 58px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--accent);
  font-weight: 900;
}

.cta-band {
  padding: 34px 0;
  background: var(--brand);
  color: #fff;
}

.cta-band p { color: rgba(255, 255, 255, 0.84); }

.site-footer {
  padding: 36px 0 28px;
  background: #101811;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.disclaimer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 720px) {
  .hero { padding: 78px 0 64px; }
  .hero-grid, .content-grid { grid-template-columns: 1.08fr 0.92fr; }
  .hero-actions, .section-actions { display: flex; align-items: center; flex-wrap: wrap; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav-menu a { font-size: 0.95rem; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
