:root {
  --orange: #F05A28;
  --orange-bright: #FF5A1F;
  --orange-hover: #E94D1D;
  --ink: #25313A;
  --muted: #5F6C75;
  --teal: #2F6F64;
  --bg: #F7F9FB;
  --panel: #FFFFFF;
  --line: #E2E8ED;
  --soft-orange: #FFF1EB;
  --soft-teal: #EAF5F2;
  --shadow: 0 18px 42px rgba(37, 49, 58, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 232, 237, 0.92);
  background: rgba(247, 249, 251, 0.94);
  backdrop-filter: blur(12px);
}
.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 760; }
.brand img { width: 34px; height: 34px; }
.nav-links { display: flex; align-items: center; gap: 18px; color: #43515B; font-size: 14px; }
.nav-links a:hover { color: var(--ink); }
.mobile-cta { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 90, 31, 0.12);
  border-radius: 7px;
  background: linear-gradient(180deg, #FF7045 0%, var(--orange-bright) 100%);
  color: #fff;
  font-weight: 760;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(240, 90, 40, 0.18);
}
.button:hover {
  border-color: rgba(233, 77, 29, 0.18);
  background: linear-gradient(180deg, #FF6435 0%, var(--orange-hover) 100%);
  box-shadow: 0 10px 22px rgba(240, 90, 40, 0.22);
}
.button.secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
  box-shadow: none;
}
.button.teal {
  border-color: rgba(47, 111, 100, 0.12);
  background: linear-gradient(180deg, #3B8175 0%, var(--teal) 100%);
  box-shadow: 0 8px 18px rgba(47, 111, 100, 0.16);
}
.button.block { width: 100%; }

.hero {
  padding: 86px 0 70px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
}
.eyebrow, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 4px 10px;
  border: 1px solid rgba(47, 111, 100, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 13px;
  font-weight: 740;
}
.pill.orange { color: var(--orange); border-color: rgba(240, 90, 40, 0.18); background: var(--soft-orange); }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: 0; }
h1 { max-width: 820px; margin-top: 18px; font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }
p { margin: 0 0 12px; }
.lead { max-width: 720px; margin-top: 20px; color: var(--muted); font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-line {
  margin-top: 18px;
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 12px 14px;
  color: #40505B;
  font-size: 14px;
}

.snapshot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.snapshot-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.snapshot-row:last-of-type { border-bottom: 0; }
.status { color: var(--orange); font-weight: 760; text-align: right; }
.snapshot-note { margin-top: 16px; color: var(--muted); font-size: 14px; }

section { padding: 66px 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 26px; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 17px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}
.card.shadow { box-shadow: var(--shadow); }
.price {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1;
  font-weight: 820;
  color: var(--orange);
}
.price.teal { color: var(--teal); }
.muted { color: var(--muted); }
.small { font-size: 14px; }
ul.clean, ol.clean { margin: 14px 0 0; padding-left: 19px; color: #40505B; }
ul.clean li, ol.clean li { margin: 8px 0; }
.check-list { display: grid; gap: 12px; }
.check-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}
.resource-card .topic {
  color: var(--teal);
  font-size: 13px;
  font-weight: 760;
}
.resource-card p { color: var(--muted); }
.resource-card a {
  margin-top: auto;
  color: var(--orange);
  font-weight: 760;
}
.faq { display: grid; gap: 12px; max-width: 920px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 18px; }
.faq-item strong { display: block; margin-bottom: 6px; }

.page-hero { padding: 72px 0 46px; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 58px); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.notice {
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: var(--soft-orange);
  padding: 16px 18px;
}
.report {
  margin: 38px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.report-cover { padding: 30px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff, #F7F9FB); }
.report-body { padding: 30px; display: grid; gap: 18px; }
.meta-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.meta { border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: rgba(255,255,255,0.78); }
.meta span { display: block; color: var(--muted); font-size: 12px; font-weight: 760; text-transform: uppercase; }
.meta strong { display: block; margin-top: 4px; font-size: 14px; }

.footer { padding: 34px 0; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.footer strong { color: var(--ink); }

@media (max-width: 840px) {
  .nav-inner { align-items: flex-start; padding: 14px 0; flex-direction: column; }
  .nav-links { width: 100%; flex-wrap: wrap; gap: 12px 16px; }
  .nav-links .button { display: none; }
  .mobile-cta { display: inline-flex; width: 100%; margin-top: 4px; }
  .hero { padding: 54px 0 48px; }
  .hero-grid, .grid, .grid.two, .content-grid { grid-template-columns: 1fr; }
  .snapshot { order: -1; }
  .meta-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .wrap, .narrow { width: min(100% - 28px, 1120px); }
  h1 { font-size: 34px; }
  .lead { font-size: 16px; }
  .actions .button { width: 100%; }
  .card, .panel, .snapshot, .report-cover, .report-body { padding: 18px; }
  .meta-grid { grid-template-columns: 1fr; }
}