:root {
  --navy: #1E3557;
  --navy-dark: #142640;
  --navy-soft: #eef3f9;
  --gold: #B8941F;
  --gold-soft: #f7f1df;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --text: #1d2733;
  --muted: #647286;
  --line: #dfe5ee;
  --soft-line: #edf1f6;
  --red-soft: #fff3f1;
  --green-soft: #eef8f5;
  --shadow: 0 18px 48px rgba(30, 53, 87, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
}

/* Hero photo layout adjustment */
.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  margin-left: auto;
  overflow: visible;
  border-radius: 34px;
}

.hero__photo::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 86%;
  height: 86%;
  border-radius: 34px;
  background: rgba(184, 148, 31, 0.16);
  z-index: -1;
}

.hero__photo::after {
  content: none;
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(30, 53, 87, 0.20);
}

@media (min-width: 981px) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
    gap: clamp(44px, 5vw, 78px);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 4.2vw, 4rem);
  }

  .hero__lead {
    max-width: 660px;
  }
}

@media (max-width: 980px) {
  .hero__photo {
    width: 100%;
    max-width: 680px;
    margin: 28px auto 0;
  }

  .hero__photo::before {
    right: -12px;
    bottom: -12px;
    border-radius: 28px;
  }


  .hero__photo img {
    aspect-ratio: 16 / 10;
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .hero__photo {
    margin-top: 24px;
    border-radius: 22px;
  }

  .hero__photo::before {
    right: -9px;
    bottom: -9px;
    border-radius: 22px;
  }


  .hero__photo img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 1.42;
  letter-spacing: 0.01em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  font-weight: 800;
}

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

.narrow {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 92px 0;
  border-top: 1px solid var(--soft-line);
}

.section--white {
  background: var(--surface);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section-kicker::before {
  content: "";
  width: 3px;
  height: 1.35em;
  background: var(--gold);
  border-radius: 999px;
}

.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 2;
}

.soft-text {
  margin-top: 26px;
  color: var(--muted);
  line-height: 2;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 14px 30px rgba(30, 53, 87, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(30, 53, 87, 0.28);
}

.button--sub {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--white {
  margin-top: 34px;
  background: #fff;
  color: var(--navy);
}

.button--white:hover {
  background: var(--gold-soft);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: 0 14px 34px rgba(7, 19, 36, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-contact::before {
  content: "✉";
  margin-right: 8px;
  font-size: 0.95rem;
}

.floating-contact:hover {
  transform: translateY(-2px);
  background: #c7a43a;
  box-shadow: 0 18px 40px rgba(7, 19, 36, 0.28);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 96px;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 148, 31, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 56%, #eef3f9 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(30, 53, 87, 0.06);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 53, 87, 0.08);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.eyebrow::before {
  content: "";
  width: 3px;
  height: 1.2em;
  background: var(--gold);
  border-radius: 999px;
}

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

.hero__lead {
  margin-top: 28px;
  color: #344156;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 2;
}

.hero__sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__panel {
  padding: 28px;
  border: 1px solid rgba(30, 53, 87, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.panel-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.hero-flow {
  display: grid;
  gap: 12px;
}

.hero-flow div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-weight: 700;
}

.hero-flow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
}

/* Common cards */
.svg-card,
.text-card,
.summary-box {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(30, 53, 87, 0.08);
}

.visual-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.svg-text {
  font-family: "Noto Sans JP", sans-serif;
  fill: var(--navy);
}

.svg-muted {
  font-family: "Noto Sans JP", sans-serif;
  fill: #647286;
}

.svg-sm {
  font-size: 15px;
  font-weight: 700;
}

.svg-md {
  font-size: 17px;
  font-weight: 800;
}

.svg-lg {
  font-size: 21px;
  font-weight: 800;
}

.choice-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.choice-card {
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.choice-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.choice-card h3 {
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
  color: var(--navy);
}

.choice-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.choice-card--gold {
  border-color: rgba(184, 148, 31, 0.55);
  background: #fffdf6;
}

.choice-card--gold span {
  background: var(--gold);
  color: #fff;
}

.choice-card--gold p {
  color: var(--navy);
  font-weight: 800;
}

.summary-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 32px 34px;
  border-color: rgba(184, 148, 31, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 223, 0.72)),
    var(--surface);
}

.summary-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--gold);
}

.summary-box::after {
  content: "✓";
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.summary-box strong {
  display: block;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.65;
  margin-bottom: 6px;
  grid-column: 2;
}

.summary-box p {
  color: #4f5f73;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
  grid-column: 2;
}

/* Future */
.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.future-grid > div:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.future-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.future-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(30, 53, 87, 0.06);
}

.future-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.future-list--dream div {
  position: relative;
  overflow: hidden;
}

.future-list--dream div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  opacity: 0.9;
}

.future-list--dream strong {
  display: block;
  color: var(--navy);
  line-height: 1.65;
}

.future-list--dream p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
}

.future-hero-card {
  position: relative;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  box-shadow: 0 18px 42px rgba(30, 53, 87, 0.22);
}

.future-badge {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.future-hero-card strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.75;
}

.future-closing {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.85;
}

.future-visual {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 16%, rgba(184, 148, 31, 0.15), transparent 32%),
    #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.future-visual--dream {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 22% 18%, rgba(184, 148, 31, 0.22), transparent 34%),
    linear-gradient(145deg, #fff, #f5f8fc);
}

.future-visual--dream::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px dashed rgba(30, 53, 87, 0.16);
}
.future-dashboard,
.future-people-line {
  position: relative;
  z-index: 1;
}

.future-dashboard {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 53, 87, 0.10);
  box-shadow: 0 18px 42px rgba(30, 53, 87, 0.12);
}

.dashboard-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-main {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
}

.dashboard-main strong {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.3;
}

.dashboard-main b {
  color: #f6e7b5;
  font-size: 0.98rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.dashboard-metrics div {
  padding: 14px 10px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  text-align: center;
}

.dashboard-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.future-people-line {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.future-people-line div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
}

.future-people-line i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-soft);
  font-style: normal;
  font-size: 1.28rem;
  grid-row: span 2;
}

.future-people-line strong {
  color: var(--navy);
  line-height: 1.3;
}

.future-people-line small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.future-board {
  padding: 22px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.future-board > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.board-line {
  height: 12px;
  margin-top: 10px;
  border-radius: 999px;
  background: #d9e2ef;
}

.board-line.short {
  width: 68%;
}

.board-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.board-tags b {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.78rem;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.people-grid div {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 18px 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.people-grid i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-soft);
  font-style: normal;
  font-size: 1.35rem;
}

.people-grid strong {
  color: var(--navy);
}

.people-grid small {
  color: var(--muted);
  font-weight: 700;
}

/* Warning and contrast */
.warning {
  background: var(--navy);
  color: #fff;
}

.warning h2,
.warning .section-kicker {
  color: #fff;
}


.warning-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 34px;
}

.warning-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.warning-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(184, 148, 31, 0.95);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.warning-list p {
  color: #eff5ff;
  font-weight: 800;
  line-height: 1.7;
}

.warning-box {
  position: relative;
  margin-top: 28px;
  padding: 28px 34px 28px 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #eff5ff;
  box-shadow: 0 22px 48px rgba(7, 19, 36, 0.20);
}

.warning-box::before {
  content: "!";
  position: absolute;
  top: 32px;
  left: 32px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;

}

.warning-box strong {
  display: block;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.warning-box p {
  color: #dbe4f0;
  font-weight: 700;
  line-height: 1.9;
}

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

.warning h2 {
  max-width: 980px;
  font-size: clamp(1.85rem, 4.2vw, 3.45rem);
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.contrast-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(30, 53, 87, 0.08);
}

.contrast-card--bad {
  background: var(--red-soft);
}

.contrast-card--good {
  background: var(--green-soft);
}

.contrast-card h3 {
  margin-bottom: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

.contrast-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contrast-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 700;
}

.contrast-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 800;
}

.text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.text-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.text-panel h3 {
  margin-bottom: 12px;
  font-family: "Noto Sans JP", sans-serif;
}

.text-panel p {
  color: var(--muted);
}

/* Solution */
.solution-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.solution-step {
  position: relative;
  padding: 22px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(30, 53, 87, 0.07);
}

.solution-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
  z-index: 2;
}

.solution-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.solution-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

.solution-step p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.7;
}

.solution-step--gold {
  border-color: rgba(184, 148, 31, 0.55);
  background: linear-gradient(135deg, #fffdf6, #f7f1df);
}

.solution-step--gold span {
  background: var(--gold);
  color: var(--navy);
}

.solution-step--gold strong {
  color: var(--navy);
}

.solution-summary {
  position: relative;
  margin-top: 24px;
  padding: 26px 30px 26px 82px;
  border-radius: 22px;
  background: var(--gold-soft);
  border: 1px solid rgba(184, 148, 31, 0.28);
  box-shadow: 0 14px 34px rgba(30, 53, 87, 0.06);
}

.solution-summary::before {
  content: "✓";
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.solution-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.7;
}

.solution-summary p {
  color: #4f5f73;
  font-weight: 700;
  line-height: 1.9;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.check-grid div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(30, 53, 87, 0.05);
  font-weight: 700;
}

.check-grid span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

/* Profile */
.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 32px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.profile-photo {
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-soft);
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-body p + p {
  margin-top: 16px;
}

.book-mini {
  display: inline-grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.book-mini img {
  width: 56px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}

.book-mini span {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.book-mini p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Steps */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.step-card {
  position: relative;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(30, 53, 87, 0.07);
}

.step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
  z-index: 2;
}

.step-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--navy);
  font-size: 1.08rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* Price FAQ CTA */
.price-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-weight: 800;
}

.price-list span {
  color: var(--navy);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 800;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  text-align: center;
}

.final-cta h2,
.final-cta .section-kicker {
  color: #fff;
}

.final-cta .lead,
.final-cta p {
  max-width: 780px;
  margin: 22px auto 0;
  color: #dce6f3;
}

.contact-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 36px auto 0;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 54px rgba(7, 19, 36, 0.26);
  text-align: left;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 148, 31, 0.14);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}

.contact-form .button:hover {
  background: var(--navy-dark);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Thanks page */
.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 148, 31, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-dark));
}

.thanks-page .final-cta {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 80px 0;
  background: transparent;
}

.thanks-card {
  position: relative;
  overflow: hidden;
  padding: 48px 38px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(7, 19, 36, 0.28);
}

.thanks-card::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 800;
}

.thanks-card h1 {
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

.thanks-card p {
  max-width: 760px;
  margin: 22px auto 0;
  color: #dce6f3;
}

.thanks-card .button {
  margin-top: 32px;
}

.footer {
  padding: 28px 0;
  background: #101d31;
  color: #d9e3f0;
  font-size: 0.92rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__grid,
  .future-grid,
  .contrast-grid,
  .text-grid,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .future-grid {
    max-width: 820px;
    margin-inline: auto;
  }

  .choice-cards {
    grid-template-columns: 1fr;
  }

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

  .solution-step:not(:last-child)::after {
    display: none;
  }

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

  .step-card:nth-child(2)::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .future-grid {
    max-width: none;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding: 82px 0 72px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-width: auto;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.84rem;
  }

  .svg-card,
  .text-card,
  .summary-box,
  .future-visual,
  .contrast-card,
  .text-panel,
  .profile-card {
    padding: 22px;
    border-radius: 22px;
  }

  .future-list--dream p {
    grid-column: 1 / -1;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .future-hero-card,
  .future-closing {
    border-radius: 20px;
  }

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

  .warning-list div {
    padding: 14px;
  }

  .warning-box {
    padding: 72px 22px 24px;
    border-radius: 22px;
  }

  .warning-box::before {
    top: 22px;
    left: 22px;
  }

  .solution-summary {
    padding: 72px 22px 24px;
    border-radius: 22px;
  }

  .solution-summary::before {
    top: 22px;
    left: 22px;
  }

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

  .step-card::after {
    display: none !important;
  }

  .thanks-card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .thanks-card::before {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }

  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }

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

  .price-list div {
    display: grid;
  }

  .book-mini {
    grid-template-columns: 48px 1fr;
  }

  .book-mini img {
    width: 48px;
  }
}
