:root {
  --yellow: #ffae00;
  --yellow-soft: #fff4cf;
  --red: #cc4b37;
  --green: #157539;
  --blue: #2f5f8f;
  --ink: #151515;
  --text: #2f2f2f;
  --muted: #636363;
  --line: #e4e4e4;
  --paper: #ffffff;
  --wash: #f6f7f7;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.58;
}
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 28px;
  background: var(--yellow);
  border-bottom: 1px solid rgba(0,0,0,.16);
  box-shadow: 0 1px 10px rgba(0,0,0,.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  padding: 0;
  text-decoration: none;
}
.brand img { display: block; width: 176px; max-width: 30vw; height: auto; }
.top-nav { display: flex; gap: 24px; align-items: center; font-size: 14px; font-weight: 650; color: #151515; }
.top-nav a { text-decoration: none; }
.top-nav a:hover { color: #000; text-decoration: underline; text-underline-offset: 5px; }
.section, .section-band { padding: 72px 0; }
.section-band { background: linear-gradient(180deg, #fff7df 0%, #ffffff 72%); }
.muted { background: var(--wash); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero { padding-top: 88px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 12px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; color: var(--red); }
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.12; letter-spacing: 0; }
h1 { max-width: 980px; font-size: clamp(40px, 6vw, 78px); }
h2 { font-size: clamp(28px, 3vw, 44px); }
h3 { font-size: 20px; }
p { margin: 14px 0 0; }
.lead { max-width: 820px; font-size: clamp(20px, 2vw, 28px); font-weight: 700; color: #282828; }
.hero-copy > p:not(.eyebrow):not(.lead) { max-width: 860px; font-size: 18px; }
.hero-actions, .support-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.button.primary:hover { background: #f1d600; border-color: #f1d600; }
.button.secondary { background: transparent; border-color: #cfcfcf; }
.hero-panel {
  border: 1px solid var(--line);
  border-left: 6px solid var(--yellow);
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.07);
}
.hero-panel h2 { font-size: 24px; }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li { position: relative; padding-left: 24px; margin-top: 12px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); }
.two-column { display: grid; grid-template-columns: .75fr 1.25fr; gap: 56px; align-items: start; }
.rich-text p:first-child { margin-top: 0; }
.steps, .service-grid, .why-grid { display: grid; gap: 18px; margin-top: 30px; }
.steps { grid-template-columns: repeat(3, 1fr); }
.step-card, .service-card, .why-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.step-card span { display: inline-flex; margin-bottom: 18px; font-weight: 900; color: var(--red); }
.step-card p, .service-card p, .why-grid p { color: var(--muted); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { border-top: 5px solid var(--yellow); min-height: 100%; display: flex; flex-direction: column; }
.service-card.accent-red { border-top-color: var(--red); }
.service-card.accent-yellow { border-top-color: var(--yellow); }
.service-card.accent-ink { border-top-color: var(--ink); }
.service-card.accent-green { border-top-color: var(--green); }
.service-card.accent-blue { border-top-color: var(--blue); }
.service-card.accent-neutral { border-top-color: #9f9f9f; }
.text-link { display: inline-flex; margin-top: auto; padding-top: 18px; color: var(--ink); font-weight: 800; text-decoration-thickness: 2px; text-decoration-color: var(--yellow); text-underline-offset: 5px; }
.support-band { padding: 58px 0; background: var(--ink); color: #f7f7f7; }
.support-band .eyebrow, .support-band h2 { color: #f7f7f7; }
.support-band p { color: #dedede; }
.support-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.support-band .button.secondary { border-color: #5d5d5d; color: #fff; }
.why-grid { grid-template-columns: repeat(3, 1fr); }
.cta { background: #fff4cf; border-top: 1px solid #f2d681; border-bottom: 1px solid #f2d681; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.contact-box { display: grid; gap: 12px; font-size: 24px; font-weight: 850; }
.contact-box a { color: var(--ink); text-decoration-thickness: 2px; text-decoration-color: var(--yellow); text-underline-offset: 5px; }
.site-footer { padding: 54px 0 26px; background: #111; color: #eeeeee; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .6fr; gap: 36px; }
.site-footer img { width: 200px; max-width: 100%; height: auto; }
.site-footer h2 { color: #fff; font-size: 18px; }
.site-footer a { display: block; color: #eeeeee; margin-top: 8px; }
.copyright { width: min(var(--max), calc(100% - 40px)); margin: 34px auto 0; color: #aaa; font-size: 14px; text-align: center; }
@media (max-width: 900px) {
  .site-header { position: static; display: grid; gap: 14px; padding: 0 20px 16px; }
  .brand { min-height: 64px; min-width: 0; width: auto; }
  .brand img { width: 176px; max-width: 72vw; }
  .top-nav { flex-wrap: wrap; gap: 14px; }
  .hero-grid, .two-column, .support-grid, .cta-inner, .footer-grid { grid-template-columns: 1fr; }
  .steps, .service-grid, .why-grid { grid-template-columns: 1fr; }
  .section, .section-band { padding: 48px 0; }
  h1 { font-size: 40px; }
  .contact-box { font-size: 20px; }
}

.rich-text { max-width: 900px; }
.rich-text h1 { max-width: 760px; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; margin-bottom: 20px; }
.rich-text h2 { font-size: clamp(22px, 2vw, 30px); line-height: 1.18; margin-top: 34px; }
.rich-text h2:first-of-type { margin-top: 28px; }
.rich-text h3 { font-size: 18px; }
.legal-text { font-size: 16px; line-height: 1.62; }
.legal-text p { max-width: 860px; margin-top: 12px; }
.detail-hero { padding-top: 62px; padding-bottom: 58px; }
.detail-hero h1 { max-width: 960px; font-size: clamp(38px, 5vw, 64px); }
.detail-hero .lead { max-width: 900px; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 360px; gap: 56px; align-items: start; }
.detail-copy h2:first-child { margin-top: 0; }
.detail-aside {
  border: 1px solid var(--line);
  border-top: 5px solid var(--yellow);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
}
.detail-aside h2 { font-size: 22px; }
.detail-aside .button { width: 100%; margin-top: 22px; }
.detail-aside .check-list li { color: var(--muted); }
.page-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.page-links a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.page-links a:hover { border-color: var(--yellow); background: var(--yellow-soft); }
@media (max-width: 900px) {
  .rich-text h1 { font-size: 34px; }
  .rich-text h2 { font-size: 23px; }
  .detail-grid { grid-template-columns: 1fr; }
}
