:root {
  --ink: #17201a;
  --muted: #5f6b63;
  --line: #d9dfd7;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --green: #1f7a4d;
  --green-dark: #115b36;
  --blue: #2b5b84;
  --clay: #a95d3b;
  --gold: #d8b04c;
}

* {
  box-sizing: border-box;
}

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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
}

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

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--green);
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: 540px;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, #fbfbf7 0%, #f5f8f4 100%);
  border-top: 1px solid var(--line);
}

.hero-inner,
.section-inner,
.footer-inner,
.page {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-inner {
  padding-top: 34px;
  padding-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.hero-copy {
  margin: 22px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--green-dark);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 720;
  white-space: normal;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.hero-notes span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.78);
}

.product-proof {
  background: #fff;
  padding-top: 64px;
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.proof-row img {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 32, 26, 0.12);
}

.proof-row h2 {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 38px);
}

.section {
  border-top: 1px solid var(--line);
  padding: 52px 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 28px;
}

.section-title p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.workflow,
.step,
.policy-block {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.workflow p,
.step p,
.policy-block p,
.policy-block li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.workflow:nth-child(2) {
  border-top-color: var(--clay);
}

.workflow:nth-child(3) {
  border-top-color: var(--blue);
}

.workflow:nth-child(4) {
  border-top-color: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.price-band {
  background: #eef4ee;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: center;
}

.price {
  padding: 24px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #fff;
}

.price-number {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 12px;
}

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

details,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 720;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
}

.page {
  padding-top: 56px;
  padding-bottom: 64px;
}

.page h1 {
  font-size: clamp(36px, 5vw, 60px);
}

.policy-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

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

.support-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 680;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.support-form textarea {
  resize: vertical;
}

.support-form .span-all {
  grid-column: 1 / -1;
}

.support-form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 520;
}

.support-form .checkbox input {
  width: 18px;
  min-height: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .nav {
    display: none;
  }

  .section-title,
  .price-row,
  .proof-row {
    grid-template-columns: 1fr;
  }

  .workflow-grid,
  .steps,
  .support-form {
    grid-template-columns: 1fr;
  }
}
