:root {
  color-scheme: light;
  --color-primary: #183654;
  --color-primary-2: #244c6f;
  --color-accent: #17746d;
  --color-accent-dark: #0e5f58;
  --color-gold: #b98749;
  --color-paper: #ffffff;
  --color-bg: #f5f8f7;
  --color-warm: #f8f2ea;
  --color-mist: #eef5f4;
  --color-text: #172238;
  --color-muted: #5b6878;
  --color-border: #dfe7e9;
  --shadow-soft: 0 18px 48px rgba(24, 54, 84, .12);
  --shadow-card: 0 8px 24px rgba(24, 54, 84, .08);
  --radius: 8px;
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  min-width: 320px;
  padding-bottom: 68px;
  background: var(--color-paper);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  border-bottom: 1px solid rgba(223, 231, 233, .92);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "神奈川県対応｜生前相談受付中｜将来の葬儀と相続登記を事前整理";
  display: block;
  grid-column: 1 / -1;
  padding: 5px 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  padding: 10px 12px 10px 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.brand-text small {
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.25;
}

.header-cta {
  display: grid;
  place-items: center;
  min-width: 116px;
  padding: 0 14px;
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.header-cta span,
.header-cta small {
  display: block;
}

.header-cta span {
  line-height: 1.2;
}

.header-cta small {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  opacity: .9;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 48px;
  background:
    linear-gradient(110deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 48%, rgba(238,245,244,.72) 100%),
    linear-gradient(150deg, #eef7f5 0%, #fff 52%, #f8f2ea 100%);
}

.hero__bg-art {
  position: absolute;
  inset: 0;
  opacity: .55;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.hero__title {
  color: var(--color-primary);
  font-size: clamp(28px, 7.2vw, 58px);
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.hero__subtitle {
  margin-top: 16px;
  color: var(--color-primary-2);
  font-size: clamp(17px, 4vw, 24px);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero__lead {
  margin-top: 18px;
  color: #334357;
  font-size: 15px;
}

.hero__actions {
  margin-top: 24px;
}

.concept-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.concept-strip span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(23,116,109,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.8);
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.hero__note,
.final-cta__note {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__visual > svg {
  display: none;
}

.hero__visual::before {
  content: none;
}

.hero__visual::after {
  content: none;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px dashed rgba(23, 116, 109, .62);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23,116,109,.1) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(225deg, rgba(24,54,84,.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(150deg, #f9fcfc, #edf5f4);
  color: var(--color-primary);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(24,54,84,.16);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), rgba(24,54,84,.18), transparent calc(50% + 1px)),
    linear-gradient(to top right, transparent calc(50% - 1px), rgba(24,54,84,.18), transparent calc(50% + 1px));
  opacity: .55;
  pointer-events: none;
}

.image-placeholder > * {
  position: relative;
  z-index: 1;
}

.image-placeholder strong {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.image-placeholder small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.55;
}

.image-placeholder--hero {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border-style: solid;
  background:
    linear-gradient(rgba(24,54,84,.08), rgba(24,54,84,.08)),
    linear-gradient(145deg, #ecf7f5 0%, #fff 46%, #f6eee4 100%);
  box-shadow: var(--shadow-soft);
}

.image-placeholder--hero strong {
  max-width: 360px;
  font-size: 24px;
}

.image-placeholder--hero-mobile {
  display: none;
}

.image-placeholder--portrait {
  min-height: 520px;
}

.image-placeholder--card {
  min-height: 190px;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.image-placeholder--wide,
.image-placeholder--banner,
.image-placeholder--final {
  margin-top: 30px;
  min-height: 320px;
}

.image-placeholder--banner {
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(185,135,73,.12) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(150deg, #fffdf8, #f7efe3);
}

.image-placeholder--reason {
  min-height: 150px;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.image-placeholder--reason strong {
  font-size: 16px;
}

.image-placeholder--flow {
  margin-bottom: 28px;
}

.image-placeholder--final {
  max-width: 900px;
  margin: 0 auto 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border-color: rgba(255,255,255,.46);
  color: #fff;
}

.image-placeholder--final small {
  color: rgba(255,255,255,.78);
}

.photo-frame {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23,116,109,.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(24,54,84,0) 55%, rgba(24,54,84,.12) 100%),
    linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,0) 42%);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--hero {
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-soft);
}

.photo-frame--hero img {
  object-position: 48% center;
}

.photo-frame--hero-mobile {
  display: none;
}

.photo-frame--trust {
  aspect-ratio: 4 / 3;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.photo-frame--trust img {
  object-position: center;
}

.photo-frame--portrait {
  min-height: 520px;
}

.photo-frame--portrait img {
  object-position: center top;
}

.photo-frame--card {
  aspect-ratio: 16 / 9;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.photo-frame--wide,
.photo-frame--banner,
.photo-frame--final {
  margin-top: 30px;
  min-height: 320px;
}

.photo-frame--wide {
  aspect-ratio: 16 / 6;
}

.photo-frame--banner {
  aspect-ratio: 16 / 5;
  min-height: 240px;
}

.photo-frame--reason {
  aspect-ratio: 16 / 10;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.photo-frame--flow {
  margin-bottom: 28px;
}

.photo-frame--final {
  max-width: 900px;
  margin: 0 auto 30px;
  border-color: rgba(255,255,255,.46);
}

.photo-frame--final::after {
  background:
    linear-gradient(180deg, rgba(15,36,56,0) 45%, rgba(15,36,56,.22) 100%),
    linear-gradient(120deg, rgba(255,255,255,.16), rgba(255,255,255,0) 44%);
}

.media-split {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-label {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.btn small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(23,116,109,.22);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  border: 1px solid var(--color-accent);
  background: #fff;
  color: var(--color-accent-dark);
}

.btn-primary--urgent {
  background: #cf4855;
  box-shadow: 0 10px 24px rgba(207,72,85,.22);
}

.btn-primary--urgent:hover {
  background: #b93d49;
}

.btn-secondary--document {
  border-color: #2d67a4;
  background: #2d67a4;
  color: #fff;
  box-shadow: 0 10px 24px rgba(45,103,164,.18);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cta-group {
  display: grid;
  gap: 12px;
}

.legal-note {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(223,231,233,.92);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.65;
}

section {
  padding: 58px 0;
}

.section-title {
  color: var(--color-primary);
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: var(--color-accent);
}

.section-lead {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--color-muted);
  text-align: center;
}

.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.decision-support {
  padding: 44px 0 58px;
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, var(--color-mist) 58%, var(--color-mist) 100%);
}

.alert-card {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px;
  border: 2px solid rgba(207,72,85,.55);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.alert-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #cf4855;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.alert-card__eyebrow {
  color: #cf4855;
  font-size: 13px;
  font-weight: 900;
}

.alert-card__title {
  margin-top: 4px;
  color: var(--color-primary);
  font-size: clamp(24px, 5.8vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.alert-card__body {
  margin-top: 12px;
  color: #334357;
}

.alert-card__note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-warm);
  color: var(--color-primary);
  font-weight: 800;
}

.consult-cta-card {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin: 28px auto 0;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.consult-cta-card__heading {
  text-align: center;
}

.consult-cta-card__heading p {
  color: var(--color-accent-dark);
  font-weight: 900;
}

.consult-cta-card__heading strong {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-size: clamp(24px, 5.4vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.consult-cta-card__heading span {
  display: block;
  margin-top: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(207,72,85,.64);
  border-radius: var(--radius);
  color: #cf4855;
  font-size: 14px;
  font-weight: 900;
}

.consult-cta-card__actions {
  display: grid;
  gap: 12px;
}

.consult-cta-card__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: -4px;
}

.consult-cta-card__facts li {
  padding: 7px 8px;
  border: 1px solid rgba(23,116,109,.24);
  border-radius: var(--radius);
  background: var(--color-mist);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.trust-bar {
  display: grid;
  gap: 8px;
  max-width: 920px;
  margin: 18px auto 0;
  padding: 14px;
  border: 1px solid rgba(24,54,84,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-card);
}

.trust-bar span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.trust-bar strong {
  color: var(--color-accent-dark);
  font-size: 11px;
  font-weight: 900;
}

.consult-preview {
  max-width: 920px;
  margin: 18px auto 0;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.consult-preview h3 {
  color: var(--color-primary);
  font-size: clamp(20px, 4.8vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.consult-preview ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.consult-preview li {
  padding: 14px;
  border: 1px solid rgba(23,116,109,.2);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.consult-preview strong {
  display: block;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.consult-preview span {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.decision-check {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 24px;
  border-radius: var(--radius);
  background: #fffdf1;
  box-shadow: var(--shadow-card);
}

.decision-check h3 {
  color: var(--color-primary);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.decision-check ul {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.decision-check li {
  position: relative;
  padding-left: 34px;
  color: var(--color-muted);
}

.decision-check li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .5em;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  transform: rotate(-45deg);
}

.decision-check strong {
  display: block;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 900;
}

.decision-check span {
  display: block;
  margin-top: 3px;
}

.trust-proof {
  background: #fff;
}

.trust-proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.trust-proof-card {
  padding: 22px;
}

.image-placeholder--trust {
  min-height: 170px;
  margin: -2px -2px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: none;
}

.trust-proof-card h3 {
  color: var(--color-primary);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.trust-proof-card p {
  margin-top: 10px;
  color: var(--color-muted);
}

.empathy {
  background: #fff;
}

.worry-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.worry-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}

.worry-list__num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.empathy__story {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius);
  background: var(--color-warm);
}

.empathy__story blockquote {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
}

.empathy__story p {
  margin-top: 12px;
  color: var(--color-muted);
}

.empathy__closing {
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.consultation-types,
.comparison,
.faq {
  background: var(--color-bg);
}

.consultation-cards,
.reasons-grid,
.comparison-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.consultation-card,
.reason-card,
.comparison-item {
  padding: 22px;
}

.consultation-card h3,
.reason-card h3,
.comparison-item h3,
.story-block h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.consultation-card p,
.reason-card p,
.comparison-item p {
  margin-top: 12px;
  color: var(--color-muted);
}

.consultation-card .btn {
  margin-top: 18px;
}

.service-proposal {
  background: #fff;
}

.story-block {
  margin-top: 30px;
  padding: 24px;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  background: var(--color-mist);
}

.story-block p,
.story-block strong {
  margin-top: 14px;
}

.story-block strong {
  display: block;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.65;
}

.story-block .price-highlight {
  color: var(--color-accent-dark);
  font-weight: 900;
}

.pricing {
  background: var(--color-warm);
}

.price-card {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 28px 18px;
  border: 3px solid var(--color-accent);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.price-card__name {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.price-card__amount {
  margin-top: 10px;
  color: var(--color-primary);
  font-size: clamp(52px, 15vw, 86px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.price-card__tax {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 700;
}

.price-card__tagline {
  margin-top: 18px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.included-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.included-block {
  padding: 22px;
}

.included-block h4,
.public-fees h4 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .72em;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.public-fees {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(185,135,73,.35);
  border-radius: var(--radius);
  background: #fffdf8;
}

.public-fees p,
.public-fees li {
  color: var(--color-muted);
}

.public-fees p {
  margin-top: 8px;
}

.public-fees ol {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-left: 1.25em;
  list-style: decimal;
}

.price-notes {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}

.price-notes details {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(185,135,73,.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}

.price-notes summary {
  color: var(--color-primary);
  font-weight: 900;
  cursor: pointer;
}

.price-notes details p {
  margin-top: 8px;
}

.pricing .cta-group {
  margin-top: 28px;
}

.reason-card {
  text-align: center;
}

.reason-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--color-mist);
  color: var(--color-accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.reason-card p {
  text-align: left;
}

.comparison-item .ours {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(23,116,109,.09);
  color: var(--color-accent-dark);
  font-weight: 800;
}

.flow {
  background: #fff;
}

.flow-steps {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.flow-step__num {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.flow-step h3 {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
}

.flow-step p {
  margin-top: 6px;
  color: var(--color-muted);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

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

.faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 48px 16px 18px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.55;
  text-align: left;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  padding-bottom: calc(58px + 68px);
  background: linear-gradient(150deg, var(--color-primary), #10283f);
  color: #fff;
}

.final-cta .section-title {
  color: #fff;
}

.final-cta .section-title::after {
  background: rgba(255,255,255,.75);
}

.final-cta__body {
  max-width: 780px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.88);
  text-align: center;
}

.final-cta .cta-group {
  margin-top: 28px;
}

.final-cta .btn-primary {
  background: #fff;
  color: var(--color-accent-dark);
}

.final-cta .btn-secondary {
  border-color: rgba(255,255,255,.74);
  background: transparent;
  color: #fff;
}

.final-cta .legal-note {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.22);
}

.site-footer {
  padding: 24px 16px;
  background: #0f2438;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  text-align: center;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 8px 12px;
  border-top: 1px solid var(--color-border);
  background: rgba(255,255,255,.96);
  box-shadow: 0 -8px 22px rgba(0,0,0,.1);
  backdrop-filter: blur(14px);
}

.sticky-cta .btn {
  min-height: 50px;
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .site-header {
    align-items: stretch;
  }

  .brand {
    padding-left: 32px;
  }

  .header-cta {
    min-width: 190px;
    font-size: 16px;
  }

  .hero {
    padding: 64px 0 70px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
    align-items: center;
    gap: 46px;
  }

  .hero__visual {
    min-height: 520px;
  }

  .image-placeholder--hero {
    min-height: 520px;
  }

  .photo-frame--hero {
    min-height: 520px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .media-split--empathy {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    align-items: stretch;
  }

  .cta-group {
    grid-template-columns: 1fr 1fr;
  }

  .concept-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .alert-card {
    grid-template-columns: 64px 1fr;
    align-items: start;
    padding: 30px;
  }

  .consult-cta-card {
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    align-items: center;
    padding: 30px;
  }

  .consult-cta-card__heading {
    text-align: left;
  }

  .consult-cta-card__actions {
    grid-template-columns: 1fr 1fr;
  }

  .consult-cta-card__facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }

  .consult-preview ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .decision-check ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .consultation-cards,
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .comparison-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .image-placeholder--wide {
    min-height: 380px;
  }

  .photo-frame--wide {
    min-height: 380px;
  }

  .image-placeholder--banner {
    min-height: 280px;
  }

  .photo-frame--banner {
    min-height: 280px;
  }

  .cta-group--center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group--center .btn {
    width: auto;
    min-width: 330px;
  }

  .sticky-cta {
    display: none;
  }

  .final-cta {
    padding-bottom: 70px;
  }
}

@media (min-width: 1040px) {
  section {
    padding: 78px 0;
  }

  .flow-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flow-step__num {
    margin: 0 auto;
  }
}

@media (max-width: 759px) {
  .hero__visual {
    display: none;
  }

  .image-placeholder--hero-mobile {
    display: grid;
    min-height: 220px;
    margin-top: 18px;
  }

  .photo-frame--hero-mobile {
    display: block;
    aspect-ratio: 16 / 10;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header::before {
    padding-inline: 8px;
    font-size: 10px;
    line-height: 1.4;
  }

  .brand-text strong {
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero__title {
    font-size: 21px;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero__subtitle,
  .section-title {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .btn {
    padding-inline: 12px;
  }

  .hero__visual {
    min-height: 280px;
  }

  .price-card__amount {
    font-size: 44px;
  }

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