/* =====================================================
   v27-unified.css — v19〜v26の10層スタックを1枚に統合
   デザインシステム（この4原則以外の装飾を足さない）
   1. 文字サイズは7段のみ（--fs-*）。中間サイズ禁止
   2. 白文字を置ける背景は --dark と --coral の2色のみ
   3. 線は「カードの輪郭」と「表の行」だけ。見出し下線・
      セクション区切り・装飾の水平線は使わない
   4. 区切りは背景色（白⇄淡アクア⇄濃色2箇所）と余白で作る
   ===================================================== */

:root {
  --ink: #25343a;
  --muted: #5f6d72;
  --line: #cfe4ea;
  --paper: #fbfcfc;
  --soft: #e3f6fa;
  --aqua: #3ec3dd;
  --aqua-ink: #04424f;
  --aqua-deep: #075d6e;
  --dark: #075d6e;
  --coral: #e8734a;
  --coral-dark: #d15f37;
  --green-dark: #0d7f38;
  --marker: #ffe15c;
  --radius: 6px;

  /* type scale (mobile) */
  --fs-display: 72px;   /* 76% / 422,880 の2つだけ */
  --fs-h2: 27px;
  --fs-money: 25px;     /* カード内の金額 */
  --fs-h3: 18px;
  --fs-body: 15px;
  --fs-note: 12px;
  --fs-label: 11px;
}

@media (min-width: 761px) {
  :root {
    --fs-display: 128px;
    --fs-h2: 42px;
    --fs-money: 31px;
    --fs-h3: 20px;
    --fs-body: 16px;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.85;
  letter-spacing: 0.015em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

body, button, input, select, textarea { font-family: inherit; }

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

a { color: inherit; }

button, input, select, textarea { font-size: 16px; }

.container, .narrow {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}

.narrow { width: min(780px, 100% - 40px); }

.no-break { white-space: nowrap; }

.mobile-only { display: none; }

@media (max-width: 760px) {
  .mobile-only { display: inline; }
}

/* ---------- マーカー（黄・文字の下半分のみ） ---------- */
.marker,
.empathy-card strong {
  background: linear-gradient(transparent 62%, var(--marker) 62%);
  font-weight: 700;
}

/* ---------- skip link ---------- */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 8px 12px;
  color: #fff;
  background: var(--dark);
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus { opacity: 1; pointer-events: auto; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand { display: inline-flex; align-items: center; }

.brand img { width: 220px; }

.header-action { text-align: center; }

.header-action .cta-microcopy { display: none; }

/* ---------- ボタン（コーラル一色） ---------- */
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(232, 115, 74, 0.3);
  transition: background-color 0.15s ease;
}

.btn:hover, .btn:focus-visible { background: var(--coral-dark); }

.header-cta {
  min-height: 42px;
  padding: 8px 18px;
  font-size: 14px;
  box-shadow: none;
}

.cta-microcopy {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: var(--fs-note);
}

/* ---------- hero ---------- */
.hero {
  padding: 56px 0 64px;
  background: var(--aqua);
}

.hero .kicker,
.hero .hero-percent-label,
.hero .hero-percent-copy,
.hero .hero-note,
.hero .hero-actions .cta-microcopy {
  color: var(--aqua-ink);
}

.hero h1 { color: var(--aqua-ink); }

.hero .hero-percent strong { color: var(--aqua-ink); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
}

.kicker {
  width: fit-content;
  margin: 0 0 16px;
  color: var(--aqua-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.hero-percent {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 14px;
  margin-top: 18px;
}

.hero-percent-label {
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-percent strong {
  color: var(--aqua-deep);
  font-size: var(--fs-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero-percent strong span { font-size: 0.42em; }

.hero-percent-copy {
  font-size: 17px;
  font-weight: 700;
}

.hero-result {
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 22px 28px 20px;
  background: #fff;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(4, 66, 79, 0.22);
}

.hero-result-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-result strong {
  display: block;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
}

.hero-result-new {
  color: var(--aqua-deep);
  font-size: clamp(31px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-result .arrow { color: var(--coral); padding-inline: 4px; }

.hero-result-annual {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions { margin-top: 26px; }

.hero-actions .btn { width: 100%; max-width: 460px; }

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-photo { position: relative; margin: 0; }

.hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 700;
}

/* ---------- section 共通 ---------- */
.section { padding: 76px 0; }

.section-alt, .empathy-section { background: var(--soft); }

.cost-section { background: #fff; }

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-number {
  display: block;
  margin-bottom: 10px;
  color: var(--aqua-deep);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-dark .section-number { color: rgba(255, 255, 255, 0.75); }

.section-heading h2, .author-copy h2 {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section-dark .section-heading h2 { color: #fff; }

.section-lead {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--fs-body);
}

.section-heading.center .section-lead { margin-inline: auto; }

.section-dark .section-lead { color: rgba(255, 255, 255, 0.8); }

/* ---------- 中間CTA ---------- */
.mid-cta {
  margin-top: 40px;
  text-align: center;
}

.mid-cta.compact { margin-top: 32px; }

.mid-cta .btn { width: 100%; max-width: 460px; }

.mid-cta > span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--fs-note);
}

.mid-cta.on-dark .cta-microcopy,
.mid-cta.on-dark > span { color: rgba(255, 255, 255, 0.8); }

/* ---------- FEEL あるある ---------- */
.empathy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.empathy-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.empathy-check {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--aqua-deep);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

.empathy-card p { margin: 0; font-size: var(--fs-body); }

.empathy-close {
  margin: 36px auto 0;
  max-width: 700px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
  text-wrap: balance;
}

/* ---------- 家族用シートDL ---------- */
.dl-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 34px;
  max-width: 900px;
  margin: 44px auto 0;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dl-eyebrow {
  width: fit-content;
  margin: 0 0 10px;
  padding: 3px 9px;
  color: var(--aqua-deep);
  background: var(--soft);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.dl-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.5;
  text-wrap: balance;
}

.dl-lead {
  margin: 12px 0 0;
  font-size: var(--fs-body);
}

.dl-list {
  margin: 14px 0 0;
  padding-left: 1.25em;
  color: var(--muted);
  font-size: 14px;
}

.dl-list li + li { margin-top: 5px; }

.dl-list strong { color: var(--ink); }

.dl-action { text-align: center; }

.btn-outline {
  width: 100%;
  color: var(--aqua-deep);
  background: #fff;
  border: 2px solid var(--aqua-deep);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #fff;
  background: var(--aqua-deep);
}

.form-alt {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-alt a { color: var(--aqua-deep); }

/* ---------- COST 放置コスト ---------- */
.cost-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.cost-table thead th {
  padding: 14px 8px 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}

.cost-table thead th.reviewed { color: var(--aqua-deep); }

.cost-table tbody th {
  padding: 14px 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.cost-table tbody tr { border-top: 1px solid var(--line); }

.cost-table tbody td {
  padding: 14px 8px;
  color: var(--ink);
  font-size: var(--fs-money);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.cost-table tbody td.reviewed {
  color: var(--aqua-deep);
  font-weight: 800;
}

.cost-result {
  max-width: 860px;
  margin: 18px auto 0;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.cost-result > span {
  display: block;
  margin-bottom: 2px;
  font-size: var(--fs-body);
  font-weight: 800;
}

.cost-result strong {
  display: inline-block;
  color: var(--aqua-deep);
  background: linear-gradient(transparent 72%, var(--marker) 72%);
  font-size: var(--fs-display);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.cost-result strong span { font-size: 0.4em; font-weight: 800; }

.cost-result p {
  margin: 10px 0 0;
  font-size: var(--fs-body);
  font-weight: 700;
}

.cost-note, .case-note {
  max-width: 860px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: var(--fs-note);
}

/* ---------- CASE 事例 ---------- */
.case-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-name {
  margin: 0 0 10px;
  font-size: var(--fs-h3);
  font-weight: 800;
}

.labels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
}

.label {
  padding: 3px 8px;
  color: var(--aqua-deep);
  background: var(--soft);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 700;
}

.case-amount {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

.case-amount > span {
  color: var(--aqua-deep);
  font-size: var(--fs-money);
  font-weight: 800;
}

.case-amount .amount-range { font-size: inherit; }

.case-amount small {
  display: block;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.case-summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- CAUSE 理由 ---------- */
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card img { width: 100%; height: 210px; object-fit: cover; }

.info-body { padding: 22px; }

.card-index {
  display: block;
  margin-bottom: 6px;
  color: var(--aqua-deep);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.info-body h3 {
  margin: 0;
  font-size: var(--fs-h3);
  line-height: 1.55;
}

.info-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.data-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

/* ---------- LIFE ---------- */
.life-photo { margin: 0 0 24px; }

.life-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.life-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.life-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
}

.life-card > p {
  margin: 12px 0 0;
  color: var(--muted);
}

.life-card ul {
  margin: 16px 0 0;
  padding-left: 1.3em;
  color: var(--green-dark);
  font-weight: 700;
}

.life-card li + li { margin-top: 6px; }

/* ---------- DIAGNOSIS ---------- */
.support-heading { max-width: 900px; }

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
}

.service-panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.service-panel img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-content { padding: 28px; }

.service-label {
  width: fit-content;
  margin: 0 0 10px;
  padding: 3px 8px;
  color: var(--aqua-deep);
  background: var(--soft);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 800;
}

.service-content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.service-content > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-steps {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
}

.service-steps li + li { border-top: 1px solid var(--line); }

.service-steps strong { color: var(--aqua-deep); }

.service-steps span { color: var(--muted); font-size: 14px; }

.service-note {
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

/* ---------- PAYBACK ---------- */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.roi-card {
  padding: 26px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.roi-saving {
  margin: 0;
  font-size: var(--fs-body);
  font-weight: 700;
}

.roi-arrow {
  display: block;
  margin: 10px 0 4px;
  color: var(--muted);
  font-size: var(--fs-note);
  font-weight: 700;
}

.roi-months {
  margin: 0;
  color: var(--green-dark);
  font-size: var(--fs-money);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ---------- PRICE ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card.featured { border-top: 4px solid var(--aqua-deep); }

.price-card.support-option { border-top: 4px solid var(--line); }

.price-badge {
  width: fit-content;
  margin: 0 0 10px;
  padding: 3px 8px;
  color: var(--aqua-deep);
  background: var(--soft);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 800;
}

.price-card h3 { margin: 0; font-size: 21px; }

.price {
  margin: 14px 0 4px;
  font-weight: 700;
}

.price strong {
  color: var(--aqua-deep);
  font-size: 38px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.price-card.featured .price strong {
  background: linear-gradient(transparent 72%, var(--marker) 72%);
}

.price small { color: var(--muted); font-size: var(--fs-note); }

.price-term {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: var(--fs-note);
}

.price-list {
  margin: 18px 0 0;
  padding-left: 1.3em;
}

.price-list li + li { margin-top: 6px; }

.price-method {
  margin: 16px 0 0;
  padding: 10px 12px;
  background: var(--soft);
  border-radius: 4px;
  color: var(--aqua-deep);
  font-size: 13px;
  font-weight: 500;
}

.price-method strong { font-weight: 800; }

.price-footnote {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: var(--fs-note);
}

.support-examples {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.support-examples th {
  padding: 8px 4px;
  background: var(--soft);
  color: var(--aqua-deep);
  font-size: var(--fs-note);
  font-weight: 800;
  text-align: left;
}

.support-examples th:last-child,
.support-examples td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 800;
}

.support-examples td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

/* ---------- NEUTRAL ---------- */
.neutral-preface {
  margin: 0 auto 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body);
  font-weight: 700;
  text-align: center;
}

.neutral-statement {
  margin: 0 auto 30px;
  max-width: 780px;
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.neutral-statement .no-break {
  padding-bottom: 2px;
  border-bottom: 4px solid var(--marker);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  padding: 26px;
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
}

.compare-card h3 {
  margin: 0;
  color: var(--aqua-deep);
  font-size: var(--fs-h3);
}

.compare-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- PROMISE ---------- */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.promise {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promise-no {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua-deep);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.promise h3 { margin: 0; font-size: 16px; line-height: 1.5; }

.promise p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- FLOW ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flow-no {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua-deep);
  font-size: var(--fs-label);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.flow-card h3 { margin: 0; font-size: 16px; line-height: 1.5; }

.flow-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- APPLY ---------- */
.apply-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.apply-intro li {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.apply-intro strong, .apply-intro span { display: block; }

.apply-intro strong { font-size: 13px; }

.apply-intro span {
  margin-top: 3px;
  color: var(--muted);
  font-size: var(--fs-label);
}

.form-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}

.field { min-width: 0; }

.field-full { grid-column: 1 / -1; }

fieldset { margin: 0; padding: 0; border: 0; }

.field-label, legend {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.required, .optional {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: 1px;
}

.required { color: #fff; background: var(--coral-dark); }

.optional { color: var(--muted); background: #e9efef; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #a9bfc3;
  border-radius: 5px;
  outline: 0;
}

textarea { line-height: 1.7; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--aqua-deep);
  box-shadow: 0 0 0 3px rgba(7, 93, 110, 0.14);
}

.field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: var(--fs-note);
}

.weekday-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.day-choice { cursor: pointer; }

.day-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.day-choice span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #a9bfc3;
  border-radius: 5px;
  font-weight: 700;
}

.day-choice input:checked + span {
  color: #fff;
  background: var(--aqua-deep);
  border-color: var(--aqua-deep);
}

.day-choice input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(7, 93, 110, 0.2);
}

.saturday-note {
  display: none;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--fs-label);
}

.saturday-note.is-visible { display: block; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--soft);
  border-radius: 5px;
  font-size: 13px;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 5px;
}

.consent a, .calendar-link { color: var(--aqua-deep); }

.form-bottom {
  margin-top: 26px;
  text-align: center;
}

.submit-btn { width: min(100%, 460px); }

.form-hours, .form-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--fs-note);
}

.form-status { min-height: 1.8em; font-weight: 700; }

.form-status.is-error { color: #a4372e; }

.form-status.is-success { color: var(--green-dark); }

.calendar-link {
  display: inline-block;
  margin-top: 7px;
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- MESSAGE ---------- */
.author-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  max-width: 920px;
}

.author-photo { margin: 0; }

.author-photo img {
  width: 100%;
  height: 288px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.author-copy h2 { margin-top: 8px; }

.author-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.author-sign {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.credentials li {
  padding: 6px 10px;
  color: var(--aqua-deep);
  background: var(--soft);
  border-radius: 4px;
  font-size: var(--fs-note);
  font-weight: 700;
}

/* ---------- footer ---------- */
.site-footer {
  padding: 48px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
}

.footer-brand strong { color: #fff; font-size: 17px; }

.footer-brand p { margin: 8px 0 0; font-size: 13px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 8px 20px;
}

.footer-links a { font-size: var(--fs-note); }

.copyright {
  margin: 28px 0 0;
  font-size: var(--fs-label);
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- mobile CTA ---------- */
.mobile-cta { display: none; }

/* =====================================================
   responsive
   ===================================================== */

@media (max-width: 960px) {
  .hero-grid { gap: 36px; }

  .promise-grid, .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .service-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 58px; }

  .brand img { width: 190px; }

  .header-cta { display: inline-flex; }

  .hero { padding: 40px 0 48px; }

  .hero-grid { grid-template-columns: 1fr; gap: 26px; }

  .hero-photo img { height: 320px; }

  .section { padding: 56px 0; }

  .section-heading { margin-bottom: 26px; }

  .empathy-grid { grid-template-columns: 1fr; gap: 10px; }

  .empathy-close { font-size: 18px; }

  .dl-card {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
    padding: 24px 20px;
  }

  .dl-card h3 { font-size: 19px; }

  .cost-table-wrap { padding: 4px 16px; }

  .cost-table thead th { font-size: 12px; }

  .case-track { grid-template-columns: 1fr; }

  .three-grid { grid-template-columns: 1fr; }

  .info-card img { height: 200px; }

  .life-photo img { height: 240px; }

  .life-grid { grid-template-columns: 1fr; }

  .roi-grid { grid-template-columns: 1fr; gap: 10px; }

  .roi-card {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    padding: 18px 20px;
    text-align: left;
  }

  .roi-card .roi-arrow { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }

  .compare-grid { grid-template-columns: 1fr; }

  .promise-grid, .flow-grid { grid-template-columns: 1fr; }

  .apply-intro { grid-template-columns: 1fr; }

  .form-card { padding: 24px 18px; }

  .form-grid { grid-template-columns: 1fr; }

  .field-full { grid-column: auto; }

  .weekday-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .author-grid { grid-template-columns: 1fr; gap: 26px; }

  .author-photo { max-width: 230px; margin-inline: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 26px; }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn { width: 100%; min-height: 50px; }

  .mobile-cta .cta-microcopy { margin-top: 4px; }

  .site-footer { padding-bottom: 120px; }
}

@media (max-width: 520px) {
  .hero h1 br { display: none; }

  .hero-photo img { height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after { transition: none !important; }
}
