:root { --font-noto-jp: "Noto Sans JP"; }

:root {
  --font-primary: var(--font-noto-jp), "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --navy: #062a3a;
  --navy-deep: #031f2b;
  --teal: #087d8c;
  --teal-dark: #075a66;
  --teal-bright: #00a8b8;
  --ink: #062a3a;
  --muted: #526f79;
  --line: #bfe8ed;
  --white: #ffffff;
  --orange: #f97316;
  --yellow: #fff41d;
  --container: 1312px;
  --section-space: clamp(48px, 4.5vw, 60px);
  --section-heading-gap: clamp(28px, 3vw, 36px);
  --section-title-size: clamp(1.75rem, 2.75vw, 2.3rem);
  --section-title-line: 1.38;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 36px -14px rgba(5, 41, 51, 0.16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-primary);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
p, h1, h2, h3, h4 { margin: 0; }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 0;
  border-top: 1px solid rgba(8, 125, 140, 0.1);
  background: var(--white);
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto var(--section-heading-gap);
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: var(--section-title-size);
  font-weight: 900;
  line-height: var(--section-title-line);
  letter-spacing: -0.045em;
}

.section-heading h2 span,
.about-line span,
.roadmap-intro h3 em { color: var(--teal); }

.section-heading.is-light h2 { color: var(--white); }

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow-underline {
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 7px;
}

.eyebrow-underline::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 920ms cubic-bezier(.22, 1, .36, 1) 260ms;
}

.section-heading.is-visible .eyebrow-underline::after {
  transform: scaleX(1);
}

.caveat {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
  text-align: center;
}

.button {
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid var(--teal);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px -8px rgba(8, 125, 140, 0.32);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  background: var(--teal-dark);
  box-shadow: 0 16px 30px -8px rgba(8, 125, 140, 0.38);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--white);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible { color: var(--white); }

.button-orange {
  min-width: 340px;
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 12px 26px -8px rgba(249, 115, 22, 0.35);
  font-size: 1.1rem;
}

.button-orange:hover,
.button-orange:focus-visible { background: #dc5d08; }

.site-header {
  position: relative;
  z-index: 60;
  width: min(var(--container), calc(100% - 64px));
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(8, 125, 140, 0.13);
}

.header-brand {
  width: 300px;
  height: 64px;
  overflow: hidden;
  display: block;
}

.header-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 50px);
}

.site-header nav a {
  font-size: 0.85rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--teal); outline: none; }

.header-cta {
  min-width: 146px;
  border-radius: 999px;
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--white);
}

.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 650px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.hero-copy { padding: 24px 0 20px 39px; }

.hero-eyebrow {
  margin-bottom: 22px;
  color: #037989;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(2.85rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: -0.055em;
}

.hero-copy h1 span { color: var(--teal); }

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .button:first-child { width: 244px; }
.hero-actions .button:last-child { width: 254px; }

.hero-visual {
  min-width: 0;
  height: 470px;
  display: grid;
  place-items: center;
}

.character {
  display: block;
  height: auto;
  object-fit: contain;
}

.hero-character {
  width: min(610px, 108%);
  max-width: none;
}

.hero-scope {
  padding: 30px 0 32px;
  color: var(--white);
  background: var(--navy);
  text-align: center;
}

.hero-scope h2 {
  color: #8fe9ef;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero-scope p {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.8;
}

.logo-marquee {
  border-block: 1px solid rgba(143, 211, 219, 0.42);
  overflow: hidden;
}

.logo-lane {
  min-height: 78px;
  border-bottom: 1px solid rgba(143, 211, 219, 0.28);
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  align-items: center;
}

.logo-lane:last-child { border-bottom: 0; }

.logo-lane-label {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.logo-viewport {
  min-width: 0;
  overflow: hidden;
}

.logo-track {
  width: max-content;
  display: flex;
  animation: logo-scroll 34s linear infinite;
  will-change: transform;
}

.logo-group {
  flex: 0 0 auto;
  padding-right: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.brand-item {
  flex: 0 0 auto;
  height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-item img {
  width: 46px;
  height: 42px;
  object-fit: contain;
}

.logo-marquee-light { border-color: var(--line); }
.logo-marquee-light .logo-lane { border-color: var(--line); }
.logo-marquee-light .logo-lane-label { color: var(--navy); background: var(--white); }
.logo-marquee-light .brand-item { color: var(--navy); }
.logo-marquee-light .brand-item-dark-icon img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(24%) saturate(1843%) hue-rotate(151deg) brightness(92%) contrast(98%);
}

.ecosystem {
  min-height: 0;
  padding: 28px 0;
}

.fee-badge {
  min-width: 583px;
  min-height: 92px;
  padding: 16px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  background: #10525c;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.36;
  text-align: center;
}

.fee-badge > span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: #b9f4f8;
}

.fee-badge strong { color: var(--yellow); }

.pain-section { min-height: 0; padding: var(--section-space) 0; }
.pain-section .section-heading { margin-bottom: var(--section-heading-gap); }
.pain-section .eyebrow { color: var(--navy); font-size: 1.05rem; }

.pain-list {
  width: min(874px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.pain-card {
  min-height: 106px;
  padding: 0 40px 0 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 50px 124px 1fr;
  align-items: center;
  gap: 22px;
  background: var(--white);
  box-shadow: 0 16px 30px -16px rgba(5, 41, 51, 0.18);
}

.number-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}

.pain-character {
  width: 116px;
  height: 104px;
  object-fit: contain;
}

.pain-card h3 {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.38;
}

.pain-conclusion {
  min-height: 146px;
  margin-top: 38px;
  padding: 20px 58px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 26px;
  color: var(--white);
  background: linear-gradient(90deg, #022a3a, #084660 51%, #047e8e);
  box-shadow: 0 20px 44px -10px rgba(5, 36, 46, 0.24);
}

.conclusion-bulb {
  width: 72px;
  height: 72px;
  border: 4px solid #8fe4eb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8fe4eb;
  font-size: 2.3rem;
  font-weight: 900;
}

.pain-conclusion p {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.flow-disclosure { padding: 28px 0 0; background: var(--white); }

.flow-button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 82px;
  padding: 18px 28px;
  border: 2px solid #11afbe;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  color: var(--white);
  background: #075866;
  cursor: pointer;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-align: center;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.flow-button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 34%, rgba(255, 255, 255, 0.16) 48%, transparent 62%); transform: translateX(-120%); pointer-events: none; }
.flow-button > span { position: relative; z-index: 1; }
.flow-button[aria-expanded="false"] { animation: flow-tap 2s ease-in-out infinite; }
.flow-button[aria-expanded="false"]::before { animation: flow-button-shimmer 2.4s ease-in-out infinite; }
.flow-button-spacer { width: 58px; height: 58px; }

.flow-button .plus {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.1rem;
  line-height: 1;
}

.flow-button[aria-expanded="false"] .plus { animation: flow-plus-pulse 1.35s ease-in-out infinite; }

.flow-button:hover,
.flow-button:focus-visible { outline: none; background: #064c58; }

.flow-panel {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 620ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 620ms;
}

.flow-panel.is-open {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 620ms cubic-bezier(.22, 1, .36, 1);
}

.flow-panel-inner { min-height: 0; overflow: hidden; }
.flow-content { padding: 58px 0 66px; }

.flow-heading {
  position: relative;
  min-height: 170px;
  display: grid;
  place-items: center;
}

.flow-heading > div:first-child { width: min(720px, calc(100% - 280px)); text-align: center; }
.flow-heading h2 { font-size: var(--section-title-size); line-height: var(--section-title-line); }
.flow-scenario-note { width: fit-content; margin: 0 auto 12px; padding: 6px 14px; border-radius: 999px; color: var(--teal); background: #eaf8fa; font-size: 0.74rem; font-weight: 900; }
.flow-example-note { margin-top: 16px; color: var(--muted); font-size: 0.76rem; }
.flow-character { position: absolute; right: 0; width: 230px; }

.premise {
  margin: 36px auto;
  padding: 22px 32px;
  border: 1px solid var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
}

.premise > span {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.premise strong { font-size: 1.2rem; }
.premise p { margin-top: 6px; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }

.flow-route {
  margin: 30px auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  background: var(--white);
}

.flow-route span {
  min-width: 150px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
}

.flow-route b { color: var(--teal); }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flow-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flow-card > span { color: var(--teal); font-size: 0.82rem; font-weight: 900; }
.flow-card h3 { margin-top: 8px; font-size: 1.3rem; }
.flow-card ul { margin: 20px 0 0; padding: 0; list-style: none; }
.flow-card li { position: relative; padding: 10px 0 10px 22px; border-top: 1px solid rgba(8, 125, 140, 0.14); color: var(--muted); font-size: 0.84rem; font-weight: 600; line-height: 1.55; }
.flow-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.flow-warning {
  margin-top: 28px;
  padding: 22px;
  border: 2px solid #f97316;
  border-radius: 10px;
  color: var(--navy);
  background: #fff9f5;
  text-align: center;
}

.flow-warning strong { font-size: 1.15rem; }
.flow-warning p { margin-top: 6px; color: var(--muted); font-size: 0.82rem; }
.about-section { min-height: 600px; padding: var(--section-space) 0; }

.about-stage {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.about-stage h2 {
  position: relative;
  z-index: 2;
  color: #008da1;
  font-size: var(--section-title-size);
  font-weight: 900;
}

.about-line {
  position: relative;
  z-index: 2;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.line-one { margin-top: 68px; font-size: clamp(1.75rem, 3.5vw, 2.55rem); }
.line-two { margin-top: 30px; font-size: clamp(2.35rem, 5vw, 3.9rem); }
.line-three { margin-top: 28px; font-size: clamp(1.75rem, 3.5vw, 2.55rem); }

.about-character {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: -18px;
  width: 240px;
}

.about-arrow {
  position: absolute;
  z-index: 3;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 40px solid var(--teal);
  border-right: 54px solid transparent;
  border-left: 54px solid transparent;
  transform: translateX(-50%);
}

.about-stage .about-line {
  opacity: 0;
  transform: translateY(34px) scale(.96);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.about-stage.is-visible .about-line { opacity: 1; transform: translateY(0) scale(1); }
.about-stage.is-visible .line-two { transition-delay: 220ms; }
.about-stage.is-visible .line-three { transition-delay: 440ms; }

.service-section { padding: var(--section-space) 0; }

.service-panel {
  padding: 44px 48px 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 26px -4px rgba(8, 38, 46, 0.1);
}

.service-title-row {
  position: relative;
  min-height: 108px;
  display: grid;
  place-items: center;
}

.service-title-row .section-heading { margin: 0; }

.service-character {
  position: absolute;
  right: 0;
  width: 150px;
}

.route-steps {
  margin: 14px auto 42px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}

.route-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.route-step::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32px;
  left: -50%;
  width: 100%;
  height: 3px;
  background: var(--teal);
}

.route-step:first-child::before { display: none; }

.route-step > span {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
}

.route-step img { width: 42px; height: 42px; }
.route-step b { font-size: 1rem; }
.route-step i { position: absolute; z-index: 2; top: 21px; right: -7px; color: var(--teal); font-style: normal; font-weight: 900; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.service-card {
  border: 1px solid #d2ecf0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 18px -4px rgba(8, 38, 46, 0.08);
}

.service-card-head {
  min-height: 102px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 48px 50px 1fr;
  align-items: center;
  gap: 16px;
}

.service-card-head > span {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.service-card-head img { width: 50px; height: 50px; }
.service-card h3 { font-size: 1.35rem; line-height: 1.3; }

.service-card > button {
  width: 100%;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--teal);
  background: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card > button:hover,
.service-card > button:focus-visible { outline: none; background: #f7fdfe; }
.service-card > button b { font-size: 1.35rem; }

.service-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 360ms cubic-bezier(.22, 1, .36, 1); }
.service-detail-inner { min-height: 0; overflow: hidden; padding: 0 22px; transition: padding 360ms ease; }
.service-card.is-open .service-detail { grid-template-rows: 1fr; }
.service-card.is-open .service-detail-inner { padding-block: 20px 24px; }

.service-detail-lead {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.78;
}

.service-detail-actions {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-detail-actions strong {
  color: var(--teal);
  font-size: 0.74rem;
}

.service-detail-actions ul {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.service-detail-actions li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.65;
}

.service-detail-actions li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.service-detail-outcome {
  margin-top: 18px;
  padding: 13px 14px;
  border-radius: 7px;
  color: var(--ink);
  background: #edf9fa;
  font-size: 0.77rem;
  font-weight: 750;
  line-height: 1.65;
}

.service-detail-outcome span {
  margin-right: 8px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
}

.service-bottom {
  margin-top: 46px;
  padding: 17px 24px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
}

.coverage-section {
  min-height: 0;
  padding: var(--section-space) 0;
  color: var(--white);
  background: #052b37;
}

.coverage-heading { position: relative; }
.coverage-heading .section-heading { margin-bottom: 20px; }
.coverage-heading .section-heading h2 { font-size: var(--section-title-size); }
.coverage-character { position: absolute; top: -78px; right: -10px; width: 250px; }

.coverage-copy {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.coverage-lead {
  margin: 28px auto 24px;
  color: #bdd8dd;
  font-size: 1rem;
  line-height: 1.68;
  text-align: center;
}

.coverage-note {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.coverage-note .fee-badge { min-height: 96px; }
.coverage-note > p { color: #bdd8dd; font-size: 0.72rem; line-height: 1.6; text-align: center; }

.comparison-section { padding: var(--section-space) 0; }
.comparison-container { position: relative; }
.comparison-section .section-heading { margin-bottom: 34px; }
.comparison-title-row { position: relative; }
.comparison-character { position: absolute; z-index: 2; top: -74px; right: 10px; width: 280px; }
.comparison-lead { margin: -14px auto 30px; color: var(--muted); font-size: 0.84rem; font-weight: 700; line-height: 1.7; text-align: center; }
.comparison-head { margin-left: 31%; display: grid; grid-template-columns: 29fr 40fr; gap: 16px; }
.comparison-head > div { padding: 22px 26px; border-radius: var(--radius-md) var(--radius-md) 0 0; color: var(--white); background: var(--navy); }
.comparison-head > div:last-child { background: var(--teal); }
.comparison-head span,
.comparison-head strong { display: block; }
.comparison-head span { font-size: 0.75rem; font-weight: 900; }
.comparison-head strong { margin-top: 6px; font-size: 1.2rem; }
.comparison-head p { margin-top: 4px; font-size: 0.76rem; opacity: 0.82; }
.comparison-table { border: 1px solid var(--line); border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md); overflow: hidden; }
.comparison-row { min-height: 58px; display: grid; grid-template-columns: 31% 29% 40%; align-items: center; border-bottom: 1px solid var(--line); }
.comparison-row:last-child { border-bottom: 0; }
.comparison-row span,
.comparison-row b,
.comparison-row strong { height: 100%; padding: 16px 24px; display: flex; align-items: center; }
.comparison-row span { font-size: 0.88rem; font-weight: 800; }
.comparison-row b { border-inline: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; }
.comparison-row strong { color: var(--teal); font-size: 0.9rem; }
.price-chart { margin: 32px 0 0; padding: 30px 34px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #f8fcfd; }
.price-chart figcaption { color: var(--ink); font-size: 1rem; font-weight: 900; text-align: center; }
.price-difference-bubble { position: relative; width: min(100%, 390px); margin: 18px auto 0; padding: 13px 30px 15px; border: 2px solid var(--teal); border-radius: 999px; color: var(--teal); background: var(--white); text-align: center; }
.price-difference-bubble::after { content: ""; position: absolute; bottom: -10px; left: 50%; width: 17px; height: 17px; border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal); background: var(--white); transform: translateX(-50%) rotate(45deg); }
.price-difference-bubble span,
.price-difference-bubble strong { position: relative; z-index: 1; display: block; }
.price-difference-bubble span { font-size: 0.68rem; font-weight: 800; }
.price-difference-bubble strong { margin-top: 2px; font-size: 1.5rem; line-height: 1.2; }
.price-difference-bubble strong small { margin-right: 10px; font-size: 0.78rem; }
.price-chart-plot { min-height: 286px; margin-top: 18px; padding: 0 5%; border-bottom: 3px solid var(--teal); display: grid; grid-template-columns: minmax(180px, 240px) 88px minmax(180px, 240px); justify-content: center; align-items: end; gap: 30px; }
.price-bar-group { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.price-bar-kicker { margin-bottom: 8px; color: var(--ink); font-size: 0.76rem; font-weight: 900; }
.price-bar { width: min(100%, 240px); border-radius: 10px 10px 0 0; display: grid; place-content: center; text-align: center; }
.price-bar strong { font-size: clamp(1.45rem, 3vw, 2.45rem); line-height: 1.35; }
.price-bar-outsourcing .price-bar { height: 198px; border: 2px solid var(--teal); border-bottom: 0; color: var(--ink); background: #e8f7f9; }
.price-chart-guide { align-self: center; display: grid; justify-items: center; color: var(--teal); transform: translateY(-10px); }
.price-chart-guide img { width: 112px; height: 112px; object-fit: contain; transform-origin: 54% 46%; }
.price-chart.is-visible .price-chart-guide img { animation: cost-arrow-guide 1.05s cubic-bezier(0.32, 0.72, 0, 1) 1 both; }
.price-stacked-bar { width: min(100%, 240px); height: 198px; border: 2px solid var(--teal); border-bottom: 0; border-radius: 10px 10px 0 0; overflow: hidden; display: grid; grid-template-rows: 1fr 62px; text-align: center; }
.price-stacked-bar > div { display: grid; place-content: center; }
.price-stacked-bar > div:first-child { margin: 4px 4px 0; border: 3px dashed #d96767; border-bottom: 0; color: #c84949; background: #ffdede; }
.price-stacked-bar > div:last-child { color: var(--white); background: var(--teal); }
.price-stacked-bar span { font-size: 0.68rem; font-weight: 850; }
.price-stacked-bar strong { margin-top: 2px; font-size: clamp(1.2rem, 2.4vw, 2rem); }
.price-chart-note { margin-top: 18px; color: var(--muted); font-size: 0.68rem; line-height: 1.65; text-align: center; }

.team-title-row { position: relative; }
.team-character { position: absolute; top: -70px; right: 0; width: 260px; }
.team-panel { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.team-panel-intro { min-height: 170px; padding: 28px 42px; display: grid; place-items: center; color: var(--white); background: var(--navy); text-align: center; }
.team-panel-intro h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.5; }
.team-priority { position: relative; z-index: 2; width: min(540px, 80%); margin: -22px auto 0; padding: 12px 24px; border-radius: 999px; color: var(--white); background: var(--teal); font-weight: 900; text-align: center; }
.team-grid { padding: 52px 28px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-grid article { padding: 18px; border: 1px solid var(--line); border-radius: 8px; display: grid; justify-items: center; text-align: center; }
.team-grid h3 { width: 100%; font-size: 1.1rem; text-align: center; }
.team-grid img { width: 140px; height: 130px; justify-self: center; object-fit: contain; }
.team-grid strong { min-height: 50px; display: grid; place-items: center; color: var(--teal); font-size: 0.72rem; line-height: 1.5; }
.team-grid p { width: 100%; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.7rem; line-height: 1.55; text-align: center; }
.team-bottom { padding: 18px; color: var(--white); background: var(--teal); font-size: 1.2rem; font-weight: 900; text-align: center; }

.results-intro { width: min(100%, 780px); margin: 0 auto 34px; }
.support-card { padding: 22px 26px; border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: 160px 1fr; gap: 12px 18px; background: var(--white); box-shadow: var(--shadow); }
.support-card .results-character { width: 160px; grid-row: span 2; }
.support-card h3 { font-size: 1.2rem; line-height: 1.5; }
.support-card ul { margin: 0; padding: 0; list-style: none; }
.support-card li { margin-top: 5px; color: var(--muted); font-size: 0.74rem; font-weight: 700; }
.support-card li::before,
.result-card li::before { content: "✓"; margin-right: 8px; color: var(--teal); }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.results-inquiry-note { margin-top: 12px; color: var(--muted); font-size: 0.66rem; line-height: 1.6; text-align: right; }
.result-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white); box-shadow: 0 14px 34px rgba(6, 42, 58, 0.07); }
.result-card header { padding: 17px 20px; display: flex; align-items: center; gap: 22px; color: var(--white); background: var(--teal); }
.result-card:nth-child(2) header { background: var(--navy); }
.result-card header span { font-size: 0.72rem; font-weight: 900; }
.result-card header h3 { font-size: 1.25rem; }
.result-card h4 { min-height: 116px; padding: 28px 22px; display: grid; align-items: center; font-size: 1.16rem; line-height: 1.55; }
.result-card > strong { padding: 0 22px; color: var(--teal); font-size: 0.76rem; }
.result-card ul { margin: 10px 22px 22px; padding: 16px 0; border-block: 1px solid var(--line); list-style: none; }
.result-card li { margin: 9px 0; color: var(--muted); font-size: 0.74rem; font-weight: 700; }
.result-card footer { min-height: 78px; padding: 14px 20px; display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 10px; color: var(--white); background: var(--navy); }
.result-card footer span { font-size: 0.68rem; font-weight: 900; }
.result-card footer p { font-size: 0.68rem; font-weight: 700; line-height: 1.5; }

.roadmap-intro { position: relative; margin-bottom: 72px; display: grid; justify-items: center; gap: 30px; }
.roadmap-message { position: relative; width: min(720px, 100%); padding: 26px 54px 28px; border: 2px solid var(--teal); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); text-align: center; }
.roadmap-message::after { content: ""; position: absolute; bottom: -13px; left: 50%; width: 22px; height: 22px; border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal); background: var(--white); transform: translateX(-50%) rotate(45deg); }
.roadmap-intro h3 { position: relative; z-index: 1; font-size: clamp(1.5rem, 2.2vw, 1.9rem); line-height: 1.5; }
.roadmap-intro h3 em { font-style: normal; }
.roadmap-copy-line { display: block; white-space: nowrap; }
.roadmap-character { position: static; width: 310px; justify-self: center; }
.roadmap-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.roadmap-grid::before { content: ""; position: absolute; right: calc((100% - 72px) / 10); top: -22px; left: calc((100% - 72px) / 10); height: 4px; border-radius: 4px; background: var(--teal); }
.roadmap-card { position: relative; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.roadmap-card::before { content: ""; position: absolute; top: -33px; left: 50%; width: 18px; height: 18px; border: 4px solid var(--teal); border-radius: 50%; background: var(--white); transform: translateX(-50%); }
.roadmap-card > div { display: flex; justify-content: space-between; align-items: center; }
.roadmap-card > div span { padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal); font-size: 0.7rem; font-weight: 900; }
.roadmap-card > div b { color: var(--teal); }
.roadmap-card-icon { width: 62px; height: 62px; margin: 28px auto 0; border-radius: 50%; display: grid; place-items: center; color: var(--teal); background: #edf9fa; }
.roadmap-card-icon svg { width: 30px; height: 30px; }
.roadmap-card h3 { margin-top: 16px; font-size: 1.06rem; text-align: center; }

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

.booking-bonus-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, #f2fcfd 0%, var(--white) 55%, #eaf9fb 100%);
  box-shadow: var(--shadow);
}

.booking-bonus-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(8, 125, 140, 0.14);
  border-radius: 50%;
}

.booking-bonus-copy {
  position: relative;
  z-index: 2;
}

.booking-bonus-label {
  width: fit-content;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.booking-bonus-label span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--white);
}

.booking-bonus-copy h2 {
  width: fit-content;
  max-width: 100%;
  margin-top: 17px;
  color: var(--ink);
  font-size: var(--section-title-size);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: -0.045em;
}

.booking-title-line { display: block; white-space: nowrap; }
.booking-bonus-copy h2 em { color: var(--teal); font-style: normal; }
.booking-title-plus { display: block; width: 100%; margin-block: 2px; line-height: 1; text-align: center; }

.booking-bonus-copy > p:last-of-type {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.85;
}

.booking-bonus-cta { margin-top: 24px; }

.booking-bonus-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 440px;
  isolation: isolate;
}

.booking-bonus-visual::before {
  content: "";
  position: absolute;
  inset: 8% 9% 7% 7%;
  z-index: -1;
  border: 1px solid rgba(8, 125, 140, 0.16);
  border-radius: 48% 52% 42% 58% / 52% 43% 57% 48%;
  background: rgba(255, 255, 255, 0.58);
}

.diagnosis-cover-card,
.booking-banner-card {
  position: absolute;
  min-width: 0;
  margin: 0;
}

.diagnosis-cover-card {
  top: 18px;
  left: 0;
  z-index: 1;
  width: 76%;
  transform: rotate(-2.4deg);
}

.booking-banner-card {
  right: 0;
  bottom: 18px;
  z-index: 2;
  width: 58%;
  transform: rotate(1.5deg);
}

.diagnosis-cover-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 628;
  object-fit: cover;
  border: 6px solid var(--white);
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 46px rgba(6, 42, 58, 0.16);
}

.booking-sample-banner {
  width: 100%;
  height: auto;
  border: 7px solid var(--white);
  border-radius: 14px;
  display: block;
  box-shadow: 0 24px 54px rgba(6, 42, 58, 0.2);
}

.contact-section { padding: 70px 0; color: var(--white); background: var(--navy); }
.contact-container { display: grid; justify-items: center; }
.contact-heading { margin-bottom: 30px; text-align: center; }
.contact-heading p { color: #5ee4ee; font-size: 0.76rem; font-weight: 900; letter-spacing: 0.12em; }
.contact-heading h2 { margin-top: 9px; color: var(--white); font-size: var(--section-title-size); line-height: var(--section-title-line); letter-spacing: -0.04em; }
.hubspot-form-shell { width: min(820px, 100%); padding: 32px; border-radius: 14px; color: var(--ink); background: var(--white); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22); }
.hs-form-frame { width: 100%; min-height: 720px; }
.hs-form-frame iframe { width: 100% !important; min-height: 720px !important; border: 0 !important; }
.faq-list { width: min(920px, 100%); margin: 0 auto; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.faq-list details { padding: 0 26px; border-top: 1px solid var(--line); }
.faq-list details:first-child { border-top: 0; }
.faq-list summary { position: relative; padding: 21px 42px 21px 0; cursor: pointer; color: var(--ink); font-size: 0.9rem; font-weight: 850; line-height: 1.55; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 15px; color: var(--teal); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 42px 21px 0; color: var(--muted); font-size: 0.82rem; font-weight: 600; line-height: 1.8; }

.site-footer {
  min-height: 340px;
  color: var(--ink);
  background: var(--white);
}

.footer-grid {
  position: relative;
  min-height: 340px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  column-gap: 86px;
  align-content: start;
}

.footer-brand-block { min-width: 0; }

.footer-brand {
  width: 380px;
  height: 90px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  color: var(--ink);
  background: var(--white);
}

.footer-brand img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.footer-brand-block > p { margin-top: 18px; color: var(--muted); font-size: 0.94rem; line-height: 1.6; }

.footer-label { color: var(--teal); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; }
.footer-navigation nav { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 16px 42px; }
.footer-navigation nav a { font-size: 0.94rem; font-weight: 800; transition: color 180ms ease; }
.footer-navigation nav a:hover,
.footer-navigation nav a:focus-visible,
.footer-meta-grid a:hover,
.footer-meta-grid a:focus-visible { color: var(--teal); outline: none; }

.footer-meta-grid { margin-top: 35px; display: grid; grid-template-columns: minmax(320px, 1.35fr) minmax(180px, .65fr); gap: 42px; }
.footer-meta-grid > div > p:last-child { margin-top: 12px; color: var(--muted); font-size: 0.86rem; line-height: 1.72; }
.footer-meta-grid strong { color: var(--ink); font-size: 0.94rem; }
.footer-copyright { position: absolute; bottom: 36px; left: 0; color: var(--muted); font-size: 0.75rem; }

.scroll-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 50;
  width: 58px;
  height: 58px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(6, 42, 58, .2);
  font: inherit;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, color 180ms ease, background-color 180ms ease;
  cursor: pointer;
}
.scroll-top-button.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.scroll-top-button:hover { color: var(--teal); background: var(--white); transform: translateY(-3px); }
.scroll-top-button:focus-visible { outline: 3px solid rgba(8, 125, 140, .26); outline-offset: 4px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 820ms cubic-bezier(.22, 1, .36, 1);
}

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

.character-fade.reveal,
.route-steps.reveal,
.pain-card.reveal {
  transform: none;
  transition: opacity 900ms ease;
}

@keyframes logo-scroll {
  to { transform: translateX(-25%); }
}

@keyframes flow-tap {
  0%, 100% { box-shadow: 0 0 0 0 rgba(8, 125, 140, 0), inset 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: 0 0 0 8px rgba(8, 125, 140, 0.14), inset 0 0 0 3px rgba(255, 255, 255, 0.22); }
}

@keyframes flow-button-shimmer {
  0%, 22% { transform: translateX(-120%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes flow-plus-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(97, 232, 240, 0); }
  50% { transform: scale(1.12); box-shadow: 0 0 0 10px rgba(97, 232, 240, 0.16); }
}

@keyframes cost-arrow-guide {
  0% { transform: translate(-8px, -8px) scale(.94) rotate(-2deg); filter: drop-shadow(0 5px 0 rgba(8, 125, 140, 0)); }
  52% { transform: translate(9px, 10px) scale(1.08) rotate(2deg); filter: drop-shadow(0 9px 7px rgba(8, 125, 140, .22)); }
  78% { transform: translate(3px, 4px) scale(1.02) rotate(0); filter: drop-shadow(0 7px 5px rgba(8, 125, 140, .12)); }
  100% { transform: translate(0, 0) scale(1) rotate(0); filter: drop-shadow(0 7px 5px rgba(8, 125, 140, .12)); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 280px 1fr auto; }
  .header-brand { width: 260px; }
  .site-header nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 20px; }
  .hero-copy { padding-left: 0; }
  .hero-eyebrow { font-size: 1rem; }
  .hero-character { width: 650px; }
  .coverage-character,
  .comparison-character,
  .team-character { width: 210px; opacity: 0.72; }
  .service-panel { padding-inline: 38px; }
  .service-card-head { grid-template-columns: 44px 44px 1fr; gap: 11px; padding-inline: 15px; }
  .service-card h3 { font-size: 1.05rem; }
  .comparison-head { margin-left: 28%; grid-template-columns: 30fr 42fr; }
  .comparison-row { grid-template-columns: 28% 30% 42%; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding-block: 52px; }
  .site-header { width: calc(100% - 32px); height: 68px; grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .header-brand { width: min(210px, 100%); height: 54px; }
  .header-cta { min-width: 112px; min-height: 42px; padding-inline: 16px; font-size: 0.76rem; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 48px 0 42px; grid-template-columns: 1fr; gap: 18px; }
  .hero-copy { padding: 0; display: contents; text-align: center; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 0.82rem; }
  .hero-copy h1 { font-size: clamp(2.6rem, 12vw, 4rem); line-height: 1.4; }
  .hero-eyebrow { order: 1; }
  .hero-copy h1 { order: 2; }
  .hero-visual { order: 3; }
  .hero-actions { order: 4; margin-top: 4px; justify-content: center; }
  .hero-actions .button { width: min(100%, 340px) !important; }
  .hero-visual { height: 390px; }
  .hero-character { width: min(620px, 100%); }
  .ecosystem { min-height: auto; padding-top: 30px; }
  .logo-lane { grid-template-columns: 90px minmax(0, 1fr); min-height: 86px; }
  .logo-lane-label { font-size: 0.72rem; }
  .logo-group { padding-right: 34px; gap: 34px; }
  .brand-item { height: 58px; font-size: 0.72rem; gap: 8px; }
  .brand-item img { width: 42px; height: 38px; }
  .fee-badge { min-width: 0; width: min(100%, 520px); font-size: 1.25rem; }
  .button-orange { min-width: 0; width: min(100%, 340px); }
  .pain-section { min-height: auto; }
  .pain-section .eyebrow { font-size: 1.15rem; }
  .pain-card { min-height: 118px; padding: 0 16px; grid-template-columns: 50px 110px 1fr; gap: 10px; }
  .number-circle { width: 50px; height: 50px; font-size: 1rem; }
  .pain-character { width: 108px; height: 108px; }
  .pain-card h3 { font-size: 1rem; }
  .pain-conclusion { margin-top: 40px; padding: 24px; grid-template-columns: 1fr; justify-items: center; }
  .pain-conclusion p { font-size: 1.12rem; }
  .conclusion-bulb { width: 70px; height: 70px; }
  .flow-disclosure { padding-top: 30px; }
  .flow-button { min-height: 96px; padding: 16px; grid-template-columns: 48px 1fr 48px; font-size: 1.05rem; }
  .flow-button-spacer { width: 46px; height: 46px; }
  .flow-button .plus { width: 46px; height: 46px; }
  .flow-content { padding-block: 64px; }
  .flow-heading { min-height: 0; gap: 18px; }
  .flow-heading > div:first-child { width: 100%; }
  .flow-character { position: static; width: 220px; justify-self: center; }
  .premise { align-items: flex-start; padding: 20px; }
  .flow-route { flex-wrap: wrap; gap: 8px; }
  .flow-route span { min-width: auto; padding: 9px 12px; font-size: 0.72rem; }
  .flow-grid { grid-template-columns: 1fr; }
  .about-section { min-height: 570px; padding-block: 52px; }
  .about-stage { min-height: 466px; }
  .line-one { margin-top: 72px; }
  .line-two { margin-top: 32px; }
  .line-three { margin-top: 32px; }
  .about-character { width: 180px; right: -26px; bottom: -8px; }
  .service-section { padding: 42px 0; }
  .service-panel { padding: 34px 20px; }
  .service-title-row { min-height: 104px; }
  .service-character { right: -4px; width: 128px; }
  .route-steps { grid-template-columns: repeat(6, 128px); overflow-x: auto; padding-bottom: 10px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-bottom { font-size: 1rem; }
  .coverage-section { min-height: auto; }
  .coverage-character { position: static; width: 180px; margin: -20px auto 10px; }
  .coverage-copy { font-size: 1.4rem; }
  .coverage-lead br { display: none; }
  .comparison-character { position: static; width: 180px; margin: -24px auto 10px; }
  .comparison-head { margin-left: 0; grid-template-columns: 1fr; gap: 10px; }
  .comparison-head > div { padding: 18px 20px; border-radius: 12px; }
  .comparison-head strong { font-size: 1rem; }
  .comparison-table { border: 0; border-radius: 0; overflow: visible; display: grid; gap: 12px; background: transparent; }
  .comparison-row { min-height: 0; padding: 18px; border: 1px solid var(--line); border-radius: 12px; grid-template-columns: 1fr 1fr; gap: 12px 16px; background: var(--white); box-shadow: 0 10px 24px -18px rgba(6, 42, 58, 0.26); }
  .comparison-row:last-child { border-bottom: 1px solid var(--line); }
  .comparison-row span { grid-column: 1 / -1; padding: 0 0 12px; border-bottom: 1px solid var(--line); font-size: 0.88rem; }
  .comparison-row b,
  .comparison-row strong { position: relative; height: auto; padding: 22px 0 0; border: 0; align-items: flex-start; font-size: 0.82rem; }
  .comparison-row b::before,
  .comparison-row strong::before { position: absolute; top: 0; left: 0; color: var(--muted); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em; }
  .comparison-row b::before { content: "外注費"; }
  .comparison-row strong::before { content: "ゼロマケ"; color: var(--teal); }
  .price-chart { padding-inline: 20px; }
  .price-chart-plot { padding-inline: 2%; grid-template-columns: 1fr 64px 1fr; gap: 14px; }
  .team-character { position: static; width: 180px; margin: -26px auto 6px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .results-intro { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .roadmap-intro { min-height: 0; display: grid; justify-items: center; gap: 26px; }
  .roadmap-message { width: min(100%, 620px); }
  .roadmap-character { position: static; width: 260px; justify-self: center; }
  .roadmap-grid { grid-template-columns: repeat(5, 220px); overflow-x: auto; padding-top: 8px; }
  .roadmap-grid::before,
  .roadmap-card::before { display: none; }
  .booking-bonus-card { min-height: 0; padding: 34px 28px; grid-template-columns: 1fr; gap: 28px; }
  .booking-bonus-copy { text-align: center; }
  .booking-bonus-copy h2 { margin-inline: auto; }
  .booking-bonus-label,
  .booking-bonus-cta { margin-inline: auto; }
  .booking-bonus-visual { width: min(100%, 920px); height: clamp(420px, 54vw, 520px); margin-inline: auto; }
  .diagnosis-cover-card { width: 68%; }
  .booking-banner-card { width: 54%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 92px; }
  .footer-navigation { margin-top: 0; }
  .footer-meta-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .hero-visual { height: 310px; }
  .logo-lane { grid-template-columns: 78px minmax(0, 1fr); }
  .pain-card { min-height: 108px; grid-template-columns: 44px 76px 1fr; }
  .number-circle { width: 44px; height: 44px; font-size: 0.85rem; }
  .pain-character { width: 76px; height: 90px; }
  .pain-card h3 { font-size: 0.82rem; line-height: 1.5; }
  .pain-card h3 br { display: none; }
  .premise { flex-direction: column; }
  .flow-route b { display: none; }
  .service-title-row { min-height: 0; gap: 10px; }
  .service-title-row .section-heading { order: 1; }
  .service-character { position: static; order: 2; width: 116px; }
  .route-steps { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-head { grid-template-columns: 44px 44px 1fr; }
  .team-panel-intro { padding: 26px 20px; }
  .team-grid { grid-template-columns: 1fr; padding-inline: 18px; }
  .support-card { grid-template-columns: 86px 1fr; padding: 18px; }
  .support-card .results-character { width: 84px; }
  .roadmap-intro h3 { font-size: clamp(1.25rem, 5.8vw, 1.6rem); }
  .roadmap-message { padding: 22px 16px 24px; border-radius: 20px; }
  .roadmap-character { width: 220px; }
  .roadmap-copy-line { white-space: normal; }
  .about-arrow { border-top-width: 30px; border-right-width: 40px; border-left-width: 40px; }
  .booking-bonus-card { padding: 28px 20px; }
  .booking-bonus-copy h2 { font-size: clamp(1.05rem, 5vw, 1.55rem); }
  .booking-bonus-copy > p:last-of-type br { display: none; }
  .booking-bonus-visual { width: 100%; height: 300px; }
  .diagnosis-cover-card { top: 4px; width: 92%; transform: rotate(-1deg); }
  .booking-banner-card { right: -2px; bottom: 4px; width: 70%; transform: rotate(1deg); }
  .diagnosis-cover-card img,
  .booking-sample-banner { border-width: 4px; border-radius: 10px; }
  .price-chart { padding: 24px 14px 20px; }
  .price-chart figcaption { font-size: 0.84rem; }
  .price-chart-plot { min-height: 280px; padding-inline: 0; grid-template-columns: 1fr 40px 1fr; gap: 6px; }
  .price-bar-outsourcing .price-bar { height: 176px; }
  .price-stacked-bar { height: 176px; grid-template-rows: 1fr 56px; }
  .price-bar strong { font-size: 1.04rem; }
  .price-stacked-bar strong { font-size: 1rem; }
  .price-chart-guide img { width: 48px; height: 48px; }
  .price-difference-bubble { padding-inline: 24px; }
  .price-difference-bubble strong { font-size: 1.1rem; }
  .contact-section { padding-block: 54px; }
  .hubspot-form-shell { padding: 24px 20px; }
  .hs-form-frame,
  .hs-form-frame iframe { min-height: 820px !important; }
  .faq-list details { padding-inline: 20px; }
  .site-footer { min-height: auto; }
  .footer-grid { min-height: auto; padding-top: 30px; }
  .footer-brand { width: min(100%, 380px); }
  .footer-brand-block > p { font-size: 0.82rem; }
  .footer-navigation nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-meta-grid { grid-template-columns: 1fr; }
  .scroll-top-button { width: 52px; height: 52px; font-size: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal,
  .about-stage .about-line { opacity: 1 !important; transform: none !important; }
}
