:root {
  color-scheme: dark;
  --ink: #f8f2e6;
  --muted: #c7bcaa;
  --paper: #0b0b0a;
  --panel: rgba(255, 250, 241, 0.08);
  --panel-strong: rgba(255, 250, 241, 0.12);
  --line: rgba(218, 179, 117, 0.22);
  --charcoal: #0f0f0d;
  --charcoal-soft: #171613;
  --accent: #c48745;
  --accent-dark: #8f5525;
  --cream-band: #f3ecdf;
  --cream-ink: #151413;
  --cream-muted: #5a5349;
  --green: #23724a;
  --yellow: #aa7a12;
  --red: #b13d31;
  --black: #171717;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(196, 135, 69, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 135, 69, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(218, 179, 117, 0.22);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  padding: 17px max(20px, calc((100vw - 1120px) / 2));
}

.site-nav__brand,
.site-nav__links a {
  text-decoration: none;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fffaf1;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dab375;
  border-radius: 50%;
  color: #f2d994;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 28px rgba(216, 179, 90, 0.18), inset 0 0 18px rgba(216, 179, 90, 0.12);
}

.site-nav__brand-text {
  line-height: 1.2;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
}

.site-nav__links a {
  border: 1px solid transparent;
  color: #ead9bf;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 8px 0;
}

.site-nav__links a:hover {
  color: #ffe29a;
}

.site-nav__links .site-nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-color: #d8b35a;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216,179,90,0.24), rgba(216,179,90,0.08));
  color: #ffe29a;
  font-weight: 750;
  padding: 0 18px;
  box-shadow: 0 0 34px rgba(216,179,90,0.12);
}

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(218, 179, 117, 0.28);
  background:
    linear-gradient(125deg, rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.76) 56%, rgba(36, 26, 16, 0.74)),
    url("data:image/svg+xml,%3Csvg width='1600' height='1000' viewBox='0 0 1600 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1600' height='1000' fill='%2321201d'/%3E%3Cg fill='none' stroke='%23b89464' stroke-opacity='0.42'%3E%3Cpath d='M120 170h1360v660H120z' stroke-width='6'/%3E%3Cpath d='M220 270h1160v460H220z' stroke-width='3'/%3E%3Cpath d='M320 360h960M320 500h960M320 640h960' stroke-width='2'/%3E%3Cpath d='M470 270v460M800 270v460M1130 270v460' stroke-width='2'/%3E%3C/g%3E%3Cg fill='%23d9b47a' fill-opacity='0.2'%3E%3Ccircle cx='220' cy='270' r='18'/%3E%3Ccircle cx='1380' cy='270' r='18'/%3E%3Ccircle cx='220' cy='730' r='18'/%3E%3Ccircle cx='1380' cy='730' r='18'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(218, 179, 117, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 179, 117, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.hero__content,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0 112px;
  color: #fffaf1;
}

.kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker,
.band--dark .section-label,
.final-cta .section-label {
  color: #e4b46f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-line {
  max-width: 760px;
  color: #f0e6d4;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.button,
.status-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  padding: 12px 18px;
  border: 1px solid currentColor;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.button--primary {
  background: linear-gradient(180deg, #d39a57, var(--accent-dark));
  border-color: var(--accent);
  color: #fffaf1;
}

.button--secondary {
  background: rgba(255, 250, 241, 0.06);
  border-color: rgba(255, 250, 241, 0.3);
  color: #fffaf1;
}

.status-pill {
  padding: 12px 16px;
  border: 1px solid rgba(218, 179, 117, 0.26);
  background: rgba(255, 250, 241, 0.08);
  color: inherit;
}

.diagnostic-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(218, 179, 117, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(228, 180, 111, 0.28), transparent 34%, rgba(228, 180, 111, 0.14) 66%, transparent),
    linear-gradient(145deg, rgba(255, 250, 241, 0.14), rgba(255, 250, 241, 0.055)),
    rgba(9, 9, 8, 0.68);
  background-size: 100% 2px, auto, auto;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(228, 180, 111, 0.08),
    0 -1px 28px rgba(228, 180, 111, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
  padding: 28px 22px 22px;
}

.diagnostic-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: #ead9bf;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-panel__grid {
  display: grid;
  gap: 12px;
}

.diagnostic-panel__row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 68px;
  border: 1px solid rgba(218, 179, 117, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(228, 180, 111, 0.095), transparent 52%),
    rgba(5, 5, 4, 0.42);
  color: #fffaf1;
  padding: 13px 16px;
}

.diagnostic-panel__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: #f0c47d;
  box-shadow:
    0 0 0 2px rgba(228, 180, 111, 0.12),
    0 0 8px rgba(228, 180, 111, 0.24);
}

.diagnostic-panel__row strong,
.diagnostic-panel__row small {
  display: block;
}

.diagnostic-panel__row strong {
  color: #fffaf1;
  font-size: 0.98rem;
  line-height: 1.2;
}

.diagnostic-panel__row small {
  margin-top: 4px;
  color: #d7c6ab;
  font-size: 0.84rem;
  line-height: 1.35;
}

.diagnostic-panel__trust {
  border-top: 1px solid rgba(228, 180, 111, 0.18);
  margin-top: 16px;
  padding-top: 14px;
  color: #e4b46f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.band,
.section-inner,
.final-cta {
  padding: 76px 0;
}

.band {
  background: var(--cream-band);
  color: var(--cream-ink);
}

.band--dark {
  background:
    linear-gradient(rgba(218, 179, 117, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 179, 117, 0.05) 1px, transparent 1px),
    var(--charcoal);
  background-size: 52px 52px;
  color: #fffaf1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.check-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.check-grid article,
.result-card,
.review-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  padding: 24px;
}

.check-grid p,
.result-card p,
.review-offer p,
.disclaimer p {
  color: inherit;
  opacity: 0.72;
}

.result-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.11), rgba(255, 250, 241, 0.045)),
    var(--charcoal-soft);
  border-color: rgba(255, 250, 241, 0.18);
}

.result-card p {
  color: #ddd5c5;
}

.result-card--green {
  border-color: rgba(80, 190, 121, 0.18);
  border-top: 5px solid #50be79;
  background:
    radial-gradient(circle at 18% 0%, rgba(80, 190, 121, 0.28), transparent 44%),
    linear-gradient(180deg, rgba(45, 120, 76, 0.2), rgba(255, 250, 241, 0.04)),
    var(--charcoal-soft);
  box-shadow: 0 18px 52px rgba(20, 122, 69, 0.2);
}

.result-card--yellow {
  border-color: rgba(226, 166, 54, 0.18);
  border-top: 5px solid #e2a636;
  background:
    radial-gradient(circle at 18% 0%, rgba(226, 166, 54, 0.3), transparent 44%),
    linear-gradient(180deg, rgba(148, 100, 17, 0.21), rgba(255, 250, 241, 0.04)),
    var(--charcoal-soft);
  box-shadow: 0 18px 52px rgba(190, 126, 20, 0.18);
}

.result-card--red {
  border-color: rgba(200, 68, 58, 0.16);
  border-top: 5px solid #c8443a;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 68, 58, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(154, 43, 36, 0.17), rgba(255, 250, 241, 0.04)),
    var(--charcoal-soft);
  box-shadow: 0 18px 52px rgba(155, 35, 29, 0.16);
}

.result-card--black {
  border-color: rgba(119, 153, 174, 0.16);
  border-top: 5px solid #6f8797;
  background:
    radial-gradient(circle at 18% 0%, rgba(119, 153, 174, 0.2), transparent 44%),
    linear-gradient(180deg, rgba(47, 60, 69, 0.22), rgba(255, 250, 241, 0.03)),
    #0d1013;
  box-shadow: 0 18px 54px rgba(2, 8, 14, 0.36);
}

.question-list,
.receive-list,
.not-list {
  margin: 0;
  padding-left: 1.25rem;
}

.question-list li,
.receive-list li,
.not-list li {
  margin-bottom: 14px;
}

.review-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.review-note {
  background: rgba(255, 250, 241, 0.08);
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.86);
  color: var(--cream-ink);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.final-cta {
  background:
    linear-gradient(rgba(218, 179, 117, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 179, 117, 0.05) 1px, transparent 1px),
    var(--charcoal);
  background-size: 56px 56px;
  color: #fffaf1;
}

.self-test {
  border-top: 1px solid rgba(218, 179, 117, 0.18);
  border-bottom: 1px solid rgba(218, 179, 117, 0.18);
}

.self-test__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 34px;
}

.self-test__header p {
  max-width: 760px;
  color: #ddd5c5;
}

.self-test__status {
  border: 1px solid rgba(218, 179, 117, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
  color: #f4dfbf;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.self-test__questions {
  display: grid;
  gap: 18px;
}

.self-test-question,
.self-test__result {
  border: 1px solid rgba(218, 179, 117, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.12), rgba(255, 250, 241, 0.045)),
    rgba(10, 10, 9, 0.74);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
  padding: 26px;
}

.self-test-question__header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.self-test-question__header span,
.result-label,
.placeholder-note {
  color: #e4b46f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.self-test-question__header h3,
.self-test__result h3 {
  color: #fffaf1;
  font-size: 1.45rem;
}

.self-test-question__header p,
.self-test__result p {
  color: #ddd5c5;
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.answer-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 78px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.06);
  color: #fffaf1;
  cursor: pointer;
  font: inherit;
  line-height: 1.45;
  padding: 16px;
  text-align: left;
}

.answer-option[aria-pressed="true"] {
  border-color: rgba(228, 180, 111, 0.82);
  background: rgba(196, 135, 69, 0.18);
  box-shadow: inset 0 0 0 1px rgba(228, 180, 111, 0.34);
}

.answer-option__score {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(228, 180, 111, 0.44);
  border-radius: 50%;
  color: #f4dfbf;
  font-size: 0.9rem;
  font-weight: 700;
}

.self-test__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.self-test__result {
  margin-top: 28px;
  border-top-width: 6px;
  position: relative;
  overflow: hidden;
}

.self-test__result--green {
  border-color: rgba(80, 205, 128, 0.48);
  border-top-color: #50cd80;
  background:
    radial-gradient(circle at 18% 0%, rgba(80, 205, 128, 0.32), transparent 43%),
    radial-gradient(circle at 94% 16%, rgba(80, 205, 128, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(26, 105, 62, 0.4), rgba(255, 250, 241, 0.045)),
    rgba(8, 18, 13, 0.9);
  box-shadow:
    0 0 0 1px rgba(80, 205, 128, 0.18),
    0 0 32px rgba(80, 205, 128, 0.12),
    0 24px 84px rgba(23, 125, 72, 0.28),
    inset 0 1px 0 rgba(255, 250, 241, 0.08);
}

.self-test__result--yellow {
  border-color: rgba(238, 178, 62, 0.5);
  border-top-color: #eeb23e;
  background:
    radial-gradient(circle at 18% 0%, rgba(238, 178, 62, 0.34), transparent 43%),
    radial-gradient(circle at 94% 16%, rgba(238, 178, 62, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(120, 80, 18, 0.42), rgba(255, 250, 241, 0.045)),
    rgba(20, 15, 7, 0.9);
  box-shadow:
    0 0 0 1px rgba(238, 178, 62, 0.18),
    0 0 30px rgba(238, 178, 62, 0.11),
    0 24px 84px rgba(185, 119, 19, 0.25),
    inset 0 1px 0 rgba(255, 250, 241, 0.08);
}

.self-test__result--red {
  border-color: rgba(198, 65, 56, 0.42);
  border-top-color: #c64138;
  background:
    radial-gradient(circle at 18% 0%, rgba(198, 65, 56, 0.25), transparent 43%),
    radial-gradient(circle at 94% 16%, rgba(198, 65, 56, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(95, 25, 22, 0.36), rgba(255, 250, 241, 0.04)),
    rgba(22, 8, 7, 0.92);
  box-shadow:
    0 0 0 1px rgba(198, 65, 56, 0.15),
    0 0 28px rgba(198, 65, 56, 0.09),
    0 26px 86px rgba(142, 32, 28, 0.23),
    inset 0 1px 0 rgba(255, 250, 241, 0.08);
}

.self-test__result--black {
  border-color: rgba(119, 153, 174, 0.36);
  border-top-color: #7799ae;
  background:
    radial-gradient(circle at 18% 0%, rgba(119, 153, 174, 0.24), transparent 42%),
    radial-gradient(circle at 94% 16%, rgba(119, 153, 174, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(31, 42, 50, 0.42), rgba(255, 250, 241, 0.026)),
    #06080b;
  box-shadow:
    0 0 0 1px rgba(119, 153, 174, 0.14),
    0 0 34px rgba(119, 153, 174, 0.1),
    0 30px 92px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 250, 241, 0.06);
}

.self-test__result--incomplete {
  border-top-color: var(--accent);
}

.self-test__score,
.self-test__override {
  color: #f4dfbf;
  font-weight: 700;
}

.risk-driver-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.risk-driver-list span {
  border: 1px solid rgba(228, 180, 111, 0.32);
  border-radius: 999px;
  background: rgba(228, 180, 111, 0.1);
  color: #f4dfbf;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
}

.self-test__result--green .result-label,
.self-test__result--green .risk-driver-list span,
.self-test__result--green .self-test__score,
.self-test__result--green .self-test__override {
  border-color: rgba(80, 205, 128, 0.44);
  background: rgba(80, 205, 128, 0.14);
  color: #b9f1cf;
}

.self-test__result--yellow .result-label,
.self-test__result--yellow .risk-driver-list span,
.self-test__result--yellow .self-test__score,
.self-test__result--yellow .self-test__override {
  border-color: rgba(238, 178, 62, 0.46);
  background: rgba(238, 178, 62, 0.14);
  color: #f6d996;
}

.self-test__result--red .result-label,
.self-test__result--red .risk-driver-list span,
.self-test__result--red .self-test__score,
.self-test__result--red .self-test__override {
  border-color: rgba(198, 65, 56, 0.4);
  background: rgba(198, 65, 56, 0.11);
  color: #efada8;
}

.self-test__result--black .result-label,
.self-test__result--black .risk-driver-list span,
.self-test__result--black .self-test__score,
.self-test__result--black .self-test__override {
  border-color: rgba(119, 153, 174, 0.38);
  background: rgba(119, 153, 174, 0.11);
  color: #d4e3eb;
}

.self-test__result .result-label,
.self-test__score,
.self-test__override {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(228, 180, 111, 0.32);
  border-radius: 999px;
  padding: 7px 11px;
}

.recommended-next-step {
  border-left: 3px solid var(--accent);
  margin: 22px 0;
  padding-left: 18px;
}

.recommended-next-step h4 {
  margin: 0 0 8px;
  color: #fffaf1;
  font-size: 1rem;
}

.self-test__disclaimer {
  border-top: 1px solid rgba(218, 179, 117, 0.18);
  margin: 20px 0 0;
  padding-top: 16px;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  body {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .check-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .diagnostic-panel {
    max-width: 560px;
  }

  .split,
  .review-offer {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .self-test__header,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .self-test__status {
    width: fit-content;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav__links {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 1.22rem;
    line-height: 1.68;
  }

  .hero__content,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero::before {
    background-size: 42px 42px;
  }

  .hero__content {
    display: block;
    padding: 22px 0 54px;
  }

  .site-nav {
    padding: 14px;
  }

  .site-nav__brand {
    white-space: normal;
  }

  .site-nav__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .site-nav__links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-nav__links .site-nav__cta {
    grid-column: 1 / -1;
  }

  .kicker,
  .section-label {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.42;
    letter-spacing: 0.08em;
  }

  h1 {
    margin-bottom: 28px;
    font-size: 2.9rem;
    line-height: 1.06;
  }

  h2 {
    margin-bottom: 22px;
    font-size: 2.2rem;
    line-height: 1.12;
  }

  h3 {
    margin-bottom: 14px;
    font-size: 1.36rem;
    line-height: 1.2;
  }

  .service-line {
    font-size: 1.34rem;
    line-height: 1.7;
  }

  .diagnostic-panel {
    margin-top: 40px;
    padding: 24px;
  }

  .diagnostic-panel__header {
    display: grid;
    gap: 6px;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .diagnostic-panel__row {
    min-height: 64px;
    padding: 16px;
  }

  .diagnostic-panel__row strong {
    font-size: 1.08rem;
  }

  .diagnostic-panel__row small {
    font-size: 0.95rem;
  }

  .diagnostic-panel__trust {
    font-size: 0.78rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 42px;
  }

  .button,
  .status-pill {
    width: 100%;
    min-height: 66px;
    padding: 18px 20px;
    font-size: 1.12rem;
    text-align: center;
    line-height: 1.25;
  }

  .band,
  .section-inner,
  .final-cta {
    padding: 64px 0;
  }

  .check-grid,
  .result-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .check-grid article,
  .result-card,
  .review-note,
  details,
  .self-test-question,
  .self-test__result {
    padding: 28px;
  }

  .result-card p,
  .check-grid p,
  .review-offer p,
  .disclaimer p,
  details p {
    font-size: 1.18rem;
    line-height: 1.72;
  }

  .question-list,
  .receive-list,
  .not-list {
    padding-left: 1.25rem;
  }

  .question-list li,
  .receive-list li,
  .not-list li {
    margin-bottom: 22px;
  }

  .question-list li {
    font-size: 1.22rem;
    line-height: 1.7;
  }

  summary {
    font-size: 1.18rem;
    line-height: 1.52;
  }

  .self-test__header {
    gap: 18px;
    margin-bottom: 28px;
  }

  .self-test__status {
    border-radius: 8px;
    font-size: 0.9rem;
  }

  .self-test-question__header h3,
  .self-test__result h3 {
    font-size: 1.55rem;
  }

  .answer-option {
    min-height: 96px;
    padding: 18px;
  }

  .self-test__actions {
    flex-direction: column;
  }

  .risk-driver-list {
    display: grid;
  }
}
