:root {
  --bg: #f3f0e8;
  --paper: #fffdf8;
  --ink: #202722;
  --muted: #647067;
  --line: rgba(32,39,34,.14);
  --accent: #1f6a4a;
  --accent-soft: #dbe9df;
  --accent-deep: #153e2d;
  --sand: #ece4d4;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(22,28,24,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ece8df 0%, #f7f4ee 48%, #f1eee6 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; }
img { max-width: 100%; display: block; }

.page {
  width: min(1200px, calc(100% - 40px));
  margin: 24px auto 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 24px;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-mark {
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-name {
  font-size: 22px;
  font-weight: 700;
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  align-items: stretch;
}

.hero-main,
.hero-side,
.section,
.legal-wrap,
.thanks-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-main::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(31,106,74,.18), rgba(31,106,74,0));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent-deep);
  background: #faf7f1;
}

.hero-main h1 {
  font-size: clamp(40px, 7vw, 74px);
  line-height: .95;
  letter-spacing: -0.05em;
  margin: 22px 0 20px;
  max-width: 780px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
  align-items: end;
}

.lead {
  font-size: 18px;
  color: #3f4942;
  max-width: 640px;
}

.stat-note {
  background: var(--sand);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(32,39,34,.08);
}
.stat-note strong { display:block; font-size: 28px; margin-bottom: 6px; }
.stat-note span { color: #4d594f; font-size: 14px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
}
.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-secondary {
  background: transparent;
}

.hero-side {
  padding: 20px;
  display: grid;
  gap: 18px;
}

.side-panel {
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, #eff5f0 0%, #f8fbf8 100%);
  border: 1px solid rgba(31,106,74,.12);
}

.side-panel h3,
.card h3,
.section h2,
.faq-item h3,
.form-box h3,
.legal-wrap h1,
.thanks-wrap h1 {
  margin: 0 0 12px;
  line-height: 1.08;
}

.side-list,
.simple-list,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-list li,
.simple-list li,
.faq-item,
.pricing-row {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.side-list li:first-child,
.simple-list li:first-child,
.pricing-row:first-child,
.faq-item:first-child { border-top: 0; padding-top: 0; }

.disclaimer-box {
  background: #fbf8f2;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  color: #485249;
  font-size: 14px;
}

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  margin-top: 20px;
}

.sidebar {
  position: sticky;
  top: 20px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.sidebar-card,
.form-box,
.card,
.faq-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sidebar-card,
.form-box,
.card,
.faq-wrap,
.section {
  padding: 26px;
}

.sidebar-card small,
.muted,
.meta, .legal-wrap .meta { color: var(--muted); }

.content {
  display: grid;
  gap: 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.timeline {
  display: grid;
  gap: 14px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; padding-top: 0; }
.step-no {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #4d564f;
}
input, textarea, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(32,39,34,.14);
  background: #fcfbf8;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 130px; resize: vertical; }

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

.footer {
  margin-top: 24px;
  background: #1a231d;
  color: #eef2ed;
  border-radius: 28px;
  padding: 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 20px;
}
.footer a { color: #eef2ed; opacity: .9; }
.footer p, .footer li { color: rgba(238,242,237,.78); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

.legal-wrap, .thanks-wrap {
  width: min(980px, calc(100% - 40px));
  margin: 28px auto;
  padding: 36px;
}
.legal-wrap h1, .thanks-wrap h1 {
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -.04em;
}
.legal-wrap h2 {
  font-size: 22px;
  margin: 28px 0 12px;
}
.legal-wrap p, .legal-wrap li { color: #465048; }
.legal-wrap ul { padding-left: 18px; }
.backline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
}
.thanks-wrap {
  text-align: left;
  display: grid;
  gap: 16px;
}
.thanks-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1080px) {
  .hero-shell, .layout, .footer-grid, .hero-grid, .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 720px) {
  .page, .legal-wrap, .thanks-wrap { width: min(100% - 24px, 1200px); }
  .hero-main, .section, .sidebar-card, .form-box, .card, .faq-wrap, .legal-wrap, .thanks-wrap { padding: 22px; }
  .topbar { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-main h1 { font-size: 40px; }
}
