:root {
  --ink: #18302b;
  --muted: #5f706c;
  --surface: #ffffff;
  --soft: #f4f8f6;
  --line: #d9e4df;
  --brand: #176c5b;
  --brand-dark: #0e4f42;
  --accent: #f2b94b;
  --danger: #8a2d2d;
  --shadow: 0 16px 40px rgba(23, 54, 47, 0.10);
  --radius: 18px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
}
a { color: var(--brand-dark); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 4px solid rgba(242, 185, 75, .55);
  outline-offset: 3px;
}
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 12px; top: 12px; z-index: 999; background: white; padding: 10px 14px; border-radius: 8px; }
.site-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; border-radius: 13px; background: var(--brand); display: grid; place-items: center; color: white; font-size: 24px; box-shadow: 0 8px 18px rgba(23,108,91,.25); }
.nav { display: flex; gap: 20px; font-size: 16px; }
.nav a { text-decoration: none; font-weight: 650; }
.hero { padding: 68px 0 48px; background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: #eaf5f1; color: var(--brand-dark); padding: 7px 12px; border-radius: 999px; font-weight: 750; font-size: 15px; }
h1, h2, h3 { line-height: 1.18; letter-spacing: -.03em; margin-top: 0; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin: 18px 0; }
h2 { font-size: clamp(1.75rem, 3vw, 2.7rem); }
h3 { font-size: 1.28rem; }
.lead { font-size: 1.22rem; color: var(--muted); max-width: 760px; }
.hero-list { padding: 0; margin: 26px 0; display: grid; gap: 12px; list-style: none; }
.hero-list li { display: flex; gap: 10px; align-items: flex-start; }
.hero-list li::before { content: "✓"; width: 27px; height: 27px; flex: 0 0 27px; display: grid; place-items: center; border-radius: 50%; background: #dff1eb; color: var(--brand-dark); font-weight: 900; }
.btn { min-height: 54px; padding: 13px 22px; border-radius: 12px; border: 2px solid transparent; font: inherit; font-weight: 800; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; }
.btn-primary { background: var(--brand); color: white; box-shadow: 0 10px 24px rgba(23,108,91,.22); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: white; border-color: var(--line); color: var(--ink); }
.trust-card { background: white; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.trust-card strong { display: block; font-size: 1.4rem; }
.trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.trust-item { border: 1px solid var(--line); background: var(--soft); padding: 14px; border-radius: 13px; font-size: 15px; }
.section { padding: 64px 0; }
.section-white { background: white; }
.check-shell { background: white; border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px, 5vw, 46px); box-shadow: var(--shadow); max-width: 860px; margin: 0 auto; }
.progress-wrap { margin-bottom: 30px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.progress { height: 12px; background: #e7efec; border-radius: 999px; overflow: hidden; }
.progress > div { height: 100%; width: 12.5%; background: var(--brand); transition: width .25s ease; }
.question { display: none; }
.question.active { display: block; }
.question-title { font-size: clamp(1.45rem, 3vw, 2.1rem); margin-bottom: 10px; }
.question-help { color: var(--muted); margin: 0 0 24px; }
.options { display: grid; gap: 12px; }
.option { position: relative; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option label { min-height: 62px; display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 2px solid var(--line); border-radius: 14px; cursor: pointer; background: white; font-weight: 700; }
.option label::before { content: ""; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #9db0aa; flex: 0 0 22px; }
.option input:checked + label { border-color: var(--brand); background: #eff8f5; }
.option input:checked + label::before { border: 7px solid var(--brand); }
.question-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.result { display: none; }
.result.active { display: block; }
.result-summary { background: #eff8f5; border: 1px solid #cce5dc; padding: 20px; border-radius: 15px; margin-bottom: 24px; }
.result-grid { display: grid; gap: 16px; }
.benefit-card { border: 1px solid var(--line); border-radius: 16px; padding: 20px; background: white; }
.benefit-card .amount { display: inline-block; font-weight: 850; color: var(--brand-dark); background: #eaf5f1; padding: 5px 10px; border-radius: 8px; margin-bottom: 8px; }
.benefit-card p { margin-bottom: 0; color: var(--muted); }
.partner-card { border: 2px solid #d7c086; background: #fffaf0; }
.notice { border-left: 5px solid var(--accent); background: #fffaf0; padding: 16px 18px; border-radius: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.info-card p { color: var(--muted); }
.content { max-width: 820px; }
.content table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; }
.content th, .content td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; }
.content th { background: #edf5f2; }
.breadcrumb { font-size: 15px; color: var(--muted); padding-top: 24px; }
.footer { background: #17342d; color: white; padding: 42px 0; }
.footer a { color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; }
.small { font-size: 14px; color: var(--muted); }
.footer .small { color: #d7e2de; }
.badge { display: inline-block; font-size: 13px; font-weight: 800; border-radius: 999px; padding: 5px 9px; background: #eaf5f1; color: var(--brand-dark); }
@media (max-width: 820px) {
  body { font-size: 17px; }
  .hero-grid, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hero { padding-top: 42px; }
  .trust-row { grid-template-columns: 1fr; }
  .question-actions { flex-direction: column-reverse; }
  .question-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
