:root {
  --ink: #17211f;
  --muted: #65716d;
  --bg: #f4f1e8;
  --panel: #fffdf8;
  --line: #ded7c8;
  --green: #174e44;
  --green-soft: #e4efe9;
  --gold: #c4903a;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small,
.lead,
.form-card p,
.section p,
.site-footer,
.form-note {
  color: var(--muted);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.8);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 22px 28px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
}

.lead {
  max-width: 660px;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: var(--panel);
}

.button.full {
  width: 100%;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: #3c4642;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 78, 68, 0.14);
  outline: none;
}

.form-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 22px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 22px;
}

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

.steps article,
.benefits p,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.82);
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 10px;
}

.benefits p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

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

.faq details {
  padding: 0;
}

.faq summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 800;
}

.faq details p {
  padding: 0 18px 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer a,
.form-note a,
.legal-content a {
  color: var(--green);
  font-weight: 700;
}

.legal-page {
  min-height: 100vh;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 44px 22px 72px;
}

.legal-content h1 {
  font-size: 52px;
}

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

.legal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 22px;
}

.thank-you {
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

@media (max-width: 840px) {
  .site-header,
  .site-footer,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero,
  .steps,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: 42px;
  }

  .legal-content h1 {
    font-size: 38px;
  }
}
