:root {
  --v32-bg: #f6f9fd;
  --v32-surface: #ffffff;
  --v32-ink: #0b2742;
  --v32-muted: #5c6f82;
  --v32-accent: #1769e0;
  --v32-accent-dark: #0f55bd;
  --v32-tint: #eaf3ff;
  --v32-line: #d7e2ed;
  --v32-soft-line: #e8eef5;
  --v32-danger: #b42318;
  --v32-header-h: 76px;
  --v32-shell: 1440px;
  --v32-gutter: clamp(20px, 4.2vw, 72px);
  --v32-section: clamp(72px, 8vw, 112px);
  --v32-media-radius: 28px;
  --v32-panel-radius: 18px;
  --v32-control-radius: 12px;
  --v32-font: "Pretendard Variable", Pretendard, SUIT, "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --v32-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--v32-header-h) + 20px);
  background: var(--v32-bg);
  text-size-adjust: 100%;
}

body.solveinsight-ver-32,
body.solveinsight-ver-32.home {
  margin: 0;
  overflow-x: clip;
  background: var(--v32-bg);
  color: var(--v32-ink);
  font-family: var(--v32-font);
  font-size: 17px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.solveinsight-ver-32.menu-open { overflow: hidden; }

.solveinsight-ver-32 img,
.solveinsight-ver-32 video,
.solveinsight-ver-32 svg { display: block; max-width: 100%; }

.solveinsight-ver-32 button,
.solveinsight-ver-32 input,
.solveinsight-ver-32 textarea,
.solveinsight-ver-32 select { font: inherit; }

.solveinsight-ver-32 button,
.solveinsight-ver-32 a { -webkit-tap-highlight-color: transparent; }

.solveinsight-ver-32 a { color: inherit; text-decoration: none; }

.solveinsight-ver-32 h1,
.solveinsight-ver-32 h2,
.solveinsight-ver-32 h3,
.solveinsight-ver-32 p,
.solveinsight-ver-32 figure,
.solveinsight-ver-32 ul,
.solveinsight-ver-32 dl { margin-block-start: 0; }

.solveinsight-ver-32 h1,
.solveinsight-ver-32 h2,
.solveinsight-ver-32 h3 { word-break: keep-all; }

.solveinsight-ver-32 ::selection { background: var(--v32-accent); color: #fff; }

.solveinsight-ver-32 :focus-visible {
  outline: 3px solid var(--v32-accent);
  outline-offset: 4px;
}

.solveinsight-ver-32 .site-shell {
  width: min(100%, var(--v32-shell));
  margin-inline: auto;
  padding-inline: var(--v32-gutter);
}

.solveinsight-ver-32 .skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: var(--v32-control-radius);
  background: var(--v32-ink);
  color: #fff;
  font-weight: 750;
  transform: translateY(-150%);
}

.solveinsight-ver-32 .skip-link:focus { transform: none; }

/* Header */
.solveinsight-ver-32 .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--v32-header-h);
  border-bottom: 1px solid transparent;
  background: rgba(246, 249, 253, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.solveinsight-ver-32 .site-header.is-scrolled {
  height: 68px;
  border-bottom-color: rgba(215, 226, 237, .88);
  box-shadow: 0 12px 32px rgba(11, 39, 66, .055);
}

.admin-bar.solveinsight-ver-32 .site-header { top: 32px; }

.solveinsight-ver-32 .site-header__inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  align-items: center;
  width: min(100%, var(--v32-shell));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--v32-gutter);
}

.solveinsight-ver-32 .wordmark {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--v32-ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.055em;
}

.solveinsight-ver-32 .wordmark__insight { color: var(--v32-accent); }

.solveinsight-ver-32 .primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.solveinsight-ver-32 .primary-navigation a {
  position: relative;
  color: #425a70;
  font-size: 16px;
  font-weight: 680;
  white-space: nowrap;
}

.solveinsight-ver-32 .primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--v32-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.solveinsight-ver-32 .primary-navigation a:hover,
.solveinsight-ver-32 .primary-navigation a[aria-current="page"] { color: var(--v32-ink); }

.solveinsight-ver-32 .primary-navigation a:hover::after,
.solveinsight-ver-32 .primary-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.solveinsight-ver-32 .primary-navigation .nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--v32-control-radius);
  background: var(--v32-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 720;
}

.solveinsight-ver-32 .primary-navigation .nav-contact::after { display: none; }
.solveinsight-ver-32 .primary-navigation .nav-contact:hover { background: var(--v32-accent-dark); color: #fff; }

.solveinsight-ver-32 .menu-toggle { display: none; }
.solveinsight-ver-32 .motion-toggle { display: none !important; }

.header-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

/* Shared typography and controls */
.v32-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--v32-control-radius);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}

.v32-button:hover { transform: translateY(-2px); }
.solveinsight-ver-32 .v32-button--primary { background: var(--v32-accent); color: #fff; }
.v32-button--primary:hover { background: var(--v32-accent-dark); }
.solveinsight-ver-32 .v32-button--light { border-color: var(--v32-accent); background: #fff; color: var(--v32-accent-dark); }
.solveinsight-ver-32 .v32-button--light:hover { background: var(--v32-accent); color: #fff; }

.v32-section-heading {
  max-width: 800px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.v32-section-heading > p:first-child:not(:last-child) {
  margin-bottom: 18px;
  color: var(--v32-accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.v32-section-heading h2 {
  max-width: 18ch;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 760;
  line-height: 1.16;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.v32-section-heading > p,
.v32-section-heading > span {
  display: block;
  max-width: 50ch;
  margin-bottom: 0;
  color: var(--v32-muted);
  font-size: clamp(16px, 1.45vw, 19px);
}

/* Home hero */
.v32-hero,
.v32-service-hero {
  position: relative;
  padding-block: clamp(126px, 12vw, 172px) clamp(70px, 8vw, 108px);
}

.v32-hero__grid,
.v32-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.v32-hero__copy,
.v32-service-hero__copy { max-width: 630px; }

.v32-hero__copy h1,
.v32-service-hero__copy h1 {
  margin-bottom: 26px;
  color: var(--v32-ink);
  font-size: clamp(46px, 4.6vw, 64px);
  font-weight: 770;
  line-height: 1.1;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.v32-hero__copy h1 span { color: var(--v32-accent); }

.v32-hero__copy > p,
.v32-service-hero__copy > p {
  max-width: 34em;
  margin-bottom: 34px;
  color: var(--v32-muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}

.v32-hero__media,
.v32-service-media { min-width: 0; margin-bottom: 0; }

.v32-media-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(215, 226, 237, .9);
  border-radius: var(--v32-media-radius);
  background: #dfe8f1;
  box-shadow: 0 30px 70px rgba(11, 39, 66, .12);
}

.v32-media-frame video,
.v32-service-media--still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v32-media-frame video { display: block; object-position: 52% center; }

.v32-video-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--v32-control-radius);
  background: rgba(11, 39, 66, .84);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

html:not(.js) .v32-video-toggle { display: none; }

.v32-hero__media figcaption,
.v32-service-media figcaption {
  margin-top: 14px;
  color: var(--v32-muted);
  font-size: 14px;
}

/* Home self check */
.v32-check { padding-block: var(--v32-section); background: var(--v32-surface); }

.v32-check__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: start;
  gap: clamp(36px, 6vw, 88px);
}

.v32-check__options { border-top: 1px solid var(--v32-line); }

.v32-check-option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 18px 52px 18px 20px;
  border: 0;
  border-bottom: 1px solid var(--v32-line);
  background: transparent;
  color: var(--v32-ink);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, padding-left .2s ease;
}

.v32-check-option::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.v32-check-option span { font-size: clamp(18px, 1.6vw, 23px); font-weight: 670; line-height: 1.45; }
.v32-check-option:hover { background: #f8fbff; }

.v32-check-option.is-active {
  padding-left: 28px;
  background: var(--v32-tint);
  color: var(--v32-accent-dark);
}

.v32-check-option.is-active::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--v32-accent);
}

.v32-advice {
  position: sticky;
  top: calc(var(--v32-header-h) + 24px);
  min-height: 430px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid #cbdcf0;
  border-radius: var(--v32-panel-radius);
  background: #f4f8fd;
}

.v32-advice__status {
  margin-bottom: 24px;
  color: var(--v32-accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.v32-advice h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 740;
  line-height: 1.25;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.v32-advice > p:not(.v32-advice__status) { margin-bottom: 28px; color: var(--v32-muted); }
.v32-advice ul { display: grid; gap: 10px; margin-bottom: 32px; padding: 0; list-style: none; }

.v32-advice li {
  position: relative;
  padding-left: 18px;
  color: #294863;
  font-size: 15px;
}

.v32-advice li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 7px;
  height: 2px;
  content: "";
  background: var(--v32-accent);
}

.v32-advice a,
.v32-diagnostic-result > a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 2px solid var(--v32-accent);
  color: var(--v32-accent-dark);
  font-weight: 760;
}

/* Situation paths */
.v32-paths { padding-block: var(--v32-section); }
.v32-path-list { border-top: 1px solid var(--v32-line); }

.v32-path-row {
  display: grid;
  grid-template-columns: 1.15fr .72fr 2.1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  min-height: 104px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--v32-line);
  transition: color .2s ease, padding-inline .2s ease, background .2s ease;
}

.v32-path-row:hover { padding-inline: 18px; background: #eef5fc; color: var(--v32-accent-dark); }
.v32-path-row > span { color: var(--v32-muted); font-size: 14px; }
.v32-path-row > strong { font-size: 21px; font-weight: 740; }
.v32-path-row > p { margin-bottom: 0; color: var(--v32-muted); font-size: 15px; }
.v32-path-row > b { color: var(--v32-accent-dark); font-size: 14px; white-space: nowrap; }

/* Service hero and shared category blocks */
.v32-service-hero__copy h1 { max-width: none; }
.v32-service-media--still {
  overflow: visible;
  background: transparent;
}

.v32-service-media--still img {
  aspect-ratio: 16 / 10;
  border-radius: var(--v32-media-radius);
  object-position: 55% center;
  box-shadow: 0 30px 70px rgba(11, 39, 66, .1);
}

.v32-service-media--still figcaption { position: static; }

.v32-review-note {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 68px);
  border: 1px solid var(--v32-line);
  border-radius: var(--v32-panel-radius);
  background: var(--v32-surface);
}

.v32-review-note > strong { margin-bottom: 28px; font-size: clamp(22px, 2.2vw, 30px); }
.v32-review-note ul { display: grid; gap: 0; padding: 0; list-style: none; }

.v32-review-note li {
  padding: 16px 0;
  border-top: 1px solid var(--v32-line);
  color: #34516a;
  font-weight: 650;
}

.v32-signs { padding-block: var(--v32-section); background: var(--v32-surface); }
.v32-signs .v32-section-heading { margin-bottom: 34px; }
.v32-sign-list { border-top: 1px solid var(--v32-line); }

.v32-sign-list p {
  margin-bottom: 0;
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--v32-line);
  color: #26455f;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -.02em;
}

.v32-focus { padding-block: var(--v32-section); }

.v32-focus__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(32px, 6vw, 88px);
}

.v32-focus__statement {
  min-height: 390px;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--v32-panel-radius);
  background: var(--v32-tint);
}

.v32-focus__statement > p { margin-bottom: 28px; color: var(--v32-accent-dark); font-size: 14px; font-weight: 780; }

.v32-focus__statement h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.v32-focus__list { align-self: center; border-top: 1px solid var(--v32-line); }
.v32-focus__list > strong { display: block; padding: 0 0 18px; color: var(--v32-muted); font-size: 14px; }

.v32-focus__list p {
  margin-bottom: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--v32-line);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 680;
}

/* Hospital SOLVE */
.v32-solve { padding-block: var(--v32-section); }

.v32-solve__grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(48px, 8vw, 126px);
}

.v32-solve .v32-section-heading { position: sticky; top: calc(var(--v32-header-h) + 28px); }
.v32-solve-list { position: relative; }

.v32-solve-list::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 27px;
  width: 2px;
  content: "";
  background: #bfd6f3;
}

.v32-solve-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1.4fr) minmax(190px, .7fr);
  align-items: center;
  gap: 24px;
  min-height: 124px;
  border-bottom: 1px solid var(--v32-line);
}

.v32-solve-step > div { position: relative; z-index: 1; display: grid; justify-items: center; gap: 5px; }

.v32-solve-step > div b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--v32-accent);
  border-radius: 50%;
  background: var(--v32-bg);
  color: var(--v32-accent-dark);
  font-size: 23px;
}

.v32-solve-step > div span { color: var(--v32-muted); font-size: 10px; font-weight: 780; letter-spacing: .06em; }

.v32-solve-step h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.025em;
}

.v32-solve-step > p { margin-bottom: 0; color: var(--v32-muted); font-size: 14px; }

/* Interactive diagnosis */
.v32-diagnostic { padding-block: var(--v32-section); background: #eef5fc; }

.v32-diagnostic__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: start;
  gap: clamp(38px, 6vw, 88px);
}

.v32-diagnostic__questions fieldset,
.v32-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }

.v32-diagnostic__questions fieldset {
  padding: 26px 0 30px;
  border-top: 1px solid #c9d9e9;
}

.v32-diagnostic__questions legend,
.v32-form-section legend {
  display: block;
  width: 100%;
  margin-bottom: 17px;
  color: var(--v32-ink);
  font-size: 17px;
  font-weight: 720;
}

.v32-diagnostic__questions fieldset > div { display: flex; flex-wrap: wrap; gap: 10px; }

.v32-diagnostic__questions button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #b9ccdf;
  border-radius: var(--v32-control-radius);
  background: #fff;
  color: #35526a;
  font-size: 14px;
  font-weight: 670;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.v32-diagnostic__questions button:hover { border-color: var(--v32-accent); color: var(--v32-accent-dark); }
.v32-diagnostic__questions button.is-active { border-color: var(--v32-accent); background: var(--v32-accent); color: #fff; }

.v32-diagnostic-result {
  position: sticky;
  top: calc(var(--v32-header-h) + 24px);
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid #bfd3e8;
  border-radius: var(--v32-panel-radius);
  background: #fff;
  box-shadow: 0 24px 58px rgba(11, 39, 66, .08);
}

.v32-diagnostic-result > p:first-child {
  margin-bottom: 22px;
  color: var(--v32-accent-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .075em;
}

.v32-diagnostic-result h3 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 740;
  line-height: 1.28;
  letter-spacing: -.035em;
}

.v32-diagnostic-result > p:nth-of-type(2) { margin-bottom: 26px; color: var(--v32-muted); }
.v32-diagnostic-result dl { margin-bottom: 28px; }

.v32-diagnostic-result dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--v32-line);
}

.v32-diagnostic-result dt { color: var(--v32-muted); font-size: 13px; }
.v32-diagnostic-result dd { margin: 0; color: #25445e; font-size: 14px; font-weight: 620; }

/* Inquiry form */
.v32-form-section-wrap { padding-block: var(--v32-section); background: var(--v32-surface); }

.v32-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(44px, 7vw, 110px);
}

.v32-form-intro { position: sticky; top: calc(var(--v32-header-h) + 30px); }

.v32-form-intro h2 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.v32-form-intro > p { max-width: 30em; margin-bottom: 28px; color: var(--v32-muted); }

.v32-form-summary { display: grid; margin: 0; border-top: 1px solid var(--v32-line); }
.v32-form-summary > div { display: grid; gap: 7px; padding: 15px 0; border-bottom: 1px solid var(--v32-line); }
.v32-form-summary dt { color: var(--v32-muted); font-size: 12px; }
.v32-form-summary dd { margin: 0; color: #25445e; font-size: 14px; font-weight: 650; line-height: 1.55; }

.v32-form-wrap {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--v32-line);
  border-radius: var(--v32-panel-radius);
  background: #fbfdff;
}

.v32-form-heading { margin-bottom: 36px; }
.v32-form-heading > p { margin-bottom: 10px; color: var(--v32-accent-dark); font-size: 13px; font-weight: 780; }
.v32-form-heading h3 { margin-bottom: 10px; font-size: clamp(28px, 3vw, 40px); font-weight: 740; letter-spacing: -.035em; }
.v32-form-heading > span { display: block; color: var(--v32-muted); font-size: 14px; }

.form-notice,
.form-error-summary {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: var(--v32-control-radius);
  font-size: 14px;
}

.form-notice p { margin: 4px 0 0; }
.form-notice--success { border: 1px solid #a9d6bf; background: #edf9f2; color: #1f6240; }
.form-notice--error,
.form-error-summary { border: 1px solid #edb9b3; background: #fff3f1; color: var(--v32-danger); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.v32-form { display: grid; gap: 34px; }
.v32-form-section { display: grid; gap: 12px; }
.v32-form-section legend small { color: var(--v32-muted); font-size: 12px; font-weight: 500; }

.v32-situation-choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.v32-situation-choice { cursor: pointer; }
.v32-situation-choice input { position: absolute; opacity: 0; pointer-events: none; }

.v32-situation-choice > span {
  display: grid;
  align-content: center;
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--v32-line);
  border-radius: var(--v32-control-radius);
  background: #fff;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.v32-situation-choice b { margin-bottom: 5px; font-size: 14px; line-height: 1.4; }
.v32-situation-choice small { color: var(--v32-muted); font-size: 12px; line-height: 1.4; }
.v32-situation-choice input:checked + span { border-color: var(--v32-accent); background: var(--v32-tint); box-shadow: inset 0 0 0 1px var(--v32-accent); }
.v32-situation-choice input:focus-visible + span { outline: 3px solid var(--v32-accent); outline-offset: 3px; }

.v32-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.v32-field-grid label,
.v32-message { display: grid; gap: 8px; min-width: 0; }
.v32-field-grid label > span,
.v32-message > span { font-size: 14px; font-weight: 680; }

.v32-field-grid input,
.v32-field-grid select,
.v32-message textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b9c9d9;
  border-radius: var(--v32-control-radius);
  background: #fff;
  color: var(--v32-ink);
}

.v32-message textarea { min-height: 140px; resize: vertical; }
.v32-message small { color: var(--v32-muted); font-size: 12px; }
.v32-field-grid input:focus,
.v32-field-grid select:focus,
.v32-message textarea:focus { border-color: var(--v32-accent); box-shadow: 0 0 0 3px rgba(23, 105, 224, .13); outline: 0; }
.v32-form [aria-invalid="true"] { border-color: var(--v32-danger); }

.v32-problem-choices { display: flex; flex-wrap: wrap; gap: 9px; }
.v32-problem-choices label { cursor: pointer; }
.v32-problem-choices input { position: absolute; opacity: 0; pointer-events: none; }

.v32-problem-choices span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--v32-line);
  border-radius: var(--v32-control-radius);
  background: #fff;
  color: #405a70;
  font-size: 13px;
}

.v32-problem-choices input:checked + span { border-color: var(--v32-accent); background: var(--v32-accent); color: #fff; }
.v32-problem-choices input:focus-visible + span { outline: 3px solid var(--v32-accent); outline-offset: 3px; }

.v32-consents { display: grid; gap: 12px; }
.v32-consents label { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 8px; color: #53697d; font-size: 12px; }
.v32-consents input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--v32-accent); }
.v32-consents a { color: var(--v32-accent-dark); text-decoration: underline; text-underline-offset: 3px; }

.v32-form-submit {
  min-height: 56px;
  border: 0;
  border-radius: var(--v32-control-radius);
  background: var(--v32-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}

.v32-form-submit:hover { background: var(--v32-accent-dark); }
.v32-form-submit:disabled { cursor: wait; opacity: .68; }

/* Final CTA */
.v32-final { padding-block: clamp(62px, 7vw, 94px); background: var(--v32-tint); }

.v32-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.v32-final h2 {
  max-width: 19ch;
  margin-bottom: 12px;
  font-size: clamp(31px, 3.6vw, 50px);
  font-weight: 740;
  line-height: 1.2;
  letter-spacing: -.04em;
}

.v32-final p { margin-bottom: 0; color: var(--v32-muted); }

/* Footer */
.solveinsight-ver-32 .site-footer {
  padding-top: clamp(64px, 7vw, 96px);
  background: #0b2742;
  color: #fff;
}

.solveinsight-ver-32 .site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 70px;
  padding-bottom: clamp(60px, 7vw, 92px);
}

.solveinsight-ver-32 .wordmark--footer { color: #fff; font-size: 23px; }
.solveinsight-ver-32 .site-footer__top > div:first-child > p { margin: 26px 0 0; color: #c7d6e4; font-size: 16px; }
.solveinsight-ver-32 .site-footer__diagnosis-cta { display: inline-flex; align-items: center; min-height: 48px; margin-top: 26px; border-bottom: 1px solid #83b5f5; color: #fff; font-weight: 720; }
.solveinsight-ver-32 .site-footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.solveinsight-ver-32 .site-footer__nav > div { display: grid; align-content: start; gap: 11px; }
.solveinsight-ver-32 .site-footer__nav strong { margin-bottom: 8px; color: #7fb5fa; font-size: 13px; }
.solveinsight-ver-32 .site-footer__nav a { color: #cad7e3; font-size: 13px; }
.solveinsight-ver-32 .site-footer__nav a:hover { color: #fff; }

.solveinsight-ver-32 .site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: #9fb2c3;
  font-size: 12px;
}

.solveinsight-ver-32 .site-footer__bottom a { color: #fff; }

/* Motion */
.js .solveinsight-ver-32 [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s var(--v32-ease);
}

.js .solveinsight-ver-32 [data-reveal].is-revealed { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .v32-hero__grid,
  .v32-service-hero__grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); }
	.solveinsight-ver-32 .primary-navigation { gap: 15px; }
	.solveinsight-ver-32 .primary-navigation a { font-size: 15px; }
}

@media (max-width: 960px) {
  .solveinsight-ver-32 .site-header__inner { grid-template-columns: 1fr auto; }

  .solveinsight-ver-32 .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 76px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--v32-line);
    border-radius: var(--v32-control-radius);
    background: #fff;
    color: var(--v32-ink);
    cursor: pointer;
  }

  .solveinsight-ver-32 .menu-toggle__label { font-size: 15px; font-weight: 720; }
  .solveinsight-ver-32 .menu-toggle__lines { display: grid; gap: 5px; width: 17px; }
  .solveinsight-ver-32 .menu-toggle__lines i { display: block; width: 17px; height: 2px; background: currentColor; transition: transform .2s ease; }

  .solveinsight-ver-32 .primary-navigation {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    gap: 0;
    padding: 100px var(--v32-gutter) 50px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--v32-bg);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .solveinsight-ver-32 .primary-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .solveinsight-ver-32 .primary-navigation a { display: flex; align-items: center; min-height: 62px; border-bottom: 1px solid var(--v32-line); font-size: clamp(23px, 5vw, 34px); font-weight: 730; letter-spacing: -.035em; }
  .solveinsight-ver-32 .primary-navigation a::after { display: none; }
  .solveinsight-ver-32 .primary-navigation .nav-contact { justify-content: center; min-height: 56px; margin-top: 24px; border: 0; font-size: 18px; letter-spacing: 0; }

  .v32-hero__grid,
  .v32-service-hero__grid,
  .v32-check__layout,
  .v32-focus__grid,
  .v32-solve__grid,
  .v32-diagnostic__grid,
  .v32-form-layout { grid-template-columns: 1fr; }

  .v32-hero__copy,
  .v32-service-hero__copy { max-width: 760px; }
  .v32-service-hero__copy h1 { max-width: none; }
  .v32-check__layout { gap: 28px; }
  .v32-advice,
  .v32-diagnostic-result,
  .v32-form-intro,
  .v32-solve .v32-section-heading { position: static; }
  .v32-advice { min-height: 0; }

  .v32-path-row { grid-template-columns: 1fr .7fr 1.6fr auto; }
  .v32-focus__statement { min-height: 310px; }
  .v32-solve__grid { gap: 20px; }
  .v32-form-layout { gap: 36px; }
  .v32-form-intro h2 { max-width: 18ch; }
}

@media (max-width: 700px) {
  :root { --v32-header-h: 68px; --v32-gutter: 20px; --v32-media-radius: 22px; }
  body.solveinsight-ver-32 { font-size: 16px; }
  .solveinsight-ver-32 .wordmark { font-size: 19px; }

  .v32-hero,
  .v32-service-hero { padding-block: 110px 68px; }

  .v32-hero__grid,
  .v32-service-hero__grid { gap: 40px; }

  .v32-hero__copy h1,
  .v32-service-hero__copy h1 { margin-bottom: 20px; font-size: clamp(39px, 11vw, 52px); line-height: 1.12; }
  .v32-hero__copy > p,
  .v32-service-hero__copy > p { margin-bottom: 28px; font-size: 17px; }
  .v32-button { width: 100%; }
  .v32-media-frame { aspect-ratio: 4 / 3; }
  .v32-media-frame video { object-position: 64% center; }
  .v32-hero__media figcaption,
  .v32-service-media figcaption { font-size: 13px; }

  .v32-section-heading { margin-bottom: 34px; }
  .v32-section-heading h2 { font-size: clamp(32px, 9.2vw, 43px); }
  .v32-check-option { min-height: 72px; padding-block: 14px; }
  .v32-check-option span { font-size: 18px; }
  .v32-advice { padding: 28px 22px; }
  .v32-advice h3 { font-size: 29px; }

  .v32-path-row {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    min-height: 0;
    padding: 24px 0;
  }

  .v32-path-row > span,
  .v32-path-row > p { grid-column: 1 / -1; }
  .v32-path-row > strong { font-size: 22px; }
  .v32-path-row > b { align-self: center; grid-column: 2; grid-row: 2; }
  .v32-path-row:hover { padding-inline: 10px; }

  .v32-service-media--still img { aspect-ratio: 4 / 3; object-position: 67% center; }
  .v32-review-note { padding: 28px 22px; }
  .v32-sign-list p { padding-block: 23px; font-size: 20px; }
  .v32-focus__statement { min-height: 0; padding: 32px 24px; }
  .v32-focus__statement h2 { font-size: 36px; }

  .v32-solve-list::before { left: 22px; }
  .v32-solve-step { grid-template-columns: 52px 1fr; gap: 16px; padding: 22px 0; }
  .v32-solve-step > div b { width: 46px; height: 46px; font-size: 19px; }
  .v32-solve-step > div span { display: none; }
  .v32-solve-step h3 { font-size: 20px; }
  .v32-solve-step > p { grid-column: 2; margin-top: -10px; }

  .v32-diagnostic__questions fieldset > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v32-diagnostic__questions button { width: 100%; min-height: 48px; }
  .v32-diagnostic-result { padding: 28px 22px; }
  .v32-diagnostic-result dl > div { grid-template-columns: 1fr; gap: 5px; }

  .v32-form-wrap { padding: 28px 20px; }
  .v32-situation-choices,
  .v32-field-grid { grid-template-columns: 1fr; }
  .v32-situation-choice > span { min-height: 82px; }
  .v32-problem-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v32-problem-choices span { width: 100%; justify-content: center; text-align: center; }

  .v32-final__inner { align-items: stretch; flex-direction: column; }
  .v32-final h2 { font-size: 34px; }

  .solveinsight-ver-32 .site-footer__top { grid-template-columns: 1fr; gap: 46px; }
  .solveinsight-ver-32 .site-footer__nav { grid-template-columns: 1fr 1fr; }
  .solveinsight-ver-32 .site-footer__bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 24px; }
}

@media (max-width: 782px) {
  .admin-bar.solveinsight-ver-32 .site-header { top: 46px; }
}

@media (max-width: 360px) {
  :root { --v32-gutter: 16px; }
  .v32-hero__copy h1,
  .v32-service-hero__copy h1 { font-size: 36px; }
  .v32-problem-choices { grid-template-columns: 1fr; }
  .solveinsight-ver-32 .site-footer__nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .solveinsight-ver-32 *,
  .solveinsight-ver-32 *::before,
  .solveinsight-ver-32 *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .solveinsight-ver-32 [data-reveal] { opacity: 1; transform: none; }
  .solveinsight-ver-32 .v32-video-toggle { display: none; }
}

@media print {
  .solveinsight-ver-32 .site-header,
  .solveinsight-ver-32 .site-footer,
  .solveinsight-ver-32 .v32-video-toggle,
  .solveinsight-ver-32 .v32-form { display: none !important; }
  body.solveinsight-ver-32 { background: #fff; color: #000; }
  .solveinsight-ver-32 [data-reveal] { opacity: 1 !important; transform: none !important; }
}
