:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f1f6f4;
  --surface-warm: #fff7eb;
  --ink: #17324d;
  --text: #31445a;
  --muted: #66788c;
  --line: #d8e3e0;
  --green: #88a985;
  --green-soft: #dfece5;
  --beige: #f3eadc;
  --blue-soft: #e7f0f7;
  --accent: #f2a64d;
  --accent-dark: #ce8230;
  --shadow: 0 18px 50px rgba(23, 50, 77, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.9;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

strong,
b {
  font-weight: 400;
}

.lp {
  overflow: hidden;
}

@keyframes textReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 8px 0 var(--accent-dark), 0 0 0 rgba(242, 166, 77, 0);
  }

  50% {
    box-shadow: 0 8px 0 var(--accent-dark), 0 0 28px rgba(242, 166, 77, 0.32);
  }
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0 58px;
}

.hero__copy {
  max-width: 690px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.section--price .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero h1,
.section h2,
.section h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.35;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.22;
  text-wrap: balance;
  animation: textReveal 0.75s ease-out both;
}

.lead,
.section-lead {
  max-width: 660px;
  margin: 20px 0 24px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.65;
}

.section p,
.hero p {
  max-width: 700px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-points div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.hero-points span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.hero-points strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.price-card {
  display: inline-grid;
  gap: 3px;
  margin: 12px 0 22px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.price-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.price-card strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.price-card small {
  margin-top: 5px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 30px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.45;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 0 var(--accent-dark);
  animation: ctaGlow 4.2s ease-in-out infinite;
}

.button--primary:hover {
  box-shadow: 0 6px 0 var(--accent-dark);
}

.cta-row {
  margin: 10px 0 22px;
}

.note {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.hero__visual {
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.12s linear;
  will-change: transform;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% -7% -5% 10%;
  border-radius: 999px;
  background: var(--green-soft);
  opacity: 0.68;
  animation: softFloat 7s ease-in-out infinite;
}

.hero__visual img {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-map {
  padding: 0 0 34px;
}

.quick-map__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.quick-map span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.quick-map span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.section {
  padding: 88px 0;
}

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

.section--accent {
  background: linear-gradient(135deg, var(--green-soft), var(--beige));
}

.section--price {
  background: var(--ink);
  color: #e8f0f6;
}

.section--price h2,
.section--price h3 {
  color: #fff;
}

.section--price p {
  color: #d9e5ee;
}

.section--faq {
  padding-top: 44px;
}

.section--final {
  padding: 104px 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(223, 236, 229, 0.95), transparent 30%),
    linear-gradient(135deg, #f7fbf8, #fff7eb);
}

.section--final h2 {
  max-width: 640px;
}

.section--final p:not(.eyebrow):not(.note) {
  max-width: 560px;
  margin-bottom: 26px;
  font-weight: 400;
  line-height: 1.8;
}

.section--final .button {
  margin-top: 14px;
  margin-bottom: 22px;
}

.section--final .note {
  max-width: 560px;
}

.section h2 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(28px, 2.8vw, 40px);
  text-wrap: normal;
  white-space: nowrap;
}

.section h3 {
  font-size: 22px;
}

.section p {
  margin: 0 0 16px;
  line-height: 1.85;
}

.pain-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 14px;
}

.pain-snapshot article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pain-snapshot span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
}

.pain-snapshot strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.reader-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 16px;
}

.reader-path article {
  position: relative;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.reader-path article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 22px;
  height: 22px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
  background: var(--surface);
}

.reader-path span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 400;
}

.reader-path strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}

.reader-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.impulse-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 4px;
}

.impulse-row span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.visual-card p,
.deliverable-grid p,
.compare p,
.case-card p,
.criteria-card li,
.short-message {
  line-height: 1.7;
}

.short-message {
  max-width: 740px;
  margin: 30px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 400;
}

.impulse-row + .short-message {
  margin-top: 40px;
}

.visual-cards + .short-message {
  margin-top: 34px;
}

.before-after + .short-message {
  margin-top: 34px;
}

.scene-illustration {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(180px, 0.6fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: center;
  margin: 32px 0 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 22%, var(--green-soft), transparent 26%),
    var(--surface);
  box-shadow: var(--shadow);
}

.scene-illustration__phone {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
  border: 3px solid var(--ink);
  border-radius: 28px;
  background: #fff;
}

.scene-illustration__phone span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: #dce6ea;
}

.scene-illustration__phone span:nth-child(1) {
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5edf3, #f5eadc);
}

.scene-illustration__phone span:nth-child(2) {
  width: 86%;
}

.scene-illustration__phone span:nth-child(3) {
  width: 62%;
}

.scene-illustration__phone strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--surface-warm);
  color: var(--accent-dark);
  font-size: 34px;
  line-height: 1;
}

.scene-illustration__person {
  width: min(176px, 100%);
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  animation: softFloat 8s ease-in-out infinite;
}

.scene-illustration__bubble {
  position: relative;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.scene-illustration__bubble::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 26px;
  height: 26px;
  border-left: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.visual-cards,
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.visual-card,
.deliverable-grid article,
.criteria-card,
.case-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.case-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.visual-card h3,
.deliverable-grid h3 {
  margin: 14px 0 10px;
  color: var(--ink);
}

.line-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(165, 184, 171, 0.55);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(233, 241, 236, 0.95), rgba(245, 249, 246, 0.98));
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(28, 56, 95, 0.06);
}

.line-icon svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.line-icon svg * {
  fill: none;
  stroke: #4f6f63;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-icon--price svg rect,
.line-icon--no-response svg rect {
  fill: #fff;
  stroke: #4f6f63;
}

.line-icon--price text,
.line-icon--where text {
  fill: #2b466a;
  stroke: none;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
}

.line-icon--proof svg path:first-child {
  fill: rgba(185, 209, 191, 0.28);
}

.line-icon--flow svg rect,
.line-icon--no-response svg circle {
  fill: #fff;
  stroke: #4f6f63;
}

.line-icon--price,
.line-icon--no-response {
  background: linear-gradient(180deg, rgba(232, 239, 247, 0.95), rgba(244, 248, 252, 0.98));
}

.line-icon--proof,
.line-icon--where {
  background: linear-gradient(180deg, rgba(230, 241, 232, 0.96), rgba(244, 249, 244, 0.98));
}

.line-icon--flow,
.line-icon--rebuild {
  background: linear-gradient(180deg, rgba(235, 243, 239, 0.96), rgba(246, 250, 247, 0.98));
}

.lp-visual {
  margin: 34px 0 0;
}

.lp-visual img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(23, 50, 77, 0.09);
}

.lp-visual figcaption {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.lp-visual--problem {
  margin-top: 30px;
}

.lp-visual--problem img,
.lp-visual--report img,
.lp-visual--flow img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lp-visual--report {
  margin-top: 38px;
}

.lp-visual--flow {
  width: 100%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.process-steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.process-steps h3 {
  margin: 0 0 8px;
}

.process-steps p {
  margin: 0;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 400;
}

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

.before-after__item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.before-after__item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.before-after__item p {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 400;
}

.before-after__item--after {
  border-color: var(--green);
  background: var(--surface-soft);
}

.before-after__arrow {
  position: relative;
  height: 3px;
  background: var(--green);
}

.before-after__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.value-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.value-panel div {
  padding: 26px;
  border: 1px solid rgba(23, 50, 77, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.value-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.message {
  max-width: 820px;
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 400;
}

.value-panel + .message,
.message--value {
  margin-top: 44px;
}

.profile-layout,
.price-layout,
.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 52px;
  align-items: start;
}

.profile-layout--authority {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
  gap: 44px;
  align-items: center;
}

.profile-copy > p,
.profile-lead,
.profile-note {
  max-width: 760px;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.achievement-grid li {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 13px 0;
}

.achievement-grid li + li {
  border-top: 1px solid rgba(216, 227, 224, 0.72);
}

.achievement-grid span {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.achievement-grid p {
  margin: 0;
  color: var(--ink);
  line-height: 1.75;
}

.profile-authority {
  display: grid;
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-authority__person {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0;
  text-align: left;
}

.profile-authority__person img {
  grid-row: 1 / span 2;
  display: block;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.profile-authority__person p {
  align-self: end;
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.45;
}

.profile-authority__person span {
  align-self: start;
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.related-articles {
  display: grid;
  gap: 8px;
  max-width: 720px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.related-articles__title {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.related-articles__lead {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.related-articles__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.related-articles a {
  color: var(--ink);
  font-size: 14px;
  text-underline-offset: 0.22em;
}

.profile-authority .criteria-card {
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.criteria-card p {
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 400;
}

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

.criteria-card li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  line-height: 1.75;
}

.criteria-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.compare article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.compare span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 400;
}

.compare__strong {
  border-color: var(--green) !important;
  background: var(--surface-soft) !important;
}

.price-layout {
  align-items: center;
}

.price-layout > div:first-child .note {
  margin-top: 18px;
}

.price-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.price-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.case-card span {
  display: inline-flex;
  justify-self: start;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.case-card h3 {
  margin: 0;
  color: var(--accent-dark);
  font-size: 34px;
  line-height: 1.25;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.case-card .button {
  justify-self: start;
  margin-top: 8px;
}

.action-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.62fr);
  align-items: center;
}

.section--final h2 {
  max-width: none;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.35;
}

.action-diagram {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.action-diagram span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.action-diagram strong {
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--ink);
}

.action-diagram em {
  padding: 15px 16px;
  border-radius: 8px;
  background: var(--beige);
  color: var(--ink);
  font-style: normal;
  font-weight: 400;
}

.final-checks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: 22px 0;
}

.final-checks span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
}

.faq {
  display: grid;
  gap: 12px;
}

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 400;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__visual {
    transform: none;
  }
}

@media (max-width: 920px) {
  .hero,
  .profile-layout,
  .price-layout,
  .action-grid,
  .scene-illustration {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
  }

  .hero__visual img {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-points,
  .quick-map__inner,
  .pain-snapshot,
  .reader-path,
  .visual-cards,
  .deliverable-grid,
  .process-steps,
  .value-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-illustration__bubble::before {
    left: 44px;
    top: -14px;
    transform: rotate(135deg);
  }

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

  .before-after__arrow {
    width: 3px;
    height: 46px;
    margin: auto;
  }

  .before-after__arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(135deg);
  }

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

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

  .hero {
    padding: 44px 0 46px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: 28px;
    white-space: normal;
  }

  .lead,
  .section-lead {
    font-size: 17px;
  }

  .hero-points,
  .quick-map__inner,
  .pain-snapshot,
  .reader-path,
  .visual-cards,
  .deliverable-grid,
  .process-steps,
  .value-panel,
  .compare {
    grid-template-columns: 1fr;
  }

  .quick-map span:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) rotate(135deg);
  }

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

  .button {
    width: 100%;
    padding-inline: 20px;
  }

  .achievement-grid li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }

  .price-card {
    width: 100%;
  }

  .reader-path article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%) rotate(135deg);
  }

  .scene-illustration,
  .visual-card,
  .deliverable-grid article,
  .criteria-card,
  .case-card {
    padding: 22px;
  }

  .case-card h3 {
    font-size: 28px;
  }

  details p {
    white-space: normal;
  }
}
