@charset "UTF-8";

/* =========================================================
   HIP LP  共通スタイル
   ブランド：紺 #0a2463 / 金 #c0a062 / オレンジ #e85d04 / 白 #fdfdfd
   見出し Noto Serif JP ／ 本文 Noto Sans JP
   モバイルファースト（375px基準）／ デスクトップ max-width 1080px
   ========================================================= */

:root {
  --navy: #0a2463;
  --navy-deep: #071a49;
  --gold: #c0a062;
  --gold-soft: #d8c398;
  --orange: #e85d04;
  --orange-deep: #cf5303;
  --white: #fdfdfd;

  --ink: #23262f;
  --ink-soft: #4a4f5c;
  --line: #e3e5ea;
  --bg-tint: #f5f4f0;
  --bg-navy-tint: #eef1f7;

  --serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --wrap: 1080px;
  --wrap-narrow: 760px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(10, 36, 99, 0.10);
  --shadow-sm: 0 2px 10px rgba(10, 36, 99, 0.08);

  --sticky-bar-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding: 48px 0; }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy); color: #eef1f7; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section__head { margin-bottom: 28px; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.section h2 { font-size: clamp(1.4rem, 5.4vw, 2rem); }
.section h3 { font-size: 1.15rem; }
.lead { font-size: 1.02rem; color: var(--ink-soft); }

.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 253, 253, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding-block: 8px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.25; }
.brand__mark {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}
.brand__full { font-size: 0.62rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
}
.header-tel .tel-ico { width: 15px; height: 15px; fill: var(--orange); flex: none; }
.header-tel__num { font-family: var(--serif); font-size: 1.02rem; letter-spacing: 0.02em; }
.header-tel__label { display: none; font-size: 0.62rem; color: var(--ink-soft); font-weight: 500; }

/* ---------- Buttons / CTA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 16px 30px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.32);
}
.btn--cta {
  background: var(--orange);
  color: #fff;
  width: 100%;
  max-width: 420px;
}
.btn--cta:hover { background: var(--orange-deep); color: #fff; transform: translateY(-1px); }
.btn--cta:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--bg-navy-tint); color: var(--navy); }
.btn .btn-ico { width: 18px; height: 18px; fill: currentColor; flex: none; }

.cta-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 10px 0 0;
  text-align: center;
}
.section--navy .cta-note { color: #c7cfe0; }
.cta-block { text-align: center; }
.cta-block .btn--cta { margin-inline: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(192,160,98,0.18), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 40px 0 44px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 7vw, 2.7rem);
  line-height: 1.5;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero h1 .hl { color: var(--gold-soft); }
.hero__sub {
  font-size: 1.02rem;
  color: #dfe4f0;
  margin-bottom: 22px;
  max-width: 44ch;
}
.hero .btn--cta { box-shadow: 0 8px 26px rgba(232, 93, 4, 0.45); }
.hero__ctawrap { margin-top: 8px; }

/* trust chips */
.trust-chips {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-chips li {
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 13px;
  letter-spacing: 0.01em;
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px 14px 48px;
  font-size: 0.97rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid var(--navy);
  border-radius: 5px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230a2463' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M4 12l5 5 11-12'/%3E%3C/svg%3E") center/14px no-repeat;
}
.checklist__closer {
  margin-top: 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: 1rem;
}

/* ---------- Stat cards ---------- */
.stat-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card__num {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.stat-card__num .unit { font-size: 1.1rem; }
.stat-card__desc { font-size: 0.9rem; color: var(--ink-soft); margin-top: 8px; }
.footnotes {
  margin-top: 16px;
  font-size: 0.74rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.footnotes p { margin: 0 0 4px; }

/* ---------- Diagram ---------- */
.figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  margin-top: 22px;
  box-shadow: var(--shadow-sm);
}
.figure figcaption {
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.figure svg { width: 100%; height: auto; }

/* flow diagram (CSS) */
.flow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.flow__node {
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--line);
  background: var(--bg-navy-tint);
  color: var(--navy);
}
.flow__node .n-sub { display: block; font-size: 0.78rem; font-weight: 500; color: var(--ink-soft); margin-top: 3px; }
.flow__node--warn { background: #fff3ec; border-color: #f6c7a6; color: var(--orange-deep); }
.flow__node--good { background: #eef7f0; border-color: #bfe0c6; color: #1f7a3d; }
.flow__arrow { text-align: center; color: var(--gold); font-size: 1.3rem; line-height: 1; }

/* before/after two-col */
.ba-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.ba-card {
  border-radius: var(--radius);
  padding: 16px;
  border: 1.5px solid var(--line);
}
.ba-card--before { background: #eef7f0; border-color: #bfe0c6; }
.ba-card--after { background: #fdeee7; border-color: #f4c3a1; }
.ba-card h4 { font-size: 1rem; margin-bottom: 8px; }
.ba-card--before h4 { color: #1f7a3d; }
.ba-card--after h4 { color: var(--orange-deep); }
.ba-card ul { margin: 0; padding-left: 1.1em; font-size: 0.9rem; }
.ba-card li { margin-bottom: 4px; }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 18px; }
table.compare {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
table.compare th, table.compare td {
  border: 1px solid var(--line);
  padding: 12px 12px;
  vertical-align: top;
  text-align: left;
}
table.compare thead th {
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  text-align: center;
}
table.compare thead th:first-child { background: var(--navy-deep); }
table.compare tbody th {
  background: var(--bg-navy-tint);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}
table.compare .col-hl { background: #fbf7ee; }

/* ---------- Power / feature cards ---------- */
.card-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.feat-card__tag {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.feat-card--gold .feat-card__tag { background: var(--gold); color: var(--navy-deep); }
.feat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feat-card p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }
.feat-card .micro { display: block; margin-top: 8px; font-size: 0.78rem; color: var(--ink-soft); }

/* risk cards (mochibun) */
.risk-card { border-left: 4px solid var(--orange); }
.risk-card h3 { color: var(--orange-deep); }

/* ---------- Experts ---------- */
.expert-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.expert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.expert-card__photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 14px rgba(10,36,99,0.14);
}
.expert-card__name { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.expert-card__title { font-size: 0.82rem; color: var(--ink-soft); margin: 4px 0 8px; }
.expert-card__line { font-size: 0.9rem; color: var(--ink); margin: 0; }
.expert-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 1px 9px;
  margin-bottom: 6px;
}

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 18px 64px;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.steps h3 { font-size: 1rem; margin-bottom: 4px; }
.steps p { font-size: 0.9rem; margin: 0; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 46px 16px 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.6;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--gold);
  border-bottom: 2.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq__q[aria-expanded="true"]::after { transform: rotate(-135deg); top: 26px; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq__a-inner {
  padding: 0 18px 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Cost / plain block ---------- */
.plain-block {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.plain-block p:last-child { margin-bottom: 0; }

.callout {
  background: var(--bg-navy-tint);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--navy);
  margin-top: 16px;
  border: 1px solid #dfe4f2;
}

/* deadline band (mochibun) */
.deadline-band {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(232,93,4,0.28);
}
.deadline-band h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.deadline-band .big-date {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  display: block;
  margin: 6px 0;
  letter-spacing: 0.02em;
}
.deadline-band p { font-size: 0.9rem; margin: 8px 0 0; color: #fff2ea; }

/* definition list for 認定制度 */
.deflist { display: grid; gap: 12px; margin-top: 4px; }
.deflist > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.deflist dt { font-weight: 700; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.deflist dd { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Hub cards ---------- */
.hub-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 8px; }
.hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.hub-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(10,36,99,0.16); color: var(--ink); }
.hub-card__eyebrow { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 6px; }
.hub-card__title { font-family: var(--serif); font-weight: 700; color: var(--navy); font-size: 1.3rem; margin-bottom: 14px; }
.hub-card__go { margin-top: auto; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.hub-card__go::after { content: "→"; }

/* ---------- Form ---------- */
.form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-field { margin-bottom: 18px; }
.form-field > label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.req { color: var(--orange); font-size: 0.78rem; margin-left: 4px; font-weight: 700; }
.opt { color: var(--ink-soft); font-size: 0.72rem; margin-left: 4px; font-weight: 500; }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,99,0.14);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230a2463' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
}
.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  background: var(--bg-tint);
  border-radius: 10px;
  padding: 14px;
}
.agree input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--navy); }
.agree label { font-weight: 500; color: var(--ink); }

/* honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-submit { margin-top: 8px; text-align: center; }
.form-privacy-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #c7cfe0;
  padding: 34px 0 calc(34px + var(--sticky-bar-h));
  font-size: 0.86rem;
}
.site-footer a { color: #fff; }
.site-footer__brand { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 10px; }
.site-footer__row { margin-bottom: 4px; }
.site-footer__links { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer__copy { margin-top: 18px; font-size: 0.74rem; color: #8b95b0; }

/* ---------- Mobile sticky CTA bar ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(253,253,253,0.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px rgba(10,36,99,0.12);
  backdrop-filter: blur(6px);
}
.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 10px;
  min-height: 48px;
}
.sticky-cta__tel { background: var(--navy); color: #fff; flex: 0 0 42%; }
.sticky-cta__tel svg { width: 16px; height: 16px; fill: #fff; }
.sticky-cta__form { background: var(--orange); color: #fff; }
.sticky-cta__form:hover { background: var(--orange-deep); }
.sticky-cta__tel:hover { background: var(--navy-deep); color: #fff; }

/* ---------- Thanks / simple page ---------- */
.simple-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.simple-hero h1 { color: #fff; font-size: clamp(1.5rem, 6vw, 2.2rem); }
.simple-hero .check-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.simple-hero .check-ring svg { width: 36px; height: 36px; stroke: var(--gold-soft); fill: none; }

.doc { padding: 40px 0; }
.doc h1 { font-size: clamp(1.4rem, 5.5vw, 2rem); margin-bottom: 8px; }
.doc h2 { font-size: 1.1rem; margin-top: 26px; }
.doc ol { padding-left: 1.3em; }
.doc li { margin-bottom: 10px; }
.doc .meta { color: var(--ink-soft); font-size: 0.85rem; }

/* utility */
.mt-cta { margin-top: 30px; }
.hide { display: none !important; }

/* ---------- Desktop ---------- */
@media (min-width: 768px) {
  body { font-size: 17px; }
  .section { padding: 68px 0; }
  .header-tel__label { display: block; }
  .header-tel { flex-direction: row; align-items: baseline; gap: 8px; }

  .hero { padding: 64px 0 68px; }
  .hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center; }

  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .expert-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .ba-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .deflist { grid-template-columns: 1fr 1fr; }
  .checklist { grid-template-columns: 1fr 1fr; }

  /* sticky bottom bar is mobile-only */
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 40px; }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .deflist { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
