:root {
  --bg: #f7f3ee;
  --card: #ffffff;
  --text: #1f2520;
  --muted: #5c665f;
  --accent: #2f5c45;
  --accent-soft: #e5f0e8;
  --border: #d7ded8;
  --warm: #f1e9dd;
  --danger: #8d3d3d;
  --success: #1f6b42;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.5;
}
a { color: var(--accent); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}
.brand { font-weight: 800; font-size: 1.25rem; }
.navlinks { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.mobile-wrap { flex-wrap: wrap; }
.hero {
  background: linear-gradient(180deg, var(--accent-soft), var(--bg));
  border-radius: 32px;
  padding: 56px 28px;
  margin: 18px 0 24px;
  border: 1px solid #edf3ee;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  color: #556b5d;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.8vw, 4.6rem);
  line-height: 1;
  margin: 12px 0 12px;
  max-width: 900px;
}
.hero p {
  max-width: 800px;
  color: #4b514c;
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.btn, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
  min-height: 48px;
}
.btn:hover, button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.btn.secondary {
  background: white;
  color: var(--accent);
  border: 1px solid var(--border);
}
.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px dashed var(--border);
}
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid.four { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--card);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.03);
}
.card h2, .card h3 { margin-top: 0; }
.section { padding: 24px 0; }
.kicker {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.price { font-size: 2rem; font-weight: 800; margin: 8px 0; }
.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 700;
}
.small { font-size: .92rem; color: var(--muted); }
.muted { color: var(--muted); }
.note {
  background: #fffdf8;
  border: 1px solid #eee3c8;
  color: #665d40;
  border-radius: 18px;
  padding: 14px 16px;
}
.footer {
  padding: 26px 0 60px;
  color: var(--muted);
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.proof-pill {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  color: #425247;
  font-size: .9rem;
}
.pricing-grid .card { position: relative; }
.price-list { padding-left: 18px; color: #344039; }
.price-list li { margin: 8px 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 18px;
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  text-align: left;
}
.compare-table th { background: #f8faf8; }
.quiz-wrap { max-width: 860px; margin: 0 auto; }
.progress-bar {
  width: 100%;
  height: 10px;
  background: #edf1ee;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 18px;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width .18s ease;
}
.option-grid { display: grid; gap: 12px; margin-top: 14px; }
.option-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #f8faf8;
}
.option-card input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.error {
  color: var(--danger);
  margin-top: 12px;
  min-height: 22px;
}
.result-box { border-left: 6px solid var(--accent); }
.result-header { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.module-card {
  background: #f8faf8;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}
.form-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.input, textarea, select {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin: 8px 0 14px;
  font-size: 1rem;
  font-family: inherit;
  background: white;
}
textarea { min-height: 120px; resize: vertical; }
.legal p, .legal li { color: #314034; }
.notice-block {
  background: #f8faf8;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}
.center { text-align: center; }
.hide { display: none !important; }
@media (max-width: 680px) {
  .nav { align-items: flex-start; }
  .hero { padding: 40px 20px; }
  .hero h1 { line-height: 1.05; }
}
