:root {
  --ink: #102b3d;
  --ink-soft: #50677a;
  --navy: #0d2638;
  --navy-deep: #081b2b;
  --teal: #168894;
  --teal-deep: #0d6b78;
  --teal-pale: #e8f3f1;
  --orange: #ec7536;
  --orange-deep: #c95b26;
  --yellow: #f4c95d;
  --paper: #f4f8f7;
  --white: #ffffff;
  --line: rgba(16, 43, 61, 0.13);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 20px 55px rgba(12, 38, 56, 0.13);
  --shadow-soft: 0 12px 30px rgba(12, 38, 56, 0.08);
  --radius: 16px;
  --max: 1160px;
  --narrow: 900px;
  --header-h: 76px;
  --font-jp: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Outfit", var(--font-jp);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: 0.02em;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.section-inner {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.narrow-inner {
  max-width: var(--narrow);
}

.section {
  padding: 116px 0;
}

.section-tint {
  background: var(--teal-pale);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head-light {
  color: var(--white);
}

.eyebrow,
.card-kicker,
.form-kicker,
.result-kicker,
.visual-label {
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
}

.eyebrow {
  margin-bottom: 16px;
}

.eyebrow-light {
  color: #8fdae0;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.title-line,
.lead-line {
  display: block;
}

.section-lead {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  text-wrap: balance;
}

.section-head-light .section-lead {
  color: rgba(255, 255, 255, 0.73);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.3rem;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(22, 136, 148, 0.2);
}

.btn-primary:hover {
  background: var(--teal-deep);
  box-shadow: 0 12px 25px rgba(22, 136, 148, 0.27);
}

.btn-accent {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 9px 22px rgba(236, 117, 54, 0.24);
}

.btn-accent:hover {
  background: var(--orange-deep);
  box-shadow: 0 13px 28px rgba(236, 117, 54, 0.32);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.btn-quiet {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.btn-quiet:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--white);
}

.btn-lg {
  min-height: 56px;
  padding: 0.9rem 1.55rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  color: var(--white);
  background: rgba(13, 38, 56, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(8, 27, 43, 0.98);
  box-shadow: 0 8px 25px rgba(5, 19, 31, 0.16);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  gap: 25px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 31px;
  height: 31px;
  border: 2px solid #8fdae0;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--orange);
}

.brand-mark::before {
  top: 5px;
  left: 5px;
  width: 7px;
  height: 7px;
}

.brand-mark::after {
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-sub {
  color: #8fdae0;
  font-family: var(--font-en);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: clamp(12px, 1.5vw, 25px);
}

.nav a {
  position: relative;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
  white-space: nowrap;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.header-actions .btn {
  min-height: 42px;
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
}

.site-header .btn-quiet {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header .btn-quiet:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.hero-grid,
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  z-index: -1;
  background:
    radial-gradient(circle at 14% 20%, rgba(22, 136, 148, 0.3), transparent 34%),
    linear-gradient(125deg, var(--navy-deep) 0%, var(--navy) 60%, #153c51 100%);
}

.hero-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(143, 218, 224, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 218, 224, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.hero-glow {
  border-radius: 50%;
  filter: blur(1px);
}

.hero-glow-one {
  inset: auto -8% -44% auto;
  width: 630px;
  height: 630px;
  background: radial-gradient(circle, rgba(236, 117, 54, 0.2), transparent 64%);
}

.hero-glow-two {
  inset: -35% auto auto 40%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(143, 218, 224, 0.12), transparent 67%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(35px, 5vw, 85px);
  width: min(calc(100% - 48px), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: 70px 0 84px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title {
  max-width: 610px;
  font-size: clamp(2.65rem, 5.3vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-title em {
  color: #a6e4e5;
  font-style: normal;
}

.hero-title-sub {
  margin-top: 20px;
  color: var(--white);
  font-size: 0.47em;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.45;
}

.hero-lead {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  font-weight: 500;
  line-height: 1.8;
  text-wrap: balance;
}

.hero-note {
  max-width: 550px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 23px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.point-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 218, 224, 0.58);
  border-radius: 50%;
  color: #9be0e2;
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  align-content: center;
  display: grid;
}

.diagnostic-window {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(166, 228, 229, 0.4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.window-bar {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 15px;
  padding: 0 21px;
  border-bottom: 1px solid rgba(166, 228, 229, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
}

.window-dots {
  display: inline-flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.window-dots i:first-child {
  background: var(--orange);
}

.window-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.diagnostic-board {
  padding: clamp(28px, 4vw, 48px);
}

.board-caption {
  color: #a6e4e5;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.board-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
}

.board-card {
  min-height: 142px;
  padding: 17px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.board-card strong,
.board-card > span:last-child {
  display: block;
}

.board-card strong {
  margin-top: 17px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.35;
}

.board-card > span:last-child {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  line-height: 1.55;
}

.board-index {
  color: #9be0e2;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
}

.board-card-focus {
  border-color: rgba(143, 218, 224, 0.6);
  background: rgba(22, 136, 148, 0.26);
  box-shadow: 0 0 26px rgba(22, 136, 148, 0.2);
}

.board-card-accent {
  border-color: rgba(236, 117, 54, 0.65);
  background: rgba(236, 117, 54, 0.18);
}

.board-card-accent .board-index {
  color: #ffd596;
}

.board-arrow {
  color: var(--orange);
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
}

.board-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.board-pulse {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(244, 201, 93, 0.12);
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 11px;
  color: var(--white);
  background: rgba(13, 38, 56, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-float-card strong {
  font-size: 0.85rem;
}

.hero-float-card > span:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
}

.float-card-label {
  color: #9be0e2;
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.float-card-top {
  top: 12px;
  right: -27px;
}

.float-card-bottom {
  bottom: 3px;
  left: -28px;
}

/* Strip */
.promise-strip {
  color: var(--white);
  background: var(--teal);
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 38px;
  min-height: 76px;
}

.strip-label {
  flex: 0 0 auto;
  color: #d9f4f2;
  font-size: 0.91rem;
  font-weight: 700;
}

.strip-list {
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 18px;
}

.strip-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  white-space: nowrap;
}

.strip-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--yellow);
}

/* Pain */
.pain {
  background: var(--paper);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.pain-card {
  min-height: 225px;
  padding: 27px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pain-number,
.trust-num {
  display: inline-flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 136, 148, 0.35);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 0.73rem;
  font-weight: 700;
}

.pain-card h3 {
  margin-top: 27px;
  font-size: 1.06rem;
  font-weight: 800;
}

.pain-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.75;
}

/* Diagnosis */
.diagnosis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.diagnosis-result,
.diagnosis-prep {
  border-radius: var(--radius);
}

.diagnosis-result {
  padding: clamp(27px, 4vw, 43px);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.result-kicker {
  color: #a6e4e5;
}

.result-status {
  padding: 5px 9px;
  border: 1px solid rgba(143, 218, 224, 0.35);
  border-radius: 5px;
  color: #b3e8e8;
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.diagnosis-result h3,
.diagnosis-prep h3 {
  margin-top: 22px;
  font-size: 1.6rem;
}

.result-list {
  display: grid;
  gap: 17px;
  margin-top: 30px;
}

.result-list li {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: start;
  gap: 14px;
}

.result-number {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--navy);
  background: #a6e4e5;
  font-family: var(--font-en);
  font-size: 0.73rem;
  font-weight: 800;
}

.result-list strong {
  display: block;
  font-size: 0.97rem;
}

.result-list p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.81rem;
}

.diagnosis-prep {
  padding: clamp(27px, 4vw, 43px);
  border: 1px solid rgba(22, 136, 148, 0.22);
  background: var(--white);
}

.diagnosis-prep .card-kicker {
  color: var(--orange-deep);
}

.diagnosis-prep > p:not(.card-kicker):not(.small-note) {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.43em;
  left: 0;
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  content: "\2713";
  color: var(--white);
  background: var(--teal);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.small-note {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 24px;
  padding: 20px 25px;
  border: 1px solid rgba(22, 136, 148, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.73);
}

.inline-cta div {
  display: grid;
  gap: 3px;
}

.inline-cta strong {
  font-size: 0.95rem;
}

.inline-cta span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

/* Cases */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.case-card-primary {
  border-color: rgba(22, 136, 148, 0.33);
}

.case-visual {
  position: relative;
  min-height: 218px;
  padding: 25px 27px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.case-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(166, 228, 229, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 228, 229, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.visual-label,
.visual-query,
.visual-result,
.visual-table,
.visual-status,
.visual-file,
.visual-members {
  position: relative;
  z-index: 1;
}

.visual-label {
  color: #a6e4e5;
}

.visual-query {
  width: min(100%, 315px);
  margin-top: 37px;
  padding: 13px 17px;
  border: 1px solid rgba(166, 228, 229, 0.5);
  border-radius: 9px;
  color: var(--white);
  background: rgba(22, 136, 148, 0.3);
  font-size: 0.94rem;
  font-weight: 700;
}

.visual-result {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.75rem;
}

.visual-result i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.visual-result i + i {
  opacity: 0.6;
}

.visual-result i + i + i {
  opacity: 0.3;
}

.visual-equipment {
  background: linear-gradient(125deg, #16384b, #245c6a);
}

.visual-table {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1px;
  width: min(100%, 370px);
  margin-top: 39px;
  border: 1px solid rgba(166, 228, 229, 0.35);
  border-radius: 8px;
  overflow: hidden;
}

.visual-table span,
.visual-table b,
.visual-table em {
  padding: 14px 8px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
}

.visual-table b {
  color: #ffe09b;
}

.visual-table em {
  color: #a6e4e5;
}

.visual-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.visual-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.visual-office {
  background: linear-gradient(125deg, #203a4a, #385269);
}

.visual-file {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 37px;
}

.visual-file span {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.29);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.87);
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.76rem;
}

.visual-status-warm {
  color: #ffe0a2;
}

.visual-status-warm i {
  background: var(--orange);
}

.visual-member {
  background: linear-gradient(125deg, #19394d, #27686d);
}

.visual-members {
  display: flex;
  gap: 12px;
  margin-top: 45px;
}

.visual-members i {
  position: relative;
  display: block;
  width: 45px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.37);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
}

.visual-members i::before {
  position: absolute;
  top: 9px;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: "";
  background: #a6e4e5;
}

.visual-members i::after {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  height: 15px;
  border-radius: 10px 10px 4px 4px;
  content: "";
  background: rgba(166, 228, 229, 0.53);
}

.visual-status-cool i {
  background: #a6e4e5;
}

.case-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 29px 30px;
}

.case-tag {
  color: var(--teal-deep);
  font-family: var(--font-en);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.case-body h3 {
  margin-top: 11px;
  font-size: 1.24rem;
}

.case-flow {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.case-flow + .case-flow {
  margin-top: 8px;
}

.case-flow span {
  display: inline-block;
  min-width: 52px;
  margin-right: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--teal-deep);
  background: var(--teal-pale);
  font-size: 0.67rem;
  font-weight: 700;
  text-align: center;
  vertical-align: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  font-family: var(--font-en);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.trust-links a:hover span {
  transform: translateX(4px);
}

.section-footnote {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: right;
}

/* Flow */
.approach {
  position: relative;
  overflow: hidden;
}

.approach::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  content: "";
  opacity: 0.28;
  background:
    radial-gradient(circle at 75% 26%, rgba(143, 218, 224, 0.25), transparent 37%),
    linear-gradient(135deg, transparent, rgba(22, 136, 148, 0.16));
}

.approach .section-inner {
  position: relative;
  z-index: 1;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: flow;
}

.flow-item {
  position: relative;
  min-height: 205px;
  padding: 0 22px 0 25px;
  border-left: 1px solid var(--line-light);
}

.flow-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.flow-item:last-child {
  padding-right: 0;
}

.flow-item::after {
  position: absolute;
  top: 18px;
  right: -10px;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--orange);
}

.flow-item:last-child::after {
  display: none;
}

.flow-number {
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border: 1px solid #8fdae0;
  border-radius: 50%;
  color: #a6e4e5;
  font-family: var(--font-en);
  font-size: 0.73rem;
  font-weight: 700;
}

.flow-item h3 {
  margin-top: 25px;
  font-size: 1.08rem;
}

.flow-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.81rem;
  line-height: 1.75;
}

/* Solutions */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
  padding: 31px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.solution-card-featured {
  border-color: rgba(22, 136, 148, 0.45);
  box-shadow: 0 16px 35px rgba(22, 136, 148, 0.12);
}

.solution-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-family: var(--font-en);
  font-weight: 800;
}

.solution-icon span {
  font-size: 1.1rem;
}

.icon-search {
  color: var(--white);
  background: var(--teal);
}

.icon-plus {
  color: var(--teal-deep);
  background: var(--teal-pale);
}

.icon-build {
  color: var(--orange-deep);
  background: #fff0e5;
}

.solution-card .card-kicker {
  margin-top: 25px;
}

.solution-card h3 {
  margin-top: 10px;
  font-size: 1.26rem;
}

.solution-card > p:not(.card-kicker) {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.solution-card .text-link {
  margin-top: auto;
}

.fit-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 21px;
  margin-top: 25px;
  padding: 25px 28px;
  border: 1px solid rgba(22, 136, 148, 0.22);
  border-radius: 13px;
  background: var(--teal-pale);
}

.fit-note-mark {
  display: inline-flex;
  width: 57px;
  height: 57px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--teal-deep);
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fit-note h3 {
  font-size: 1.05rem;
}

.fit-note p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  padding: 29px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.trust-card h3 {
  margin-top: 25px;
  font-size: 1.1rem;
}

.trust-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 28px;
  margin-top: 34px;
}

.trust-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

.trust-links a span {
  color: var(--orange);
  font-family: var(--font-en);
  font-size: 1.08rem;
  transition: transform 0.2s ease;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 56px 22px 3px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 136, 148, 0.38);
  border-radius: 50%;
  content: "+";
  color: var(--teal);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
  color: var(--white);
  background: var(--teal);
}

.faq-list details p {
  max-width: 780px;
  padding: 0 56px 23px 3px;
  color: var(--ink-soft);
  font-size: 0.89rem;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(143, 218, 224, 0.15);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 42px rgba(143, 218, 224, 0.035), 0 0 0 84px rgba(143, 218, 224, 0.025);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.77fr) minmax(420px, 1.05fr);
  align-items: start;
  gap: clamp(42px, 7vw, 100px);
}

.contact-copy {
  padding-top: 23px;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  text-wrap: balance;
}

.contact-lead {
  max-width: 480px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.94rem;
}

.contact-assurance {
  display: grid;
  gap: 12px;
  margin-top: 29px;
}

.contact-assurance li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.contact-assurance span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: #a6e4e5;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-direct {
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.8rem;
}

.contact-direct a {
  color: #a6e4e5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-wrap {
  padding: clamp(25px, 4vw, 39px);
  border-radius: 17px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 23px 58px rgba(0, 0, 0, 0.2);
}

.form-heading {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading .form-kicker {
  color: var(--orange-deep);
}

.form-heading h3 {
  margin-top: 9px;
  font-size: 1.45rem;
}

.form-heading p:last-child {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.77rem;
}

#contact-form {
  padding-top: 24px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-top: 17px;
}

.form-row:first-of-type {
  margin-top: 0;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-row.two > div {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.form-row label span {
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--orange-deep);
  background: #fff0e5;
  font-size: 0.63rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(16, 43, 61, 0.2);
  border-radius: 7px;
  color: var(--ink);
  background: #fbfdfc;
  font-size: 0.85rem;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input,
.form-row select {
  height: 44px;
  padding: 0 12px;
}

.form-row textarea {
  min-height: 100px;
  padding: 11px 12px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #98a9b2;
}

.form-row select {
  cursor: pointer;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 136, 148, 0.13);
}

.form-note {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.65;
}

#contact-submit {
  margin-top: 19px;
}

#contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-loading {
  align-items: center;
}

.btn-spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  margin-top: 13px;
  padding: 10px 12px;
  border-radius: 7px;
  color: #a72f28;
  background: #fff0ef;
  font-size: 0.78rem;
}

.contact-success {
  padding-top: 24px;
}

.contact-success .form-kicker {
  color: var(--teal);
}

.contact-success h3 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.contact-success > p:not(.form-kicker) {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.success-actions .btn {
  min-height: 43px;
  padding: 0.58rem 1rem;
  font-size: 0.82rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Final CTA and footer */
.final-cta {
  padding: 96px 0 103px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 136, 148, 0.13), transparent 45%),
    var(--paper);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
}

.final-cta .eyebrow {
  color: var(--teal);
}

.final-cta h2 {
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  font-weight: 900;
  text-wrap: balance;
}

.final-cta .btn {
  margin-top: 30px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 47px 80px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 64px 0 44px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 0.98rem;
}

.footer-brand p {
  margin-top: 6px;
  font-size: 0.77rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 8px 22px;
  font-size: 0.76rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #a6e4e5;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  line-height: 1.8;
}

.footer-notice {
  max-width: 820px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.52);
}

.page-top {
  position: fixed;
  z-index: 20;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 46px;
  height: 46px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
  background: rgba(13, 38, 56, 0.86);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top:hover {
  background: var(--teal);
}

.page-top > span:first-child {
  font-family: var(--font-en);
  font-size: 1.05rem;
  line-height: 1;
}

.page-top-label {
  margin-top: 2px;
  font-family: var(--font-en);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-float {
  animation: float-window 6s ease-in-out infinite;
}

@keyframes float-window {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 40px), var(--max));
  }

  .nav {
    gap: 13px;
  }

  .nav a {
    font-size: 0.76rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 30px;
  }

  .float-card-top {
    right: -14px;
  }

  .float-card-bottom {
    left: -14px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .header-inner {
    gap: 15px;
  }

  .nav,
  .header-actions .btn-home {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-open .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px 18px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 0;
    background: rgba(8, 27, 43, 0.98);
    box-shadow: 0 15px 25px rgba(5, 19, 31, 0.18);
  }

  .nav-open .nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-open .nav a:last-child {
    border-bottom: 0;
  }

  .nav-open .nav a::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 72px;
    padding-bottom: 70px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-title {
    max-width: 730px;
    font-size: clamp(2.8rem, 8vw, 4.7rem);
  }

  .hero-visual {
    width: min(100%, 690px);
    min-height: 390px;
    margin: 0 auto;
  }

  .strip-inner {
    display: block;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .strip-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .diagnosis-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .diagnosis-result,
  .diagnosis-prep {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .contact-copy {
    max-width: 690px;
    padding-top: 0;
  }

  .contact-form-wrap {
    width: min(100%, 700px);
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 0;
  }

  .flow-item:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .flow-item:nth-child(3)::after {
    display: none;
  }

  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-card {
    padding: 26px 22px;
  }
}

@media (max-width: 650px) {
  body {
    font-size: 15px;
  }

  .section-inner,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 36px);
  }

  .section {
    padding: 70px 0;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .section-lead {
    font-size: 0.93rem;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.5rem;
  }

  .header-actions .btn {
    min-height: 40px;
    padding: 0.5rem 0.72rem;
    font-size: 0.72rem;
  }

  .hero-inner {
    width: calc(100% - 36px);
    gap: 39px;
    padding-top: 57px;
    padding-bottom: 59px;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 1.2;
  }

  .hero-title-sub {
    margin-top: 14px;
    font-size: 0.48em;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-note {
    font-size: 0.8rem;
  }

  .hero-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 310px;
  }

  .diagnostic-board {
    padding: 22px 17px 20px;
  }

  .board-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .board-card {
    min-height: 0;
    padding: 13px 14px;
  }

  .board-card strong {
    display: inline;
    margin: 0 8px 0 12px;
    font-size: 0.92rem;
  }

  .board-card > span:last-child {
    display: inline;
    font-size: 0.67rem;
  }

  .board-arrow {
    display: block;
    height: 11px;
    font-size: 1.15rem;
    line-height: 0.7;
    text-align: center;
    transform: rotate(90deg);
  }

  .board-foot {
    margin-top: 20px;
    padding-top: 14px;
    font-size: 0.69rem;
  }

  .hero-float-card {
    padding: 9px 11px;
  }

  .hero-float-card strong {
    font-size: 0.7rem;
  }

  .hero-float-card > span:last-child {
    font-size: 0.58rem;
  }

  .float-card-top {
    top: -14px;
    right: -7px;
  }

  .float-card-bottom {
    bottom: -14px;
    left: -7px;
  }

  .strip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 13px;
  }

  .strip-list li {
    font-size: 0.7rem;
    white-space: normal;
  }

  .pain-grid,
  .case-grid,
  .solution-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 0;
  }

  .diagnosis-result h3,
  .diagnosis-prep h3 {
    font-size: 1.35rem;
  }

  .inline-cta {
    display: grid;
    gap: 17px;
    padding: 20px;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .case-visual {
    min-height: 190px;
    padding: 21px 22px;
  }

  .visual-query {
    margin-top: 28px;
  }

  .visual-table {
    margin-top: 29px;
  }

  .visual-file {
    margin-top: 28px;
  }

  .visual-members {
    margin-top: 33px;
  }

  .case-body {
    padding: 23px 22px 25px;
  }

  .case-body h3 {
    font-size: 1.12rem;
  }

  .section-footnote {
    font-size: 0.7rem;
    text-align: left;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-item,
  .flow-item:first-child,
  .flow-item:last-child,
  .flow-item:nth-child(4) {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 0 0 28px;
    border: 0;
  }

  .flow-item::after,
  .flow-item:nth-child(3)::after {
    top: 42px;
    right: auto;
    bottom: 7px;
    left: 18px;
    width: 1px;
    height: auto;
    display: block;
  }

  .flow-item:last-child {
    padding-bottom: 0;
  }

  .flow-item:last-child::after {
    display: none;
  }

  .flow-item h3 {
    margin-top: 3px;
  }

  .flow-item p {
    margin-top: 6px;
  }

  .solution-card {
    min-height: 0;
  }

  .fit-note {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px;
  }

  .fit-note h3 {
    font-size: 0.98rem;
  }

  .trust-links {
    display: grid;
    justify-content: stretch;
    gap: 10px;
  }

  .faq-list summary {
    padding: 18px 45px 18px 0;
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding: 0 30px 19px 0;
    font-size: 0.82rem;
  }

  .contact-copy h2 {
    font-size: 2rem;
  }

  .contact-lead {
    font-size: 0.87rem;
  }

  .contact-direct {
    margin-top: 28px;
  }

  .contact-form-wrap {
    padding: 22px 18px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .final-cta {
    padding: 70px 0 75px;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 29px;
    padding: 45px 0 34px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-column: auto;
  }

  .page-top {
    right: 14px;
    bottom: 14px;
  }
}
