:root {
  --bg: #f5f0e8;
  --panel: #fffaf2;
  --ink: #1f241f;
  --muted: #5c675b;
  --accent: #0f6b4f;
  --accent-2: #d98f39;
  --line: #d5c6af;
  --shadow: 0 20px 45px rgba(32, 28, 20, 0.12);
  --radius: 22px;
  --max: 1120px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(217, 143, 57, 0.14), transparent 26%),
    linear-gradient(180deg, #f7f3ea 0%, #efe4d3 100%);
  font-family: var(--font-body);
}
a { color: inherit; }
.shell { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.brand h1, .hero h2, .section-title, .cta-card h3, .stats-card strong {
  font-family: var(--font-display);
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  padding: 14px 0 28px;
}
.hero-copy, .hero-form, .panel, .stats-card, .lead-box {
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 34px;
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(15, 107, 79, 0.08);
}
.hero-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.97;
}
.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 60ch;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.hero-points div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.55);
}
.hero-form {
  padding: 24px;
}
.hero-form h3 {
  margin-top: 6px;
  margin-bottom: 10px;
  font-size: 1.45rem;
}
.hero-form p {
  color: var(--muted);
  line-height: 1.6;
}
form {
  display: grid;
  gap: 12px;
}
label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
input, textarea, select, button {
  font: inherit;
}
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #c8b89f;
  background: #fffdf9;
  padding: 13px 14px;
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0a4f3a 100%);
  color: #fff;
}
.button-ghost {
  background: transparent;
  border: 1px solid var(--line);
}
.status {
  min-height: 22px;
  font-size: 13px;
  color: var(--muted);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 18px 0 36px;
}
.stats-card {
  padding: 18px 20px;
}
.stats-card span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.stats-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.75rem;
}
.section {
  padding: 12px 0 26px;
}
.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}
.section-copy {
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel {
  padding: 22px;
}
.panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.keyword-list, .lead-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}
.risk {
  border-left: 4px solid var(--accent-2);
  padding-left: 12px;
}
.footer-note {
  padding: 12px 0 42px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 960px) {
  .hero,
  .two-up,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
