:root {
  --ink: #092946;
  --muted: #536d7f;
  --blue: #0a66c2;
  --teal: #11a6a1;
  --line: #dceaf2;
  --shadow: 0 18px 45px rgba(25, 75, 110, 0.12);
  color-scheme: light;
  font-family: "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #eef6fb; }
html { scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: #eef6fb; }
button, input, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 max(28px, calc((100vw - 1280px) / 2 + 28px));
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  text-decoration: none;
}

.brand small { color: var(--blue); font-size: 13px; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 35deg, #0b66c2 0 33%, transparent 33% 48%, #0b66c2 48% 75%, transparent 75%);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #244963;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.nav-cta,
.primary-cta,
.final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 26px rgba(10, 102, 194, .22);
  font-weight: 900;
}

.lp-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 80px rgba(33, 72, 92, .14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(500px, .92fr) minmax(520px, 1.08fr);
  min-height: 548px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 43%, rgba(246, 251, 253, .92) 43%, rgba(246, 251, 253, .92) 100%);
}

.hero-copy {
  align-self: center;
  padding: 48px 0 42px 62px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.15vw, 58px);
  line-height: 1.25;
  letter-spacing: 0;
}

.hero em { color: var(--teal); font-style: normal; }
.hero p {
  max-width: 560px;
  margin: 20px 0 24px;
  color: #29475c;
  font-weight: 800;
  line-height: 1.9;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 0;
  padding: 0;
  color: #5f7483;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.trust-row li::before { content: "○"; margin-right: 7px; color: #7aaed1; }

.hero-art {
  position: relative;
  min-height: 548px;
}

.hero-people {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(760px, 100%);
}

.hero-cards {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 52px;
  width: min(500px, 64%);
  height: min(145px, 12vw);
  overflow: hidden;
  border-radius: 8px;
  filter: drop-shadow(0 16px 30px rgba(24, 75, 105, .16));
}

.hero-cards img {
  width: 100%;
  max-width: none;
}

.section {
  padding: 42px 54px;
  scroll-margin-top: 88px;
}

.section h2,
.diagnosis-message h2,
.final-cta h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.45;
  letter-spacing: 0;
}

.section-lead {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.problem-section,
.visualize-section,
.before-after-section,
.steps-section,
.persona-section {
  background: #f7fbfd;
}

.problem-section {
  padding: 36px 54px;
}

.problem-section > h2,
.visualize-section > h2,
.visualize-section > .section-lead,
.outcomes-section > h2,
.before-after-section > h2,
.steps-section > h2,
.voice-section > h2,
.persona-section > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.problem-grid,
.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.problem-grid {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.problem-grid article,
.persona-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.problem-grid article {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.problem-grid img,
.persona-grid img {
  width: 100%;
}

.problem-grid p,
.persona-grid p {
  margin: 0;
  min-height: 64px;
  padding: 10px 8px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.55;
}

.diagnosis-message {
  padding: 0;
  background: #fff;
}

.diagnosis-message-image {
  width: min(100%, 1080px);
  border-radius: 0;
}

.message-person-crop {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  border-radius: 8px;
}

.message-person {
  width: 560px;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  transform: none;
}
.diagnosis-message h2 { text-align: left; }
.message-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.message-card strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.65;
}

.message-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.8;
}

.message-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 144px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(#dfeef5 1px, transparent 1px) 0 0 / 100% 36px,
    linear-gradient(135deg, #f8fcff, #ecf7fb);
}

.message-chart::after {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  bottom: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #61a7be, #f1b26b);
  transform: rotate(-8deg);
}

.message-chart span {
  display: block;
  border-radius: 7px 7px 0 0;
  background: #61a7be;
}

.message-chart span:nth-child(1) { height: 42px; opacity: .55; }
.message-chart span:nth-child(2) { height: 68px; opacity: .72; }
.message-chart span:nth-child(3) { height: 92px; opacity: .86; }
.message-chart span:nth-child(4) { height: 118px; background: #f1b26b; }

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

.benefit-cards span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid #cfe6ef;
  border-radius: 8px;
  background: #eef8fb;
  color: #245a70;
  font-weight: 900;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 26px;
}

.steps-grid img,
.voice-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 68, 98, .08);
}

.steps-grid img {
  max-width: 260px;
  margin: 0 auto;
}

.voice-grid img {
  max-width: 190px;
  margin: 0 auto;
}

.visual-list,
.metric-card,
.outcome-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 68, 98, .08);
}

.visual-list {
  padding: 22px;
}

.visual-list h3,
.outcome-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
}

.visual-list ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.visual-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
}

.visual-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #61a7be;
}

.metric-card {
  display: flex;
  min-height: 204px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.metric-card span {
  color: #245a70;
  font-size: 13px;
  font-weight: 900;
}

.metric-card strong {
  margin: 12px 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.25;
}

.metric-card p,
.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.radar-visual {
  width: 104px;
  height: 104px;
  margin: 8px auto 10px;
  border: 1px solid #cfe6ef;
  background:
    linear-gradient(30deg, transparent 49%, #cfe6ef 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, #cfe6ef 50%, transparent 51%),
    radial-gradient(circle, transparent 32px, #cfe6ef 33px, transparent 34px),
    conic-gradient(from 20deg, rgba(97, 167, 190, .76), rgba(241, 178, 107, .76), rgba(97, 167, 190, .3), rgba(97, 167, 190, .76));
  clip-path: polygon(50% 0, 97% 32%, 80% 100%, 20% 100%, 3% 32%);
}

.sim-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 12px;
  height: 92px;
  margin: 12px 0 14px;
}

.sim-bars i {
  display: block;
  border-radius: 7px 7px 0 0;
  background: #61a7be;
}

.sim-bars i:nth-child(1) { height: 46px; }
.sim-bars i:nth-child(2) { height: 66px; }
.sim-bars i:nth-child(3) { height: 92px; background: #f1b26b; }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.outcome-grid article {
  min-height: 168px;
  padding: 20px;
}

.outcome-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 999px;
  background: #eef8fb;
  color: #245a70;
  font-size: 13px;
  font-weight: 900;
}

.outcome-grid p {
  margin-top: 8px;
  font-size: 14px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 70px 1.18fr;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
}

.before-after img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.before-after span {
  display: grid;
  place-items: center;
  height: 78px;
  color: #fff;
  border-radius: 8px;
  background: #5c83a0;
  font-size: 58px;
  line-height: 1;
}

.steps-grid,
.voice-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

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

.visualize-section,
.outcomes-section,
.before-after-section,
.steps-section,
.voice-section,
.persona-section {
  padding: 28px 54px;
}

.problem-grid,
.visual-grid,
.outcome-grid,
.before-after,
.steps-grid,
.voice-grid,
.persona-grid {
  display: block;
}

.section-asset {
  width: min(100%, 1080px);
  margin: 0 auto;
  border-radius: 8px;
}

.problem-grid .section-asset,
.visual-grid .section-asset,
.outcome-grid .section-asset,
.before-after .section-asset,
.steps-grid .section-asset,
.voice-grid .section-asset,
.persona-grid .section-asset {
  max-width: 100%;
}

.problem-cards-image { width: min(100%, 999px); }
.visualized-image { width: min(100%, 982px); }
.outcomes-image { width: min(100%, 983px); }
.before-after-image { width: min(100%, 979px); }
.steps-image { width: min(100%, 983px); }
.voices-image { width: min(100%, 1007px); }
.personas-image { width: min(100%, 998px); }

.message-card {
  display: block;
  max-width: 680px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.message-main-card {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-cards {
  display: block;
  width: min(100%, 670px);
  margin-top: 16px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(22, 68, 98, .08);
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin: 22px auto 0;
}

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

.faq-list summary {
  padding: 14px 46px;
  color: #153b59;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 46px 16px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 42px 180px 36px;
  color: #fff;
  background: linear-gradient(100deg, #066abd, #0ba6a2);
  text-align: center;
}

.final-cta h2 { color: #fff; }
.final-cta p {
  margin: 8px 0 20px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
}

.final-button {
  min-width: min(100%, 480px);
  min-height: 64px;
  color: #503d00;
  background: #ffd45b;
  font-size: clamp(20px, 2.6vw, 30px);
}

.final-cta ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.final-cta li {
  min-width: 160px;
  padding: 8px 16px;
  color: #235167;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.plant-left,
.plant-right {
  position: absolute;
  bottom: 0;
  width: 140px;
}

.plant-left { left: 0; }
.plant-right { right: 10px; }

.diagnosis-modal[hidden] { display: none; }
.diagnosis-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 23, 39, .58);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100dvh - 32px));
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 22px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.modal-panel h2 { margin: 0 0 18px; font-size: 28px; }
.diagnosis-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.diagnosis-form label {
  display: grid;
  gap: 8px;
  color: #29475c;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis-form input,
.diagnosis-form select {
  min-height: 48px;
  border: 1px solid #cfe0ea;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: #f9fcfe;
}

.diagnosis-form .wide { grid-column: 1 / -1; }
.status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .lp-header { padding: 0 16px; }
  .nav-links { display: none; }
  .diagnosis-message,
  .visual-grid,
  .outcome-grid,
  .before-after,
  .steps-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
    min-height: 420px;
  }
  .hero-copy { padding: 38px 0 34px 36px; }
  .hero h1 { font-size: clamp(34px, 5vw, 44px); }
  .hero p { max-width: 270px; margin: 16px 0 20px; font-size: 14px; line-height: 1.85; }
  .trust-row {
    max-width: 270px;
    gap: 10px 14px;
  }
  .hero-art { min-height: 420px; padding: 0; }
  .hero-people,
  .hero-cards {
    position: absolute;
  }
  .hero-people { right: -8px; bottom: 0; width: 520px; max-width: none; }
  .hero-cards { top: 36px; right: 34px; width: 340px; height: 128px; }
  .hero-cards {
    overflow: hidden;
  }
  .problem-grid { grid-template-columns: repeat(5, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnosis-message h2 { text-align: center; }
  .message-card { grid-template-columns: 1fr; }
  .before-after span { width: 78px; margin: 0 auto; transform: rotate(90deg); }
  .final-cta { padding: 40px 24px 150px; }
}

@media (max-width: 620px) {
  .brand { font-size: 18px; }
  .brand small { display: none; }
  .nav-cta { min-height: 38px; max-width: 136px; padding: 0 12px; font-size: 11px; line-height: 1.25; }
  .hero h1 { font-size: 38px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy { padding: 42px 24px 18px; }
  .hero-art { min-height: auto; padding: 0 20px 34px; }
  .hero-people {
    position: static;
    width: min(100%, 620px);
    max-width: 100%;
    margin: 12px auto 0;
  }
  .section { padding: 34px 16px; }
  .problem-grid,
  .persona-grid,
  .diagnosis-form { grid-template-columns: 1fr; }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
  }
  .benefit-cards { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .hero-people { margin-top: 12px; }
}

/* Rebuilt readable sections: keep assets as visuals, render all copy in HTML. */
.problem-section > h2,
.visualize-section > h2,
.visualize-section > .section-lead,
.outcomes-section > h2,
.before-after-section > h2,
.steps-section > h2,
.voice-section > h2,
.persona-section > h2 {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.problem-section,
.visualize-section,
.outcomes-section,
.before-after-section,
.steps-section,
.voice-section,
.persona-section {
  padding: 54px 64px;
}

.problem-grid,
.visual-grid,
.outcome-grid,
.before-after,
.steps-grid,
.voice-grid,
.persona-grid {
  display: grid;
  width: min(100%, 1180px);
  margin: 30px auto 0;
}

.problem-grid,
.persona-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.problem-grid article,
.persona-grid article,
.steps-grid article,
.voice-grid article,
.outcome-grid article,
.visual-list,
.metric-card,
.before-after article {
  overflow: hidden;
  border: 1px solid #dceaf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 75, 110, .09);
}

.problem-grid article,
.persona-grid article {
  display: grid;
  align-content: start;
}

.problem-grid img,
.persona-grid img {
  width: 100%;
  height: clamp(130px, 11vw, 168px);
  object-fit: contain;
  object-position: center;
  background: #eef8fb;
}

.problem-grid img {
  height: clamp(118px, 9.5vw, 148px);
}

.problem-grid p,
.persona-grid p {
  min-height: 72px;
  padding: 14px 10px 16px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 900;
  line-height: 1.55;
}

.diagnosis-message {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 54px 64px;
}

.diagnosis-message > .message-person {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.message-copy h2 {
  margin: 0;
  text-align: left;
}

.message-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  max-width: none;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #dceaf2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(25, 75, 110, .09);
}

.message-card strong {
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.6;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: 16px;
  box-shadow: none;
}

.benefit-cards span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid #d1e7ee;
  border-radius: 8px;
  background: #fff;
  color: #245a70;
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
}

.visual-grid {
  grid-template-columns: minmax(260px, .9fr) repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.visual-list {
  padding: 28px;
}

.visual-list ul {
  gap: 18px;
  margin: 0;
}

.visual-list li {
  color: #29475c;
  font-size: clamp(15px, 1vw, 18px);
}

.metric-card {
  min-height: 230px;
  padding: 24px;
}

.metric-card span {
  font-size: 14px;
}

.metric-card strong {
  font-size: clamp(24px, 2vw, 34px);
}

.income-card i {
  display: block;
  width: 78%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a66c2, #11a6a1);
}

.sim-line {
  height: 108px;
  border-radius: 8px;
  background:
    linear-gradient(#dfeef5 1px, transparent 1px) 0 0 / 100% 27px,
    linear-gradient(135deg, transparent 0 48%, #0aa49f 49% 51%, transparent 52%),
    linear-gradient(180deg, #fff, #eef8fb);
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.outcome-grid article {
  min-height: 138px;
  padding: 22px;
}

.outcome-grid h3 {
  font-size: clamp(17px, 1.2vw, 22px);
}

.outcome-grid p {
  font-size: clamp(13px, .95vw, 16px);
}

.before-after {
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
}

.before-after article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  min-height: 220px;
}

.before-after article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: left center;
}

.after-card img {
  object-position: right center;
}

.after-card {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.before-after article div {
  padding: 24px;
}

.before-after h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.before-after p {
  margin: 8px 0;
  color: #29475c;
  font-weight: 900;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps-grid article {
  position: relative;
  min-height: 210px;
  padding: 26px;
}

.steps-grid article img {
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 170px;
  height: 150px;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  opacity: .95;
}

.steps-grid span {
  color: #0aa49f;
  font-size: 18px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 16px 0 10px;
  font-size: clamp(25px, 2vw, 34px);
}

.steps-grid p {
  max-width: 56%;
  margin: 0;
  color: #29475c;
  font-weight: 900;
  line-height: 1.6;
}

.voice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.voice-grid article {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 12px;
  align-items: center;
  min-height: 190px;
  padding: 14px;
}

.voice-grid img {
  width: 100%;
  max-width: none;
  height: 158px;
  object-fit: contain;
  object-position: center;
  background: #f2fafc;
  border-radius: 8px;
}

.voice-grid p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(13px, .9vw, 15px);
  font-weight: 900;
  line-height: 1.55;
}

.voice-grid b {
  color: #29475c;
  font-size: 13px;
  line-height: 1.55;
}

.persona-grid article img {
  height: clamp(150px, 12vw, 190px);
}

@media (max-width: 980px) {
  .problem-section,
  .visualize-section,
  .outcomes-section,
  .before-after-section,
  .steps-section,
  .voice-section,
  .persona-section,
  .diagnosis-message {
    padding: 38px 22px;
  }
  .problem-grid,
  .persona-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .diagnosis-message,
  .visual-grid,
  .before-after,
  .steps-grid,
  .voice-grid,
  .outcome-grid { grid-template-columns: 1fr; }
  .message-copy h2 { text-align: center; }
  .message-card { grid-template-columns: 1fr; }
  .benefit-cards { grid-template-columns: 1fr; }
  .before-after article { grid-template-columns: 150px 1fr; }
  .voice-grid article { grid-template-columns: 150px 1fr; }
}

@media (max-width: 620px) {
  .problem-grid,
  .persona-grid { grid-template-columns: 1fr; }
  .before-after article,
  .voice-grid article { grid-template-columns: 1fr; }
  .steps-grid p { max-width: none; }
  .steps-grid article img {
    position: static;
    width: min(100%, 210px);
    height: 150px;
    margin-top: 16px;
  }
}

/* Report-grade refinement pass */
.message-card,
.visual-list,
.metric-card,
.outcome-grid article,
.before-after article,
.steps-grid article,
.voice-grid article,
.persona-grid article {
  border-color: #cfe3ec;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,253,255,.98)),
    radial-gradient(circle at 15% 0%, rgba(0,126,184,.08), transparent 34%);
  box-shadow:
    0 22px 46px rgba(17, 73, 104, .10),
    0 1px 0 rgba(255,255,255,.92) inset;
}

.message-card {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, .98fr) minmax(360px, .82fr);
  align-items: center;
  min-height: 194px;
  padding: 30px;
}

.message-card::before,
.metric-card::before,
.outcome-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0a66c2, #11a6a1 58%, #f2b560);
}

.message-card small {
  display: block;
  margin-top: 14px;
  color: #6b8795;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.message-chart {
  position: relative;
  isolation: isolate;
  min-height: 148px;
  padding: 18px 18px 20px 34px;
  border: 1px solid #d7ebf2;
  border-radius: 8px;
  background:
    linear-gradient(#dbeaf1 1px, transparent 1px) 0 18px / 100% 30px,
    linear-gradient(90deg, #edf7fb, #fff);
}

.message-chart::before {
  content: "¥";
  position: absolute;
  left: 12px;
  top: 12px;
  color: #78a0af;
  font-size: 11px;
  font-weight: 900;
}

.message-chart::after {
  left: 48px;
  right: 24px;
  bottom: 48px;
  height: 3px;
  background: linear-gradient(90deg, #5aa7c0, #0aa49f, #f2b560);
  box-shadow: 0 8px 18px rgba(10, 164, 159, .22);
  transform: rotate(-8deg);
}

.message-chart span {
  position: relative;
  z-index: 1;
  align-self: end;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, #69b4c8, #2b86b8);
  box-shadow: 0 8px 18px rgba(43, 134, 184, .16);
}

.message-chart span:nth-child(4) {
  background: linear-gradient(180deg, #ffc774, #f0a43d);
}

.message-chart b {
  position: absolute;
  right: 16px;
  top: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e8fbf8;
  color: #078a82;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.message-chart b::before {
  content: "+22.4%";
}

.visual-grid {
  grid-template-columns: minmax(260px, .88fr) minmax(210px, .9fr) minmax(230px, .9fr) minmax(270px, 1.05fr);
  gap: 22px;
}

.visual-list,
.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 264px;
}

.visual-list {
  padding: 32px;
  background:
    linear-gradient(180deg, #ffffff, #f5fbfd),
    radial-gradient(circle at 0 0, rgba(10,102,194,.08), transparent 44%);
}

.visual-list li {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding-left: 36px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}

.visual-list li::before {
  width: 22px;
  height: 22px;
  border: 1px solid #99d7d0;
  background:
    linear-gradient(135deg, #e7fbf8, #fff),
    radial-gradient(circle, #0aa49f 0 42%, transparent 44%);
  box-shadow: 0 6px 14px rgba(10, 164, 159, .14);
}

.metric-card {
  justify-content: flex-start;
  gap: 16px;
  padding: 28px;
}

.metric-card span {
  color: #17435c;
  letter-spacing: .03em;
}

.metric-card strong {
  margin: 0;
  color: #06283f;
  font-size: clamp(27px, 2.3vw, 38px);
  letter-spacing: 0;
}

.metric-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfaf8;
  color: #078a82;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.income-card i {
  position: relative;
  width: 100%;
  height: 12px;
  margin-top: 2px;
  background: #dcecf3;
}

.income-card i::before {
  content: "";
  position: absolute;
  inset: 0 28% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #0a66c2, #11a6a1);
}

.income-card i::after {
  content: "";
  position: absolute;
  left: 68%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #0aa49f;
  box-shadow: 0 8px 16px rgba(10,164,159,.24);
  transform: translate(-50%, -50%);
}

.radar-card {
  align-items: center;
}

.radar-card > span {
  align-self: stretch;
}

.radar-visual {
  position: relative;
  width: 152px;
  height: 152px;
  margin: 4px auto 0;
  border: 0;
  clip-path: none;
  background:
    linear-gradient(90deg, transparent 49.5%, #c6dce6 50%, transparent 50.5%),
    linear-gradient(18deg, transparent 49.5%, #c6dce6 50%, transparent 50.5%),
    linear-gradient(162deg, transparent 49.5%, #c6dce6 50%, transparent 50.5%),
    radial-gradient(circle, transparent 27px, #d7e8ef 28px, transparent 29px, transparent 56px, #d7e8ef 57px, transparent 58px),
    #f7fbfd;
  border-radius: 50%;
}

.radar-visual::before {
  content: "";
  position: absolute;
  inset: 20px 18px 18px 23px;
  clip-path: polygon(50% 0, 91% 34%, 75% 92%, 23% 83%, 6% 38%);
  background: linear-gradient(145deg, rgba(10,164,159,.68), rgba(242,181,96,.62));
  border: 2px solid rgba(10, 137, 132, .75);
  box-shadow: 0 12px 24px rgba(10, 164, 159, .15);
}

.radar-visual b {
  position: absolute;
  inset: 68px auto auto 68px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #0aa49f;
  box-shadow: 0 8px 16px rgba(10,164,159,.22);
}

.radar-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.radar-card li {
  padding: 4px 7px;
  border-radius: 999px;
  background: #eef8fb;
  color: #496b7b;
  font-size: 11px;
  font-weight: 900;
}

.sim-line {
  position: relative;
  overflow: hidden;
  height: 124px;
  border: 1px solid #d7ebf2;
  background:
    linear-gradient(#dbeaf1 1px, transparent 1px) 0 16px / 100% 25px,
    linear-gradient(180deg, #fff, #ecf8fb);
}

.sim-line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 26px;
  height: 72px;
  background: linear-gradient(135deg, transparent 0 47%, #0aa49f 48% 51%, transparent 52%);
  filter: drop-shadow(0 10px 14px rgba(10, 164, 159, .20));
}

.sim-line::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 24px;
  bottom: 24px;
  height: 58px;
  background: linear-gradient(180deg, rgba(10,164,159,.18), rgba(10,164,159,0));
  clip-path: polygon(0 78%, 24% 62%, 46% 48%, 67% 28%, 100% 0, 100% 100%, 0 100%);
}

.sim-line i {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0aa49f;
  box-shadow: 0 5px 12px rgba(10,164,159,.24);
}

.sim-line i:nth-child(1) { left: 20px; bottom: 36px; }
.sim-line i:nth-child(2) { left: 30%; bottom: 48px; }
.sim-line i:nth-child(3) { left: 50%; bottom: 60px; }
.sim-line i:nth-child(4) { left: 68%; bottom: 78px; }
.sim-line i:nth-child(5) { right: 22px; top: 18px; background: #f0a43d; }

.outcome-grid {
  gap: 20px;
}

.outcome-grid article {
  position: relative;
  min-height: 164px;
  padding: 24px 24px 22px 86px;
}

.outcome-grid span {
  position: absolute;
  left: 24px;
  top: 26px;
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg, #e7fbf8, #eef4ff);
  color: #0a66c2;
  box-shadow: 0 8px 18px rgba(10,102,194,.10);
}

.outcome-grid h3 {
  margin-top: 8px;
}

.before-after article {
  min-height: 260px;
}

.before-card {
  background: linear-gradient(180deg, #ffffff, #f2f5f7);
}

.after-card {
  border-color: #9ed8d2;
  background: linear-gradient(180deg, #ffffff, #eefbf8);
}

.before-after h3 {
  font-size: 28px;
}

.before-card h3 { color: #5a6870; }
.after-card h3 { color: #098d86; }

.before-after p {
  position: relative;
  padding-left: 30px;
  font-size: 17px;
}

.before-after p::before {
  content: "×";
  position: absolute;
  left: 0;
  top: .08em;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #8d989f;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.after-card p::before {
  content: "✓";
  background: #0aa49f;
}

.before-after > span {
  height: 90px;
  background: linear-gradient(145deg, #6b8ea5, #0aa49f);
  box-shadow: 0 16px 28px rgba(25, 75, 110, .16);
}

.steps-grid article {
  min-height: 244px;
  background:
    linear-gradient(180deg, #fff, #f7fbfd),
    radial-gradient(circle at 100% 100%, rgba(10,164,159,.10), transparent 42%);
}

.steps-grid article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 12px;
  width: 172px;
  height: 132px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(236,248,251,.72), rgba(255,255,255,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.steps-grid article img {
  z-index: 1;
  right: 14px;
  bottom: 18px;
  width: 152px;
}

.steps-grid span {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: #0aa49f;
  letter-spacing: .04em;
}

.steps-grid h3 {
  position: relative;
  z-index: 2;
}

.steps-grid p {
  position: relative;
  z-index: 2;
  max-width: 48%;
  font-size: 16px;
}

@media (max-width: 980px) {
  .message-card,
  .visual-grid {
    grid-template-columns: 1fr;
  }
  .message-card { min-height: 0; }
  .outcome-grid article { padding-left: 76px; }
  .after-card { grid-template-columns: 150px 1fr; }
}

/* Final fidelity pass: keep the original photo-based LP texture, but render text in HTML. */
.lp-shell {
  width: min(100%, 1360px);
}

.problem-section,
.diagnosis-message,
.visualize-section,
.outcomes-section,
.before-after-section,
.steps-section,
.voice-section,
.persona-section {
  padding-inline: clamp(42px, 5.4vw, 74px);
}

.problem-grid,
.before-after,
.steps-grid,
.voice-grid,
.persona-grid {
  width: min(100%, 1240px);
}

.problem-grid img,
.persona-grid img,
.voice-grid img {
  image-rendering: auto;
  object-fit: cover;
  object-position: center top;
}

.problem-grid img {
  height: clamp(142px, 10vw, 174px);
}

.problem-grid article,
.persona-grid article,
.voice-grid article {
  background: linear-gradient(180deg, #fff 0%, #f8fcfe 100%);
}

.persona-grid article img {
  height: clamp(164px, 12.5vw, 206px);
}

.voice-grid article {
  grid-template-columns: 46% 1fr;
  gap: 14px;
  min-height: 214px;
}

.voice-grid img {
  height: 176px;
  background: #eef8fb;
}

.diagnosis-message {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.steps-grid article {
  min-height: 270px;
  padding: 30px 28px;
}

.steps-grid article::after {
  right: 16px;
  bottom: 14px;
  width: 206px;
  height: 160px;
}

.steps-grid article img {
  right: 18px;
  bottom: 14px;
  width: 190px;
  height: 174px;
}

.steps-grid p {
  max-width: 50%;
}

.outcome-grid {
  width: min(100%, 1040px);
  gap: 14px;
}

.outcome-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  min-height: 86px;
  padding: 16px 20px 16px 16px;
  align-items: center;
  column-gap: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(249,253,255,.99)),
    radial-gradient(circle at 0 0, rgba(10,102,194,.07), transparent 48%);
}

.outcome-grid article::before {
  height: 0;
}

.outcome-grid span {
  position: relative;
  left: auto;
  top: auto;
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  margin: 0;
  color: transparent;
  font-size: 0;
}

.outcome-grid span::before {
  content: attr(data-icon);
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #0a66c2;
  background: linear-gradient(145deg, #eef4ff, #e8fbf8);
  box-shadow: 0 12px 22px rgba(10,102,194,.10);
  font-size: 24px;
  font-weight: 900;
}

.outcome-grid article:nth-child(2) span::before { color: #7966ca; background: linear-gradient(145deg, #f2efff, #eef8ff); }
.outcome-grid article:nth-child(3) span::before { color: #0aa49f; background: linear-gradient(145deg, #e9fbf8, #eef8ff); }
.outcome-grid article:nth-child(4) span::before { color: #e58b2d; background: linear-gradient(145deg, #fff3e7, #fffaf3); }
.outcome-grid article:nth-child(5) span::before { color: #3a9aa5; background: linear-gradient(145deg, #e9f8fb, #f2fbff); }
.outcome-grid article:nth-child(6) span::before { color: #2f80d4; background: linear-gradient(145deg, #eaf4ff, #f4faff); }

.outcome-grid h3 {
  margin: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.35;
}

.outcome-grid p {
  margin-top: 3px;
  font-size: clamp(12px, .86vw, 14px);
  line-height: 1.45;
}

.problem-grid article {
  position: relative;
}

.problem-grid article::after {
  content: attr(data-icon);
  position: absolute;
  right: 16px;
  top: clamp(92px, 7vw, 116px);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #0a66c2;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 22px rgba(22, 68, 98, .16);
  font-size: 25px;
  font-weight: 900;
}

.problem-grid img {
  height: clamp(150px, 10.4vw, 184px);
  object-fit: cover;
  object-position: center 26%;
}

.diagnosis-message > .message-person {
  object-position: center 24%;
}

.before-after article img {
  object-fit: cover;
  object-position: center 26%;
  padding: 0;
  background: linear-gradient(180deg, #f7fbfd, #fff);
}

.after-card img {
  object-position: center 28%;
}

.voice-grid img {
  object-fit: cover;
  object-position: center 22%;
}

.persona-grid article img {
  object-fit: cover;
  object-position: center 22%;
}

@media (max-width: 980px) {
  .lp-shell {
    width: 100%;
  }

  .problem-section,
  .diagnosis-message,
  .visualize-section,
  .outcomes-section,
  .before-after-section,
  .steps-section,
  .voice-section,
  .persona-section {
    padding-inline: 22px;
  }

  .problem-grid img,
  .persona-grid article img {
    height: 220px;
  }

  .voice-grid img {
    height: 190px;
  }
}

.hero-cards {
  top: clamp(24px, 3.1vw, 44px);
  right: clamp(26px, 4vw, 58px);
  width: min(520px, 66%);
  height: auto;
  overflow: visible;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 70, 108, .12);
}

.hero-cards img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.hero-people {
  width: min(790px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.hero-copy p {
  max-width: 680px;
  line-height: 1.9;
}

.diagnosis-message {
  width: min(100%, 1260px);
  grid-template-columns: minmax(420px, 500px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 3.2vw, 40px);
  padding: clamp(34px, 3.8vw, 52px) clamp(38px, 4.8vw, 62px);
  background:
    linear-gradient(90deg, rgba(244, 251, 253, .95) 0%, rgba(255, 255, 255, .98) 34%, #fff 100%),
    #fff;
  box-shadow: none;
}

.diagnosis-message > .message-person {
  width: 100%;
  height: clamp(330px, 28vw, 388px);
  border-radius: 8px;
  object-fit: cover;
  object-position: center 36%;
  box-shadow: 0 22px 52px rgba(18, 74, 105, .14);
}

.message-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  text-align: left;
  font-size: clamp(22px, 1.9vw, 29px);
  line-height: 1.62;
}

.message-card {
  grid-template-columns: minmax(0, 1fr) minmax(230px, .56fr);
  align-items: center;
  min-height: 158px;
  padding: clamp(22px, 2.2vw, 30px);
  border: 1px solid #d7e9f1;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f9fdff 100%);
  box-shadow: 0 24px 56px rgba(17, 73, 108, .12);
}

.message-card strong {
  font-size: clamp(18px, 1.32vw, 22px);
  line-height: 1.75;
}

.message-chart {
  height: 126px;
  border-color: #cfe5ee;
  background:
    linear-gradient(180deg, rgba(12, 126, 191, .08), rgba(12, 169, 164, .04)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(91, 139, 164, .18) 24px),
    #f7fcff;
}

.message-chart b {
  height: 4px;
  background: linear-gradient(90deg, #149fd0, #0aa39c);
  transform: rotate(-13deg);
  transform-origin: left center;
}

.benefit-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-cards span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 64px;
  padding: 10px 12px 10px 54px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 13px 28px rgba(24, 78, 111, .08);
}

.benefit-cards span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #e8fbfa, #f1f8ff);
  box-shadow: inset 0 0 0 1px rgba(10, 163, 156, .18), 0 8px 16px rgba(25, 81, 119, .1);
}

.benefit-cards span::after {
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  color: #0a66c2;
  font-size: 15px;
  font-weight: 900;
}

.benefit-cards span:nth-child(1)::after { content: "▣"; }
.benefit-cards span:nth-child(2)::after { content: "↗"; color: #0aa39c; }
.benefit-cards span:nth-child(3)::after { content: "￥"; color: #0a66c2; }

.visualize-section {
  padding-top: clamp(48px, 4.2vw, 66px);
  padding-bottom: clamp(52px, 4.4vw, 72px);
}

.visual-grid {
  width: min(100%, 1288px);
  grid-template-columns: minmax(360px, 1.18fr) minmax(230px, .78fr) minmax(250px, .86fr) minmax(285px, .98fr);
  gap: 20px;
  align-items: stretch;
}

.visual-list {
  padding: clamp(20px, 1.9vw, 28px);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(243, 252, 253, .93)),
    #fff;
}

.visual-list li {
  position: relative;
  white-space: nowrap;
  font-size: clamp(17px, 1.08vw, 19px);
  padding: 12px 0 12px 58px;
}

.visual-list li::before {
  left: 0;
  top: 50%;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #e9fbfa, #f3f8ff);
  box-shadow: inset 0 0 0 1px rgba(10, 163, 156, .18), 0 10px 18px rgba(25, 81, 119, .1);
}

.visual-list li::after {
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translateY(-50%);
  color: #0a66c2;
  font-size: 18px;
  font-weight: 900;
}

.visual-list li:nth-child(1)::after { content: "￥"; }
.visual-list li:nth-child(2)::after { content: "◆"; color: #7d68d9; }
.visual-list li:nth-child(3)::after { content: "◇"; color: #f09c39; }
.visual-list li:nth-child(4)::after { content: "↗"; color: #0aa39c; }

.metric-card {
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fdff 100%);
  box-shadow: 0 18px 46px rgba(25, 81, 119, .12);
}

.visual-grid .metric-card,
.visual-list {
  min-height: 342px;
}

.radar-card {
  overflow: hidden;
}

.radar-visual {
  width: min(220px, 100%);
  height: 220px;
  margin: 6px auto 14px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(47, 128, 212, .24) 50%, transparent calc(50% + .5px)),
    linear-gradient(0deg, transparent calc(50% - .5px), rgba(47, 128, 212, .24) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle, transparent 0 24%, rgba(47, 128, 212, .14) 24.5% 25%, transparent 25.5% 49%, rgba(47, 128, 212, .13) 49.5% 50%, transparent 50.5% 74%, rgba(47, 128, 212, .12) 74.5% 75%, transparent 75.5%),
    conic-gradient(from -18deg, rgba(10, 163, 156, .2), rgba(47, 128, 212, .12), rgba(10, 163, 156, .2));
}

.radar-visual::before {
  content: "";
  position: absolute;
  inset: 38px;
  background: linear-gradient(145deg, rgba(10, 163, 156, .78), rgba(47, 128, 212, .46));
  clip-path: polygon(50% 2%, 90% 34%, 77% 89%, 28% 82%, 8% 42%);
  filter: drop-shadow(0 14px 18px rgba(9, 112, 128, .22));
}

.radar-visual::after {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: inset 0 0 0 1px rgba(47, 128, 212, .08);
}

.radar-visual b {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  background: #0aa39c;
  box-shadow: 0 0 0 6px rgba(10, 163, 156, .14);
}

.radar-card ul {
  gap: 7px;
}

.radar-card li {
  border-radius: 999px;
  background: #eef8fb;
  color: #24536b;
  font-weight: 700;
}

.sim-line {
  height: 148px;
  overflow: hidden;
  border: 1px solid #cfe5ee;
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(77, 130, 160, .16) 26px),
    linear-gradient(180deg, rgba(16, 169, 164, .07), rgba(47, 128, 212, .03)),
    #f8fdff;
}

.sim-line::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 18px;
  bottom: 18px;
  height: 104px;
  background: linear-gradient(180deg, rgba(10, 163, 156, .26), rgba(10, 163, 156, .05));
  clip-path: polygon(0 82%, 16% 70%, 29% 73%, 43% 55%, 58% 48%, 72% 32%, 88% 28%, 100% 12%, 100% 100%, 0 100%);
}

.sim-line::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 21px;
  bottom: 34px;
  height: 88px;
  background: linear-gradient(90deg, #169fd0, #0aa39c);
  clip-path: polygon(0 84%, 15% 72%, 29% 75%, 43% 57%, 58% 50%, 72% 34%, 88% 30%, 100% 14%, 100% 22%, 88% 38%, 72% 42%, 58% 58%, 43% 65%, 29% 82%, 15% 80%, 0 92%);
  filter: drop-shadow(0 8px 12px rgba(10, 132, 164, .2));
}

.sim-line i {
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  background: #0aa39c;
  box-shadow: 0 2px 9px rgba(7, 108, 119, .18);
}

.sim-line i:nth-child(1) { left: 10%; top: 73%; }
.sim-line i:nth-child(2) { left: 30%; top: 66%; }
.sim-line i:nth-child(3) { left: 52%; top: 47%; }
.sim-line i:nth-child(4) { left: 72%; top: 33%; }
.sim-line i:nth-child(5) { left: 90%; top: 18%; background: #f0bd55; }

.before-after {
  width: min(100%, 1240px);
  grid-template-columns: minmax(0, 1.03fr) 76px minmax(0, 1.26fr);
  gap: clamp(24px, 3.1vw, 42px);
}

.after-card {
  grid-template-columns: minmax(350px, 1fr) 210px;
  column-gap: 10px;
  overflow: hidden;
}

.after-card div {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-right: 8px;
}

.after-card p {
  white-space: nowrap;
  font-size: clamp(16px, 1.08vw, 18px);
}

.after-card img {
  width: 210px;
  justify-self: end;
  transform: scaleX(-1);
  object-position: center 25%;
}

.steps-grid article {
  overflow: hidden;
}

.steps-grid article img {
  width: min(210px, 54%);
  height: 158px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 18px rgba(24, 82, 116, .12));
}

.voice-grid article {
  grid-template-columns: 42% minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-content: start;
}

.voice-grid img {
  grid-row: 1 / span 3;
}

.voice-grid .stars {
  display: block;
  margin-top: 8px;
  color: #f4b63f;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 2px;
  text-shadow: 0 1px 0 rgba(130, 82, 10, .12);
}

@media (max-width: 1180px) {
  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-list li {
    white-space: normal;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after > span {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .hero-cards {
    position: relative;
    top: auto;
    right: auto;
    width: 82%;
    margin: 0 auto -18px;
  }

  .diagnosis-message {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .message-card,
  .benefit-cards {
    grid-template-columns: 1fr;
  }

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

  .after-card,
  .voice-grid article {
    grid-template-columns: 1fr;
  }

  .after-card div {
    min-width: 0;
  }

  .after-card p {
    white-space: normal;
  }
}

/* Premium polish pass for the result preview and step visuals. */
.visualize-section {
  background:
    linear-gradient(180deg, #f3fbfe 0%, #eef7fb 50%, #ffffff 100%),
    repeating-linear-gradient(135deg, rgba(24, 92, 128, .035) 0 1px, transparent 1px 18px);
}

.visualize-section h2,
.steps-section > h2 {
  letter-spacing: .02em;
  text-shadow: 0 10px 24px rgba(13, 48, 76, .08);
}

.visual-grid {
  gap: 18px;
}

.visual-list,
.visual-grid .metric-card {
  position: relative;
  border: 1px solid rgba(163, 211, 226, .9);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,253,255,.95)),
    linear-gradient(135deg, rgba(10,102,194,.05), rgba(10,163,156,.04));
  box-shadow:
    0 28px 70px rgba(23, 80, 116, .14),
    0 1px 0 rgba(255,255,255,.9) inset;
}

.visual-list::before,
.visual-grid .metric-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, #0874ca, #0aa39c 58%, #f1b759);
}

.visual-list::after,
.visual-grid .metric-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255,255,255,.55), transparent 48%);
}

.visual-list ul,
.visual-list li,
.metric-card > * {
  position: relative;
  z-index: 1;
}

.income-card strong,
.sim-card strong {
  text-shadow: 0 8px 22px rgba(7, 49, 76, .08);
}

.radar-card {
  padding-inline: 18px;
}

.radar-visual {
  width: min(250px, 100%);
  height: 250px;
  margin: 0 auto 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.88) 0 28%, rgba(218,245,247,.9) 29% 64%, rgba(231,247,253,.92) 65% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(126, 188, 210, .24),
    inset 0 18px 38px rgba(255,255,255,.58),
    0 24px 42px rgba(31, 103, 130, .14);
}

.radar-visual::before,
.radar-visual::after {
  display: none;
}

.radar-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.radar-grid {
  fill: rgba(255,255,255,.2);
  stroke: rgba(58, 130, 165, .24);
  stroke-width: 1.2;
}

.radar-grid.mid { stroke-opacity: .48; }
.radar-grid.inner { stroke-opacity: .58; }

.radar-axis line {
  stroke: rgba(50, 120, 154, .18);
  stroke-width: 1.1;
}

.radar-fill {
  fill: url("#unused");
  fill: rgba(10, 163, 156, .42);
  stroke: none;
  filter: drop-shadow(0 16px 18px rgba(9, 109, 132, .24));
}

.radar-line {
  fill: none;
  stroke: #0aa39c;
  stroke-width: 4;
  stroke-linejoin: round;
}

.radar-dots circle {
  fill: #ffffff;
  stroke: #0aa39c;
  stroke-width: 3.2;
}

.radar-visual b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0874ca;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(8, 116, 202, .12), 0 8px 18px rgba(5, 75, 122, .24);
}

.radar-card ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
  margin-top: 6px;
}

.radar-card li {
  min-height: 26px;
  padding: 0 6px;
  border: 1px solid rgba(136, 204, 214, .42);
  background: linear-gradient(180deg, #f4fcff, #eaf7fb);
  font-size: 11px;
}

.steps-grid {
  gap: 20px;
}

.steps-grid article {
  min-height: 398px;
  padding: 28px;
  padding-bottom: 236px;
  border: 1px solid rgba(169, 215, 229, .9);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,253,255,.96)),
    linear-gradient(135deg, rgba(8,116,202,.05), rgba(10,163,156,.05));
  box-shadow:
    0 26px 64px rgba(24, 84, 120, .13),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.steps-grid article::after {
  left: 28px;
  right: 28px;
  bottom: 22px;
  width: auto;
  height: 208px;
  border: 1px solid rgba(188, 226, 235, .75);
  background:
    linear-gradient(145deg, rgba(236,250,253,.92), rgba(255,255,255,.96)),
    repeating-linear-gradient(0deg, rgba(45, 122, 162, .08) 0 1px, transparent 1px 28px);
  box-shadow:
    0 20px 42px rgba(27, 83, 116, .12),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.steps-grid article img {
  left: 50%;
  right: auto;
  bottom: 30px;
  width: min(330px, 84%);
  height: auto;
  max-height: 218px;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 24px rgba(22, 79, 116, .16));
}

.steps-grid span,
.steps-grid h3,
.steps-grid p {
  position: relative;
  z-index: 2;
}

.steps-grid p {
  max-width: 100%;
}

/* Annotation pass: align the hero dashboard overlay and give the diagnosis lead image more weight. */
.hero-cards {
  right: clamp(74px, 7.9vw, 126px);
}

.diagnosis-message {
  position: relative;
  isolation: isolate;
  width: min(100%, 1288px);
  grid-template-columns: minmax(500px, 560px) minmax(0, 1fr);
  gap: clamp(30px, 3.4vw, 48px);
  padding: clamp(44px, 4.6vw, 66px) clamp(44px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 50%, rgba(205, 239, 250, .82) 0 25%, rgba(205, 239, 250, 0) 50%),
    linear-gradient(100deg, #f4fbfd 0%, #ffffff 42%, #ffffff 100%);
}

.diagnosis-message::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(28px, 4vw, 58px);
  top: clamp(34px, 4vw, 56px);
  bottom: clamp(34px, 4vw, 56px);
  width: min(46%, 570px);
  border: 1px solid rgba(168, 219, 232, .72);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(226, 248, 252, .88), rgba(255, 255, 255, .52)),
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(241, 250, 253, .8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 30px 76px rgba(24, 90, 128, .16);
}

.diagnosis-message::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: clamp(82px, 8vw, 132px);
  bottom: clamp(42px, 5vw, 78px);
  width: 270px;
  height: 80px;
  border-radius: 999px;
  background: rgba(45, 171, 196, .24);
  filter: blur(28px);
}

.diagnosis-message > .message-person,
.diagnosis-message > .message-copy {
  position: relative;
  z-index: 1;
}

.diagnosis-message > .message-person {
  height: clamp(392px, 32vw, 462px);
  transform: translateX(-8px);
  border: 1px solid rgba(199, 228, 236, .9);
  border-radius: 10px;
  object-position: center 34%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .88),
    0 30px 72px rgba(14, 64, 98, .18),
    0 0 0 10px rgba(255, 255, 255, .42);
}

.message-copy h2 {
  max-width: 800px;
}

.message-card {
  border-color: rgba(194, 226, 235, .95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(249, 253, 255, .98)),
    linear-gradient(135deg, rgba(23, 126, 191, .06), rgba(14, 163, 156, .05));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9),
    0 26px 62px rgba(17, 73, 108, .14);
}

.diagnosis-message > .message-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(470px, 35vw, 552px);
  display: grid;
  align-items: center;
  padding: 30px 28px 34px 0;
}

.message-visual::before {
  content: "";
  position: absolute;
  inset: 8px 8px 0 0;
  border: 1px solid rgba(126, 203, 221, .78);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 35%),
    linear-gradient(135deg, rgba(217, 247, 252, .86), rgba(255, 255, 255, .72) 48%, rgba(238, 250, 252, .92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    0 36px 86px rgba(20, 88, 126, .18);
}

.message-visual::after {
  content: "";
  position: absolute;
  right: 38px;
  top: 36px;
  width: 58%;
  height: 46%;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(8, 116, 202, .08), transparent 1px),
    linear-gradient(0deg, rgba(8, 116, 202, .08), transparent 1px);
  background-size: 34px 34px;
  opacity: .75;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.message-visual .message-person {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  height: clamp(420px, 33vw, 512px);
  margin-left: -8px;
  border: 1px solid rgba(205, 232, 239, .95);
  border-radius: 16px;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.06) contrast(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9),
    0 28px 74px rgba(13, 65, 98, .2),
    0 0 0 12px rgba(255, 255, 255, .44);
}

.message-orbit-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: 164px;
  padding: 14px 16px;
  border: 1px solid rgba(169, 220, 231, .86);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow:
    0 20px 40px rgba(17, 75, 111, .16),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
}

.message-orbit-card span {
  color: #50738a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.message-orbit-card strong {
  color: #002b4a;
  font-size: 24px;
  line-height: 1;
}

.salary-card {
  right: 0;
  top: 48px;
}

.salary-card i {
  width: 138px;
  height: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 38%, #10a39b 39% 45%, transparent 46%),
    linear-gradient(180deg, rgba(16, 163, 155, .16), rgba(16, 163, 155, .04));
}

.radar-card-mini {
  left: 22px;
  bottom: 28px;
  width: 174px;
}

.radar-card-mini b {
  width: 96px;
  height: 84px;
  place-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .86) 0 16%, transparent 17%),
    conic-gradient(from 26deg, rgba(8, 116, 202, .28), rgba(10, 163, 156, .55), rgba(244, 180, 74, .48), rgba(8, 116, 202, .28));
  box-shadow: inset 0 0 0 1px rgba(35, 140, 176, .18);
  clip-path: polygon(50% 0, 86% 20%, 100% 62%, 66% 100%, 22% 86%, 0 46%, 18% 12%);
}

.action-card {
  right: 26px;
  bottom: 66px;
  min-width: 178px;
}

@media (max-width: 980px) {
  .diagnosis-message {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .diagnosis-message::before {
    inset: 24px 18px auto;
    width: auto;
    height: min(44vw, 360px);
  }

  .message-visual .message-person {
    height: clamp(320px, 54vw, 430px);
    transform: none;
  }

  .message-orbit-card {
    transform: scale(.9);
  }
}

@media (max-width: 760px) {
  .hero-cards {
    right: auto;
  }

  .diagnosis-message {
    padding: 34px 22px;
  }
}

/* Review pass: user-supplied composite hero, controlled Japanese line breaks, tighter cards. */
.hero-art {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 548px;
  overflow: visible;
}

.hero-cards {
  display: none !important;
}

.hero-people.hero-composite {
  position: static;
  width: min(820px, 108%);
  max-width: none;
  height: auto;
  margin: 0 -22px 0 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(20, 70, 108, .12));
}

.diagnosis-message {
  width: min(100%, 1348px);
  grid-template-columns: minmax(500px, 540px) minmax(0, 1fr);
  gap: clamp(34px, 3.6vw, 52px);
}

.message-card {
  grid-template-columns: minmax(0, 1fr) minmax(226px, .44fr);
  column-gap: 24px;
  overflow: hidden;
}

.message-card strong {
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  font-size: clamp(17px, 1.18vw, 21px);
}

.message-card strong span {
  display: block;
  white-space: nowrap;
}

.message-chart {
  min-width: 0;
  width: 100%;
}

.benefit-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-cards span {
  min-width: 0;
  min-height: 78px;
  padding: 12px 12px 12px 50px;
  word-break: keep-all;
  line-break: strict;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.55;
}

.benefit-cards span b,
.benefit-cards span em {
  display: block;
  font-style: normal;
  white-space: nowrap;
}

.visual-grid .metric-card,
.visual-list {
  min-height: 438px;
}

.visual-grid {
  align-items: stretch;
}

.visual-list {
  display: flex;
  flex-direction: column;
  padding-block: 26px;
}

.metric-card {
  min-width: 0;
  justify-content: flex-start;
  gap: 16px;
}

.income-card strong,
.sim-card strong {
  margin-block: 4px;
}

.income-card em,
.sim-card em {
  margin-top: auto;
}

.visual-foot,
.income-details,
.sim-notes {
  position: relative;
  z-index: 1;
}

.visual-foot {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(159, 218, 227, .64);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 250, 253, .92), rgba(255, 255, 255, .72));
}

.visual-foot span {
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.visual-foot b {
  color: #123e59;
  font-size: 13px;
  line-height: 1.6;
}

.income-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f2fbfc;
  color: #174a64;
  font-weight: 900;
}

.income-details span {
  color: #5b7b8c;
  font-size: 11px;
}

.income-details b {
  font-size: 12px;
  white-space: nowrap;
}

.sim-notes {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f3fbfc;
}

.sim-notes b {
  color: #0a66c2;
  font-size: 12px;
}

.sim-notes span {
  color: #315b70;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.steps-grid article {
  min-height: 442px;
  padding-bottom: 248px;
}

.steps-grid article img {
  bottom: 26px;
  width: min(320px, 82%);
  max-height: 206px;
}

@media (max-width: 980px) {
  .hero-art {
    min-height: auto;
  }

  .hero-people.hero-composite {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .diagnosis-message {
    grid-template-columns: 1fr;
  }

  .message-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .message-card strong span,
  .benefit-cards span b,
  .benefit-cards span em {
    white-space: normal;
  }

  .steps-grid article {
    min-height: 420px;
    padding-bottom: 228px;
  }

  .steps-grid article img {
    max-height: 196px;
  }
}

/* Review pass: stronger problem hook and larger image-forward cards. */
.problem-section {
  width: min(100%, 1368px);
  padding: clamp(46px, 4.8vw, 70px) clamp(40px, 5vw, 72px) clamp(52px, 5.2vw, 76px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .9), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 78% 38%, rgba(10, 102, 194, .13), rgba(10, 102, 194, 0) 34%),
    linear-gradient(180deg, #f0f9fd 0%, #e9f6fb 100%);
}

.problem-hook {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.problem-hook span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.problem-hook span::before,
.problem-hook span::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0aa39c);
}

.problem-hook span::after {
  background: linear-gradient(90deg, #0aa39c, transparent);
}

.problem-hook h2 {
  margin: 0;
  color: #002b4a;
  font-size: clamp(32px, 3.3vw, 52px);
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
}

.problem-hook p {
  margin: 2px 0 0;
  color: #315b70;
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 900;
  line-height: 1.8;
}

.problem-grid {
  width: min(100%, 1210px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(30px, 3vw, 42px) auto 0;
}

.problem-grid article {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(167, 215, 230, .95);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 253, 255, .96)),
    #fff;
  box-shadow:
    0 26px 58px rgba(18, 74, 108, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.problem-grid article::before {
  content: attr(data-icon);
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 142px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(198, 225, 235, .9);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  color: #0874ca;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(21, 79, 116, .18);
  backdrop-filter: blur(10px);
}

.problem-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 158px;
  height: 58px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .94));
  pointer-events: none;
}

.problem-grid img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(1.05) contrast(1.03);
}

.problem-grid p {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 108px;
  margin: 0;
  padding: 18px 18px 20px;
  place-items: center;
  color: #002b4a;
  font-size: clamp(14px, .98vw, 16px);
  font-weight: 950;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 980px) {
  .problem-section {
    padding: 42px 22px 50px;
  }

  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
  }
}

@media (max-width: 560px) {
  .problem-hook h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

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

  .problem-grid article {
    min-height: 300px;
  }
}

/* Review pass: widen the problem cards and make the section feel like a hook, not a small gallery. */
.problem-section {
  position: relative;
  isolation: isolate;
  width: min(100%, 1368px);
  overflow: hidden;
  padding: clamp(54px, 5vw, 78px) clamp(28px, 4vw, 56px) clamp(58px, 5.2vw, 82px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .62) 42%, rgba(232, 249, 252, .78) 100%),
    radial-gradient(circle at 12% 24%, rgba(10, 163, 156, .18), rgba(10, 163, 156, 0) 34%),
    radial-gradient(circle at 86% 38%, rgba(10, 102, 194, .18), rgba(10, 102, 194, 0) 40%),
    #eef8fc;
}

.problem-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 26px 34px auto auto;
  width: min(42vw, 560px);
  height: min(28vw, 340px);
  border: 1px solid rgba(92, 178, 206, .22);
  border-radius: 28px;
  transform: rotate(-4deg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(10, 102, 194, .08) 0 1px, transparent 1px 48px);
  box-shadow: 0 34px 90px rgba(14, 74, 112, .12);
}

.problem-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 8%;
  right: 8%;
  bottom: 42px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(8, 116, 202, .16), rgba(8, 116, 202, 0) 72%);
  filter: blur(18px);
}

.problem-hook {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.problem-hook h2 {
  max-width: 960px;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
}

.problem-hook p {
  max-width: 720px;
  text-wrap: balance;
}

.problem-grid {
  width: min(100%, 1240px) !important;
  max-width: none !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(16px, 1.5vw, 22px);
  margin-top: clamp(34px, 3.6vw, 50px);
}

.problem-grid article {
  min-height: clamp(348px, 26vw, 386px);
  transform: translateZ(0);
  border-color: rgba(129, 200, 220, .82);
  box-shadow:
    0 30px 74px rgba(13, 68, 104, .17),
    0 1px 0 rgba(255, 255, 255, .96) inset;
}

.problem-grid article:nth-child(even) {
  transform: translateY(14px);
}

.problem-grid article::before {
  top: clamp(168px, 14.2vw, 198px);
  right: 16px;
  width: 58px;
  height: 58px;
}

.problem-grid article::after {
  top: clamp(188px, 15.4vw, 216px);
  height: 70px;
}

.problem-grid img {
  height: clamp(232px, 18.2vw, 258px);
  object-position: center 28%;
}

.problem-grid p {
  min-height: 116px;
  padding: 20px 16px 22px;
  font-size: clamp(14px, .96vw, 17px);
  line-height: 1.62;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .problem-grid {
    width: min(100%, 760px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .problem-grid article:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 560px) {
  .problem-grid {
    grid-template-columns: 1fr !important;
  }

  .problem-grid article {
    min-height: 340px;
  }
}

/* Diagnosis form v2: step-based modal using existing visual assets. */
.modal-panel {
  width: min(1040px, calc(100vw - 28px));
  height: min(760px, calc(100dvh - 28px));
  max-height: min(820px, calc(100dvh - 28px));
  padding: 0;
  overflow: hidden;
}

.modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  min-height: 0;
  height: 100%;
}

.diagnosis-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 30px;
  color: #10344d;
  background:
    linear-gradient(180deg, #edf9fd, #ffffff 72%),
    #edf9fd;
  border-right: 1px solid #d6e8f0;
}

.diagnosis-aside h2 {
  margin: 0;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.25;
  text-align: left;
}

.diagnosis-aside p {
  margin: 0;
  color: #46687d;
  font-weight: 800;
  line-height: 1.75;
}

.diagnosis-aside img {
  width: min(100%, 260px);
  margin: auto auto 0;
  filter: drop-shadow(0 20px 28px rgba(19, 82, 116, .14));
}

.diagnosis-aside ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnosis-aside li {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #cfe5ed;
  border-radius: 8px;
  background: #fff;
  color: #17445e;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis-form {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  gap: 18px;
  padding: 34px 34px 28px;
  overflow: auto;
  background: #fff;
}

.form-topline {
  display: grid;
  gap: 10px;
}

.form-topline span {
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.form-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f1f6;
}

.form-progress b {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: #0a66c2;
  transition: width .18s ease-out;
}

.form-step {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  align-content: start;
}

.form-step[hidden] {
  display: none;
}

.form-step h3,
.form-step > p {
  grid-column: 1 / -1;
}

.form-step h3 {
  margin: 0;
  color: #092946;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
}

.form-step > p {
  margin: -5px 0 4px;
  color: #526f82;
  font-weight: 800;
  line-height: 1.7;
}

.diagnosis-form label {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #254b63;
  font-size: 13px;
  font-weight: 900;
}

.field-block {
  display: grid;
  gap: 8px;
  color: #254b63;
  font-size: 13px;
  font-weight: 900;
}

.diagnosis-form input,
.diagnosis-form select,
.diagnosis-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfe0ea;
  border-radius: 8px;
  padding: 0 12px;
  color: #092946;
  background: #f9fcfe;
}

.diagnosis-form textarea {
  min-height: 94px;
  padding: 12px;
  resize: vertical;
}

.diagnosis-form input:focus,
.diagnosis-form select:focus,
.diagnosis-form textarea:focus,
.choice-grid label:focus-within,
.modal-close:focus-visible,
.secondary-step:focus-visible,
.primary-cta:focus-visible {
  outline: 3px solid rgba(10, 102, 194, .22);
  outline-offset: 2px;
  border-color: #0a66c2;
}

.diagnosis-form [aria-invalid="true"] {
  border-color: #c93f3f;
  background: #fff8f8;
}

.diagnosis-form .wide {
  grid-column: 1 / -1;
}

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

.skill-groups {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}

.skill-group {
  display: grid;
  gap: 8px;
}

.skill-group h4 {
  margin: 0;
  color: #0a66c2;
  font-size: 13px;
  line-height: 1.4;
}

.choice-grid.compact {
  grid-column: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-grid label {
  min-height: 46px;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding: 10px 11px;
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  background: #f5fbfd;
  line-height: 1.35;
}

.choice-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: #0a66c2;
}

.choice-grid.is-invalid {
  padding: 8px;
  border: 1px solid #c93f3f;
  border-radius: 8px;
  background: #fff8f8;
}

.summary-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-panel div,
.form-note {
  border: 1px solid #d7e8ef;
  border-radius: 8px;
  background: #f6fbfd;
  padding: 12px 14px;
}

.summary-panel span {
  display: block;
  margin-bottom: 5px;
  color: #668091;
  font-size: 12px;
  font-weight: 900;
}

.summary-panel b {
  color: #123e59;
  font-size: 14px;
  line-height: 1.55;
}

.form-note {
  color: #526f82;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.form-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e6f0f5;
  background: #fff;
}

.form-actions [hidden] {
  display: none;
}

.secondary-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #cfe0ea;
  border-radius: 999px;
  padding: 0 22px;
  color: #17445e;
  background: #fff;
  font-weight: 900;
}

.form-error {
  color: #a43737;
}

@media (max-width: 820px) {
  .modal-panel {
    overflow: auto;
  }

  .modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .diagnosis-aside {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d6e8f0;
  }

  .diagnosis-aside img {
    display: none;
  }

  .diagnosis-form {
    padding: 26px 20px 22px;
  }
}

@media (max-width: 560px) {
  .form-step,
  .summary-panel {
    grid-template-columns: 1fr;
  }

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

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions .primary-cta,
  .form-actions .secondary-step {
    width: 100%;
  }
}
