:root {
  --wa-ink: #17231f;
  --wa-muted: #5f6965;
  --wa-line: rgba(23, 35, 31, 0.16);
  --wa-paper: #f3f1f0;
  --wa-card: #fffdf9;
  --wa-green: #168e5b;
  --wa-green-dark: #0d6841;
  --wa-focus: #137f9b;
}

* { box-sizing: border-box; }

body.wa-page {
  margin: 0;
  color: var(--wa-ink);
  background:
    radial-gradient(circle at 84% 12%, rgba(22, 142, 91, 0.10), transparent 27rem),
    var(--wa-paper);
  font-family: Inter, Arial, sans-serif;
}

.wa-shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.wa-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--wa-line);
}

.wa-brand {
  color: var(--wa-ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 30px;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wa-back { color: var(--wa-muted); font-size: 14px; text-decoration: none; }
.wa-back:hover { color: var(--wa-ink); }

.wa-main {
  display: grid;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
  padding: clamp(56px, 9vw, 118px) 0 88px;
}

.wa-kicker {
  margin: 0 0 20px;
  color: var(--wa-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wa-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(46px, 7.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.wa-copy h1 em { color: var(--wa-green-dark); font-weight: 400; }

.wa-lead {
  max-width: 54ch;
  margin: 28px 0 0;
  color: var(--wa-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.wa-proof {
  display: grid;
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.wa-proof li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; }
.wa-proof li::before { content: "✓"; color: var(--wa-green-dark); font-weight: 800; }

.wa-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--wa-line);
  border-radius: 24px;
  background: var(--wa-card);
  box-shadow: 0 24px 70px rgba(23, 35, 31, 0.08);
}

.wa-card h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.wa-card-intro { margin: 10px 0 28px; color: var(--wa-muted); line-height: 1.5; }

.wa-form { display: grid; gap: 18px; }
.wa-row { display: grid; gap: 18px; }

.wa-field { display: grid; gap: 7px; }
.wa-field span { font-size: 13px; font-weight: 700; }

.wa-field input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--wa-line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--wa-ink);
  background: white;
  font: inherit;
}

.wa-field input:focus,
.wa-consent input:focus-visible,
.wa-submit:focus-visible,
.wa-back:focus-visible,
.wa-brand:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--wa-focus), transparent 60%);
  outline-offset: 3px;
}

.wa-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.wa-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--wa-muted);
  font-size: 13px;
  line-height: 1.52;
}

.wa-consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--wa-green); }
.wa-consent a { color: var(--wa-ink); }

.wa-submit {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  color: white;
  background: var(--wa-green-dark);
  font: 700 16px/1 Inter, Arial, sans-serif;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.wa-submit:hover { transform: translateY(-1px); background: var(--wa-green); }
.wa-submit:disabled { cursor: wait; opacity: 0.65; transform: none; }

.wa-status { min-height: 24px; margin: 0; color: var(--wa-muted); font-size: 14px; line-height: 1.5; }
.wa-status[data-state="error"] { color: #a12f27; }
.wa-status[data-state="success"] { color: var(--wa-green-dark); font-weight: 700; }

.wa-note { margin: 22px 0 0; color: var(--wa-muted); font-size: 12px; line-height: 1.5; }

.wa-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--wa-line);
  color: var(--wa-muted);
  font-size: 13px;
}

.wa-footer a { color: inherit; }

@media (min-width: 720px) {
  .wa-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .wa-main { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr); }
  .wa-card { position: sticky; top: 24px; }
}

@media (max-width: 520px) {
  .wa-shell { width: min(100% - 28px, 1120px); }
  .wa-header { min-height: 70px; }
  .wa-back { max-width: 16ch; text-align: right; }
  .wa-card { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-submit { transition: none; }
}

