:root {
  --navy-950: #0e1c2f;
  --navy-900: #14263e;
  --navy-800: #203852;
  --teal-700: #2f6d6b;
  --teal-600: #3b7c79;
  --teal-100: #dcecea;
  --teal-50: #edf6f4;
  --cream: #f7f5ef;
  --cream-dark: #eeeadf;
  --white: #ffffff;
  --ink: #172537;
  --muted: #657080;
  --line: #dfe3e3;
  --line-dark: rgba(255, 255, 255, 0.16);
  --warning: #8a5b18;
  --warning-bg: #fff5dd;
  --danger: #93433c;
  --danger-bg: #fff0ed;
  --green: #2f6d50;
  --green-bg: #eaf5ef;
  --shadow: 0 26px 70px rgba(14, 28, 47, 0.13);
  --shadow-soft: 0 12px 34px rgba(14, 28, 47, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

body.is-locked {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #6fb5b0;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(14, 28, 47, 0.08);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}

.site-header__inner > .button {
  justify-self: end;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.brand__name {
  color: var(--navy-950);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__role {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #445064;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--teal-700);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.button--teal {
  background: var(--teal-700);
  color: var(--white);
}

.button--teal:hover {
  background: #285f5d;
}

.button--navy {
  background: var(--navy-950);
  color: var(--white);
}

.button--ghost {
  border-color: #cbd2d4;
  background: transparent;
  color: var(--navy-950);
}

.button--ghost:hover {
  border-color: var(--teal-700);
  background: var(--white);
}

.button--small {
  min-height: 44px;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 14px;
}

.button--full {
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 72px;
  min-height: 660px;
  padding-block: 82px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero__lead {
  margin: 28px 0 0;
  color: #526074;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.result-preview {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  padding: 42px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.result-preview__label {
  margin: 0;
  color: #9cc7c3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.result-preview h2 {
  max-width: 420px;
  margin: 14px 0 30px;
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.result-preview ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-preview li {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  font-weight: 700;
}

.result-preview li span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-600);
  font-size: 12px;
}

.result-preview__meta {
  display: flex;
  gap: 8px;
  margin-top: 24px;
  color: #bcc6d1;
  font-size: 12px;
}

.result-preview__meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
}

.trust-strip {
  border-block: 1px solid rgba(14, 28, 47, 0.1);
  background: var(--white);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 92px;
  align-items: center;
}

.trust-strip p {
  margin: 0;
  padding: 12px 30px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
}

.trust-strip p + p {
  border-left: 1px solid var(--line);
}

.tracks-section {
  padding-block: 120px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.trust-section h2,
.how-section h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.track-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 174px;
  align-items: start;
  gap: 22px;
  border: 1px solid #d8deda;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 30px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 0 rgba(14, 28, 47, 0.02);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.track-card:hover {
  transform: translateY(-4px);
  border-color: #86aaa7;
  box-shadow: var(--shadow-soft);
}

.track-card--wide {
  grid-column: 1 / -1;
}

.track-card__number {
  color: var(--teal-700);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.track-card__body {
  display: flex;
  flex-direction: column;
  min-height: 112px;
}

.track-card__body strong {
  color: var(--navy-950);
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.track-card__body > span {
  margin-top: 9px;
  color: var(--muted);
}

.track-card__body small {
  margin-top: auto;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 900;
}

.helper-link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border: 1px dashed #9dafac;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.helper-link span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.how-section {
  background: var(--navy-950);
  color: var(--white);
}

.how-section__inner {
  padding-block: 110px;
}

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

.section-heading--light .eyebrow {
  color: #9cc7c3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 220px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  padding: 26px;
}

.process-grid span {
  color: #80b3af;
  font-size: 13px;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  margin-top: 38px;
  font-size: 20px;
}

.process-grid p {
  margin: 10px 0 0;
  color: #b8c2cd;
  font-size: 14px;
}

.trust-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  padding-block: 120px;
}

.trust-section__copy > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.office-facts {
  margin: 0;
  border-top: 2px solid var(--navy-950);
}

.office-facts div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 20px 4px;
}

.office-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.office-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--navy-900);
  color: var(--white);
}

.site-footer__inner {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.site-footer strong {
  font-size: 20px;
}

.site-footer p {
  max-width: 570px;
  margin: 8px 0 0;
  color: #b9c4cf;
  font-size: 13px;
}

.mobile-start {
  display: none;
}

/* Clickable check flow */
.check-app {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  background: var(--cream);
}

.check-app__topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.96);
  padding-inline: max(24px, calc((100vw - 1120px) / 2));
  backdrop-filter: blur(12px);
}

.text-button {
  width: max-content;
  border: 0;
  background: transparent;
  padding: 9px 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.brand--center {
  align-items: center;
}

.brand--center .brand__name {
  font-size: 17px;
}

.check-app__prototype {
  justify-self: end;
  border: 1px solid #c9d1d1;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.check-progress {
  position: sticky;
  top: 76px;
  z-index: 4;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  margin-inline: auto;
  background: var(--cream);
  padding: 22px 24px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.check-progress__bar {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: #dfe4df;
}

.check-progress__bar span {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal-700);
  transition: width 240ms ease;
}

.check-stage {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
  padding: 46px 0 132px;
}

.question-view {
  animation: rise 220ms ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.question-view__track {
  margin: 0;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.question-view h1 {
  margin: 14px 0 0;
  color: var(--navy-950);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.26;
  letter-spacing: -0.045em;
}

.question-view__helper {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.choice-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.choice {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  border: 1px solid #cfd6d4;
  border-radius: 15px;
  background: var(--white);
  padding: 17px 20px;
  cursor: pointer;
  text-align: left;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.choice:hover {
  transform: translateY(-1px);
  border-color: var(--teal-700);
  background: var(--teal-50);
}

.choice[aria-pressed="true"] {
  border-color: var(--teal-700);
  background: var(--teal-50);
  box-shadow: inset 0 0 0 1px var(--teal-700);
}

.choice strong {
  font-size: 16px;
  line-height: 1.45;
}

.choice small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.choice__mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #c9d1d1;
  border-radius: 50%;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
}

.choice[aria-pressed="true"] .choice__mark {
  border-color: var(--teal-700);
  background: var(--teal-700);
  color: var(--white);
}

.check-app__footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 84px;
  border-top: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.97);
  padding-inline: max(24px, calc((100vw - 760px) / 2));
  backdrop-filter: blur(12px);
}

.check-app__footer p {
  margin: 0;
  color: var(--muted);
  text-align: right;
  font-size: 12px;
}

.intro-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.intro-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.intro-panel__meta li {
  border-radius: 999px;
  background: var(--teal-50);
  padding: 8px 11px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
}

.prototype-notice {
  margin: 22px 0 0;
  border-left: 3px solid #c49b52;
  background: var(--warning-bg);
  padding: 14px 16px;
  color: #6f531f;
  font-size: 13px;
}

/* Result */
.result-view {
  display: grid;
  gap: 20px;
  animation: rise 220ms ease both;
}

.result-hero {
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  padding: 38px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.result-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.result-hero__eyebrow {
  margin: 0;
  color: #9cc7c3;
  font-size: 13px;
  font-weight: 900;
}

.status-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  color: #dce8e7;
  font-size: 11px;
  font-weight: 900;
}

.result-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(30px, 5vw, 45px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.result-hero__summary {
  margin: 20px 0 0;
  color: #c7d0db;
  font-size: 16px;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 28px;
}

.result-card__label {
  margin: 0;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.result-card h2 {
  margin: 10px 0 0;
  color: var(--navy-950);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.action-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.action-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: start;
  gap: 12px;
  border-radius: 14px;
  background: var(--cream);
  padding: 15px;
  font-weight: 700;
}

.action-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-700);
  color: var(--white);
  font-size: 11px;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reason-list,
.document-list,
.detail-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.reason-list li,
.document-list li,
.detail-list li {
  margin: 7px 0;
}

.result-card--attention {
  border-color: #d8c8a7;
  background: #fffbf2;
}

.result-card--safe {
  border-color: #c7ded4;
  background: #f4fbf7;
}

.contact-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.contact-result-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  padding: 17px;
}

.contact-result-item span {
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
}

.contact-result-item strong {
  display: block;
  margin-top: 7px;
  font-size: 15px;
}

.contact-result-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-card {
  border: 1px solid #c6d8d6;
  border-radius: var(--radius-lg);
  background: var(--teal-50);
  padding: 28px;
}

.service-card__badge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--teal-700);
  padding: 7px 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.service-card h2 {
  margin: 13px 0 0;
  color: var(--navy-950);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 10px 0 0;
  color: #52666a;
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fee-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid #c9dcda;
  padding-top: 20px;
}

.fee-panel strong {
  color: var(--navy-950);
  font-size: 27px;
}

.fee-panel p {
  margin: 0;
  font-size: 12px;
}

.fee-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  font-size: 13px;
}

.fee-table th,
.fee-table td {
  border-top: 1px solid #d9e5e4;
  padding: 11px 4px;
  text-align: left;
}

.fee-table th {
  color: var(--muted);
  font-weight: 600;
}

.fee-table td {
  color: var(--navy-950);
  font-weight: 800;
  text-align: right;
}

.details-card details + details {
  border-top: 1px solid var(--line);
}

.details-card summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--navy-950);
  font-weight: 800;
}

.details-card details:first-of-type summary {
  padding-top: 6px;
}

.details-card details > div {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.result-basis {
  border-radius: var(--radius-md);
  background: #eef0ed;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 12px;
}

.result-basis p {
  margin: 4px 0;
}

.choice-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.choice-service {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 18px;
}

.choice-service strong {
  display: block;
  color: var(--navy-950);
}

.choice-service p {
  min-height: 42px;
  margin: 7px 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 13px;
  color: #465265;
  font-size: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--teal-700);
}

.result-end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qa-ribbon {
  border: 1px solid #d9c98e;
  border-radius: 12px;
  background: #fff8d8;
  padding: 12px 14px;
  color: #6f5922;
  font-size: 12px;
  font-weight: 800;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 19, 33, 0.62);
  backdrop-filter: blur(5px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: var(--radius-xl);
  background: var(--cream);
  padding: 38px;
  box-shadow: var(--shadow);
}

.modal__panel--compact {
  width: min(500px, 100%);
}

.modal__panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.modal__panel > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  padding: 7px;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.helper-options {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.helper-result {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 24px;
}

.helper-result strong {
  display: block;
  color: var(--navy-950);
  font-size: 22px;
}

.helper-result p {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.simulation-notice {
  margin: 22px 0;
  border-radius: 14px;
  background: var(--white);
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.simulation-notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  max-width: 360px;
  border-radius: 13px;
  background: var(--navy-950);
  padding: 14px 17px;
  color: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
}

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

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: auto;
    padding-block: 72px;
  }

  .result-preview {
    max-width: 680px;
  }

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

  .trust-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
    --radius-xl: 22px;
    --radius-lg: 17px;
  }

  body {
    padding-bottom: 70px;
    font-size: 16px;
  }

  body.is-locked {
    padding-bottom: 0;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .site-header__inner > .button {
    display: none;
  }

  .brand__name {
    font-size: 18px;
  }

  .brand__role {
    font-size: 10px;
  }

  .hero {
    padding-block: 54px 62px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero__lead br {
    display: none;
  }

  .hero__actions {
    display: grid;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .result-preview {
    padding: 28px 22px;
  }

  .result-preview h2 {
    font-size: 25px;
  }

  .result-preview__meta {
    flex-wrap: wrap;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-strip p {
    padding: 12px;
    text-align: left;
  }

  .trust-strip p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tracks-section,
  .trust-section {
    padding-block: 78px;
  }

  .section-heading h2,
  .trust-section h2,
  .how-section h2 {
    font-size: 35px;
  }

  .track-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .track-card,
  .track-card--wide {
    grid-column: auto;
    grid-template-columns: 42px 1fr;
    min-height: 150px;
    gap: 12px;
    padding: 23px 20px;
  }

  .track-card__body {
    min-height: 100px;
  }

  .track-card__body strong {
    font-size: 22px;
  }

  .helper-link {
    display: grid;
  }

  .how-section__inner {
    padding-block: 78px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .process-grid li {
    min-height: 160px;
  }

  .process-grid strong {
    margin-top: 26px;
  }

  .office-facts div {
    grid-template-columns: 82px 1fr;
  }

  .site-footer__inner {
    display: grid;
    min-height: auto;
    padding-block: 44px;
  }

  .mobile-start {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 50;
    display: block;
    min-height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(14, 28, 47, 0.22);
    font-weight: 900;
  }

  .check-app__topbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand--center {
    display: none;
  }

  .check-progress {
    top: 64px;
    grid-template-columns: 50px 1fr;
    padding: 18px 16px 6px;
  }

  .check-stage {
    width: calc(100% - 32px);
    padding: 34px 0 126px;
  }

  .question-view h1 {
    font-size: 31px;
  }

  .choice-list {
    margin-top: 27px;
  }

  .choice {
    min-height: 66px;
    padding: 15px 16px;
  }

  .check-app__footer {
    grid-template-columns: auto 1fr;
    min-height: 76px;
    padding-inline: 16px;
  }

  .check-app__footer p {
    font-size: 10px;
  }

  .intro-panel,
  .result-hero,
  .result-card,
  .service-card {
    padding: 23px 20px;
  }

  .result-grid,
  .contact-result-grid,
  .choice-service-grid {
    grid-template-columns: 1fr;
  }

  .fee-panel {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-card__actions,
  .result-end-actions {
    display: grid;
  }

  .service-card__actions .button,
  .result-end-actions .button {
    width: 100%;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal__panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 24px 24px 0 0;
    padding: 32px 20px 24px;
  }

  .modal__panel h2 {
    padding-right: 48px;
    font-size: 27px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@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;
  }
}
