:root {
  --font: Inter, "Segoe UI", Arial, sans-serif;
  --bg: #f6f7f5;
  --surface: #ffffff;
  --surface-2: #eef3f1;
  --text: #17211f;
  --muted: #5c6864;
  --line: rgba(23, 33, 31, 0.13);
  --accent: #b88738;
  --accent-2: #1f6f63;
  --dark: #18201e;
  --hero-scrim: linear-gradient(90deg, rgba(11, 18, 17, 0.78) 0%, rgba(11, 18, 17, 0.53) 39%, rgba(11, 18, 17, 0.12) 76%);
  --shadow: 0 20px 55px rgba(23, 33, 31, 0.12);
}

body.theme-crisis {
  --bg: #f7f7f2;
  --surface-2: #edf4f2;
  --accent: #c39031;
  --accent-2: #2f7569;
  --dark: #17211f;
}

body.theme-system {
  --bg: #f4f7f5;
  --surface-2: #e8f0ed;
  --accent: #8f6b35;
  --accent-2: #22685d;
  --dark: #16211e;
}

body.theme-training {
  --bg: #f5f8f8;
  --surface-2: #e8f0f2;
  --accent: #d2a23c;
  --accent-2: #276b7a;
  --dark: #162126;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
}

.brand img {
  width: min(238px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
}

.nav-cta:hover,
.button:hover {
  filter: brightness(0.96);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: min(700px, 74svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 64px) 0;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-facts {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-top: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.hero-fact {
  min-height: 116px;
  padding: 20px;
  background: rgba(11, 18, 17, 0.28);
}

.hero-fact strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.band {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.band.tight {
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.band.alt {
  background: var(--surface-2);
}

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.48fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.landing-card h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

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

.card,
.landing-card,
.metric,
.step,
.quote,
.form-box,
.table-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 33, 31, 0.06);
}

.card {
  min-height: 218px;
  padding: 24px;
}

.card .kicker,
.step .kicker,
.landing-card .kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card h3,
.step h3,
.quote h3,
.table-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.card p,
.step p,
.quote p,
.table-card p,
.landing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.pain-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pain-item {
  min-height: 168px;
  padding: 24px;
  background: var(--surface);
}

.pain-item strong {
  display: block;
  margin-bottom: 11px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.2;
}

.pain-item span {
  color: var(--muted);
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 232px;
  padding: 26px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent-2);
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  min-height: 148px;
  padding: 24px;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.64fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.quote {
  padding: clamp(26px, 4vw, 42px);
}

.quote p {
  color: var(--text);
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.18;
}

.quote small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.table-card {
  overflow: hidden;
}

.row {
  display: grid;
  grid-template-columns: 0.82fr 1.2fr;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.row:first-child {
  border-top: 0;
}

.row strong {
  color: var(--text);
}

.row span {
  color: var(--muted);
  line-height: 1.45;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.form-box {
  padding: 24px;
  background: #fff;
  box-shadow: none;
}

.form-box label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.form-box textarea {
  min-height: 92px;
  resize: vertical;
}

.form-box .button {
  width: 100%;
  margin-top: 6px;
}

.legal {
  margin: 12px 0 0;
  color: rgba(23, 33, 31, 0.56);
  font-size: 12px;
  line-height: 1.4;
}

.variant-hero {
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 52px);
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.variant-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.variant-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 21, 0.86), rgba(15, 23, 21, 0.18));
}

.variant-hero > div {
  position: relative;
  z-index: 2;
}

.variant-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

.variant-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.55;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-card {
  overflow: hidden;
}

.landing-card .media {
  height: 230px;
  overflow: hidden;
  background: var(--surface-2);
}

.landing-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.landing-card:hover .media img {
  transform: scale(1.03);
}

.landing-card .body {
  padding: 24px;
}

.landing-card h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.landing-card .button {
  margin-top: 24px;
}

.site-footer {
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.alpha-footer {
  background: #292c35;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--target-font, var(--font));
}

.alpha-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.28fr) minmax(210px, 0.82fr) minmax(250px, 0.96fr) minmax(230px, 0.9fr);
  gap: 36px;
  width: var(--target-container, min(1180px, calc(100% - 112px)));
  margin: 0 auto;
  padding: 48px 0 36px;
}

.alpha-footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.alpha-footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.alpha-footer-logo img {
  width: min(230px, 58vw);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.alpha-footer-brand p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.alpha-footer-brand small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.4;
}

.alpha-footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.alpha-footer-column h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.alpha-footer-column a,
.alpha-footer-column span {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
}

.alpha-footer-column a:hover {
  color: #fff;
}

.alpha-footer-column i {
  color: #d0a04a;
  font-size: 18px;
  line-height: 1.2;
}

.alpha-footer-legal a {
  display: block;
}

.alpha-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  width: var(--target-container, min(1180px, calc(100% - 112px)));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.4;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .section-head,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .landing-grid,
  .metrics,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 8px;
    overflow-x: visible;
    flex-wrap: nowrap;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav-cta,
  .button {
    min-height: 40px;
    padding: 10px 12px;
  }

  .hero h1,
  .variant-hero h1 {
    font-size: clamp(32px, 10.5vw, 48px);
  }

  .hero-inner {
    padding: 34px 0 38px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-facts,
  .grid-2,
  .grid-3,
  .landing-grid,
  .metrics,
  .steps,
  .pain-strip {
    grid-template-columns: 1fr;
  }

  .hero-fact {
    min-height: 96px;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-panel {
    padding: 24px;
  }

  .band {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Selected Product Design direction: SOT1-like first screen. */
.target-page {
  --target-font: Gilroy, Manrope, "Segoe UI", Arial, sans-serif;
  --target-text: #292c35;
  --target-muted: #6f737c;
  --target-soft: #f6f5f2;
  --target-line: #dfded8;
  --target-gold: #c7943e;
  --target-gold-dark: #b8842f;
  --target-card: #ffffff;
  --target-container: min(1440px, calc(100vw - 112px));
  --target-shell: var(--target-container);
  background: #f8f8f6;
  color: var(--target-text);
  font-family: var(--target-font);
  letter-spacing: 0;
}

.target-page .toast {
  font-family: var(--target-font);
}

.target-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: block;
  min-height: 92px;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
  color: var(--target-text);
}

.target-header-inner {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr) 220px 194px;
  align-items: center;
  gap: 24px;
  width: var(--target-container);
  min-height: 92px;
  margin: 0 auto;
}

.target-brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  min-width: 0;
}

.target-brand img {
  width: 230px;
  height: auto;
}

.target-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 42px);
  color: #2f333c;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.target-nav a {
  transition: color 0.2s ease;
}

.target-nav a:hover {
  color: var(--target-gold-dark);
}

.target-phone {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  justify-self: end;
  gap: 10px;
  color: var(--target-text);
}

.target-phone i {
  color: #3b3e46;
  font-size: 22px;
  line-height: 1;
}

.target-phone strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.target-phone small {
  display: block;
  margin-top: 6px;
  color: var(--target-muted);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.target-button {
  display: inline-flex;
  min-width: 202px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid rgba(154, 110, 39, 0.28);
  border-radius: 6px;
  background: linear-gradient(135deg, #d0a04a, #bd8732);
  color: #fff;
  cursor: pointer;
  font-family: var(--target-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(166, 117, 43, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.target-button:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.target-header-button {
  min-width: 178px;
  min-height: 48px;
  justify-self: end;
}

.target-hero {
  position: relative;
  min-height: 592px;
  overflow: hidden;
  background: #f8f8f6;
  padding-top: 92px;
}

.target-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 35%, rgba(255, 255, 255, 0.52) 51%, rgba(255, 255, 255, 0.08) 68%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 26%);
  pointer-events: none;
}

.target-hero-media {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 104%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: translateX(3.6%);
}

.target-hero-content {
  position: relative;
  z-index: 2;
  width: var(--target-shell);
  margin: 0 auto;
  padding-top: 34px;
}

.target-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 27px;
  color: var(--target-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.target-eyebrow::before {
  content: "";
  display: block;
  width: 27px;
  height: 2px;
  background: var(--target-gold);
}

.target-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #292b33;
  font-size: clamp(42px, 3.52vw, 54px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.11;
}

.target-bullets {
  display: grid;
  gap: 13px;
  max-width: 610px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.target-bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  color: #2e3139;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.target-bullets i {
  color: var(--target-gold);
  font-size: 22px;
  line-height: 1.1;
}

.target-hero-actions {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-top: 35px;
}

.target-check-link,
.target-all-services {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3b3f47;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.target-check-link i,
.target-all-services i {
  color: var(--target-gold);
  font-size: 20px;
}

.target-services {
  position: relative;
  z-index: 2;
  padding: 28px 0 27px;
  border-top: 1px solid var(--target-line);
  background: #fbfbfa;
  color: var(--target-text);
}

.client-logo-strip {
  position: relative;
  z-index: 2;
  padding: 26px 0 24px;
  border-top: 1px solid rgba(41, 44, 53, 0.08);
  border-bottom: 1px solid rgba(41, 44, 53, 0.08);
  background: #fbfbfa;
  color: var(--target-text);
}

.client-logo-shell {
  width: var(--target-container);
  margin: 0 auto;
}

.client-logo-shell p {
  margin: 0 0 18px;
  color: #858b95;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 46px;
  align-items: center;
}

.client-logo-grid span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
}

.client-logo-grid img {
  display: block;
  width: 100%;
  max-width: 166px;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) contrast(0.18) brightness(0.76);
  mix-blend-mode: multiply;
  opacity: 0.74;
}

.client-logo-grid span:nth-child(2) img,
.client-logo-grid span:nth-child(4) img,
.client-logo-grid span:nth-child(9) img {
  max-height: 42px;
}

.client-logo-grid span:nth-child(5) img,
.client-logo-grid span:nth-child(8) img,
.client-logo-grid span:nth-child(11) img {
  max-width: 190px;
}

.client-logo-grid span:nth-child(10) img {
  max-height: 50px;
}

.target-services-shell {
  position: relative;
  width: var(--target-container);
  margin: 0 auto;
}

.target-services-head {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr) 110px;
  align-items: end;
  gap: 24px;
  min-height: 53px;
  border-bottom: 1px solid var(--target-line);
}

.target-services h2 {
  margin: 0 0 25px;
  color: #2b2e35;
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.target-tabs {
  display: flex;
  align-items: flex-end;
  gap: clamp(32px, 4.2vw, 62px);
  min-width: 0;
  height: 53px;
  overflow-x: auto;
  scrollbar-width: none;
}

.target-tabs::-webkit-scrollbar {
  display: none;
}

.target-tabs button {
  position: relative;
  height: 53px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #383c45;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.target-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: transparent;
}

.target-tabs button.is-active {
  color: var(--target-gold-dark);
}

.target-tabs button.is-active::after {
  background: var(--target-gold);
}

.target-all-services {
  justify-self: end;
  margin-bottom: 24px;
  color: #777b84;
  white-space: nowrap;
}

.target-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.target-service-card {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 262px;
  padding: 22px 21px 22px;
  border: 1px solid var(--target-line);
  border-radius: 6px;
  background: var(--target-card);
  box-shadow: 0 8px 24px rgba(41, 44, 53, 0.03);
}

.target-card-heading {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-right: 24px;
}

.target-card-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f8f3eb;
  color: var(--target-gold);
}

.target-card-icon i {
  font-size: 29px;
  line-height: 1;
}

.target-service-card h3 {
  margin: 5px 0 0;
  color: #2f333b;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
}

.target-card-arrow {
  position: absolute;
  top: 18px;
  right: 0;
  color: #2f333b;
  font-size: 22px;
  line-height: 1;
}

.target-service-card p {
  margin: 18px 0 0;
  color: #6f737c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}

.target-service-card span[data-card-term] {
  display: block;
  margin-top: 18px;
  color: #777b84;
  font-size: 13px;
  line-height: 1.2;
}

.target-card-cta {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(199, 148, 62, 0.58);
  border-radius: 6px;
  background: #fff;
  color: var(--target-gold-dark);
  cursor: pointer;
  font-family: var(--target-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.target-card-cta:hover {
  background: var(--target-gold);
  color: #fff;
  box-shadow: 0 14px 28px rgba(199, 148, 62, 0.18);
  transform: translateY(-1px);
}

.target-card-cta:focus-visible {
  outline: 3px solid rgba(199, 148, 62, 0.24);
  outline-offset: 2px;
}

.target-next-card {
  position: absolute;
  top: 188px;
  right: -18px;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #2f333b;
  box-shadow: 0 12px 32px rgba(41, 44, 53, 0.12);
  cursor: pointer;
}

.target-next-card i {
  font-size: 27px;
  line-height: 1;
}

.target-trust {
  padding: 20px 0 19px;
  border-top: 1px solid var(--target-line);
  background: #f4f4f2;
}

.target-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
  width: var(--target-container);
  margin: 0 auto;
}

.target-trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 55px;
  color: #777b84;
}

.target-trust-item i {
  color: #888d96;
  font-size: 39px;
  line-height: 1;
}

.target-trust-item span {
  color: #70747c;
  font-size: 13px;
  line-height: 1.34;
}

@media (max-width: 1280px) {
  .target-page {
    --target-container: min(100% - 56px, 1160px);
    --target-shell: var(--target-container);
  }

  .alpha-footer-inner {
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(190px, 0.8fr));
    gap: 28px;
  }

  .target-header-inner {
    grid-template-columns: 210px minmax(0, 1fr) 198px 172px;
    gap: 16px;
  }

  .target-brand,
  .target-brand img {
    width: 210px;
  }

  .target-nav {
    gap: 20px;
  }

  .target-services,
  .target-trust,
  .client-logo-strip {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1080px) {
  .target-header-inner {
    grid-template-columns: 220px 1fr auto;
  }

  .alpha-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .target-nav {
    display: none;
  }

  .target-phone {
    justify-self: end;
  }

  .target-hero {
    min-height: 620px;
  }

  .target-hero::after {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 54%, rgba(255, 255, 255, 0.38) 100%);
  }

  .target-services-head {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .target-tabs {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .target-card-grid,
  .target-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 30px;
  }

  .client-logo-grid span {
    min-height: 40px;
  }

  .client-logo-grid img {
    max-width: 150px;
    max-height: 40px;
  }
}

@media (max-width: 760px) {
  .target-page {
    --target-container: calc(100% - 32px);
    --target-shell: var(--target-container);
  }

  .target-header {
    position: relative;
    min-height: auto;
    padding: 0;
  }

  .target-header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    width: var(--target-container);
    min-height: auto;
    padding: 18px 0;
  }

  .target-brand,
  .target-brand img {
    width: 208px;
  }

  .target-phone {
    justify-self: start;
  }

  .target-header-button {
    width: 100%;
  }

  .target-hero {
    min-height: auto;
    padding-top: 0;
  }

  .target-hero-media {
    position: relative;
    left: auto;
    height: 320px;
    width: 100%;
    object-position: 62% center;
    transform: none;
  }

  .target-hero::after {
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 64%, rgba(255, 255, 255, 0.18) 100%);
  }

  .target-hero-content {
    margin-top: -98px;
    padding: 0 0 38px;
  }

  .client-logo-strip {
    padding: 22px 0 20px;
  }

  .client-logo-shell p {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .client-logo-grid {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .client-logo-grid::-webkit-scrollbar {
    display: none;
  }

  .client-logo-grid span {
    flex: 0 0 auto;
    min-width: 118px;
    min-height: 34px;
  }

  .client-logo-grid img {
    max-width: 136px;
    max-height: 36px;
  }

  .target-eyebrow {
    font-size: 11px;
  }

  .target-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .target-bullets li {
    font-size: 15px;
  }

  .target-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .target-button {
    width: 100%;
  }

  .target-services,
  .target-trust {
    padding-left: 0;
    padding-right: 0;
  }

  .target-services-head {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .target-services h2,
  .target-all-services {
    margin-bottom: 16px;
  }

  .target-all-services {
    justify-self: start;
  }

  .target-card-grid,
  .target-trust-grid {
    grid-template-columns: 1fr;
  }

  .target-next-card {
    display: none;
  }
}

/* Quiz landing hero from LANDING-DESIGN-GUIDE.md */
.quiz-hero {
  min-height: 820px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at 18% 18%, rgba(199, 148, 62, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f2ec 100%);
}

.quiz-hero::after {
  background:
    linear-gradient(90deg, #fbfaf7 0%, rgba(251, 250, 247, 0.98) 38%, rgba(251, 250, 247, 0.78) 54%, rgba(251, 250, 247, 0.2) 70%, rgba(251, 250, 247, 0) 100%),
    linear-gradient(0deg, rgba(244, 242, 236, 0.9) 0%, rgba(244, 242, 236, 0) 30%);
}

.quiz-hero .target-hero-media {
  width: 100%;
  transform: none;
  object-position: 80% center;
  filter: saturate(1.05) contrast(1.02);
}

.target-hero-mobile-media {
  display: none;
}

.target-desktop-break {
  display: inline;
}

.quiz-hero .target-hero-content {
  width: var(--target-container);
  padding-top: 44px;
}

.quiz-hero .target-eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(199, 148, 62, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(69, 55, 34, 0.06);
}

.quiz-hero .target-eyebrow::before {
  display: none;
}

.quiz-hero h1 {
  max-width: 940px;
  font-size: clamp(48px, 3.2vw, 60px);
  font-weight: 800;
  line-height: 1.05;
}

.target-subtitle {
  max-width: 740px;
  margin: 22px 0 0;
  color: #4e535d;
  font-size: clamp(19px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.5;
}

.target-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(900px, 100%);
  margin-top: 72px;
}

.target-proof-card {
  position: relative;
  min-height: 156px;
  padding: 66px 20px 20px;
  border: 1px solid rgba(199, 148, 62, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(43, 46, 53, 0.08);
  backdrop-filter: blur(14px);
}

.target-proof-card img {
  position: absolute;
  left: 18px;
  top: -46px;
  width: 112px;
  height: 104px;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 14px 14px rgba(43, 46, 53, 0.13));
}

.target-proof-card h2 {
  margin: 0;
  color: #272b33;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.target-proof-card p {
  margin: 10px 0 0;
  color: #646a73;
  font-size: 14px;
  line-height: 1.42;
}

.target-cta-copy {
  max-width: 880px;
  margin: 24px 0 0;
  color: #343841;
  font-size: 18px;
  line-height: 1.45;
}

.target-cta-copy strong {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(199, 148, 62, 0.42);
  text-decoration-thickness: 8px;
  text-underline-offset: -4px;
}

.target-quiz-cta {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: min(840px, 100%);
  margin-top: 18px;
}

.target-quiz-button {
  min-width: 330px;
  min-height: 66px;
  border-radius: 20px;
  font-size: 17px;
}

.target-timer {
  width: 360px;
  padding: 12px 14px;
  border: 1px solid rgba(199, 148, 62, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(43, 46, 53, 0.07);
  backdrop-filter: blur(14px);
}

.target-timer-title {
  display: block;
  margin-bottom: 8px;
  color: #30343d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
}

.target-time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.target-time-grid span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(43, 46, 53, 0.08);
  border-radius: 12px;
  background: #f9f7f1;
}

.target-time-grid strong {
  color: #2b2e35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.target-time-grid small {
  margin-top: 3px;
  color: #777b84;
  font-size: 10px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .quiz-hero {
    min-height: auto;
  }

  .quiz-hero .target-hero-content {
    width: min(100% - 56px, 920px);
  }

  .quiz-hero h1,
  .target-subtitle,
  .target-cta-copy {
    max-width: 720px;
  }

  .target-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .target-quiz-cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  .target-page {
    --target-container: calc(100% - 32px);
    --target-shell: var(--target-container);
  }

  .alpha-footer-inner,
  .alpha-footer-bottom {
    width: calc(100% - 32px);
  }

  .alpha-footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 0 28px;
  }

  .alpha-footer-logo {
    padding: 0;
  }

  .alpha-footer-logo img {
    width: min(208px, 70vw);
  }

  .target-header {
    position: relative;
    min-height: auto;
    padding: 0;
  }

  .target-header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    width: var(--target-container);
    min-height: auto;
    padding: 18px 0;
  }

  .target-brand,
  .target-brand img {
    width: 208px;
  }

  .target-phone {
    justify-self: start;
  }

  .target-header-button {
    width: 100%;
  }

  .quiz-hero {
    padding: 0 0 34px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f5f2ec 100%);
  }

  .quiz-hero::after,
  .quiz-hero .target-hero-media {
    display: none;
  }

  .quiz-hero .target-hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
  }

  .quiz-hero .target-eyebrow {
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 11px;
  }

  .quiz-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.04;
  }

  .target-desktop-break {
    display: none;
  }

  .target-hero-mobile-media {
    display: block;
    width: 100%;
    height: 280px;
    margin: 22px auto 0;
    border-radius: 22px;
    object-fit: cover;
    object-position: 70% center;
    box-shadow: 0 18px 44px rgba(43, 46, 53, 0.12);
  }

  .target-subtitle {
    max-width: 100%;
    margin-top: 20px;
    font-size: 17px;
  }

  .target-proof-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 56px;
    margin-top: 68px;
    text-align: left;
  }

  .target-proof-card {
    min-height: 142px;
  }

  .target-cta-copy {
    max-width: 100%;
    margin-top: 22px;
    font-size: 16px;
    text-align: left;
  }

  .target-quiz-cta {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .target-quiz-button,
  .target-timer {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .target-timer {
    text-align: left;
  }

  .target-time-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Open quiz screen based on selected Product Design visual. */
.open-quiz-hero {
  min-height: 814px;
  padding-top: 92px;
  padding-bottom: 24px;
  background: #fbfaf7;
}

.open-quiz-hero::after {
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.99) 29%, rgba(255, 255, 255, 0.88) 43%, rgba(255, 255, 255, 0.28) 64%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, #fbfaf7 0%, rgba(251, 250, 247, 0.84) 10%, rgba(251, 250, 247, 0) 32%);
}

.open-quiz-hero .target-hero-media {
  width: 100%;
  transform: none;
  object-position: 86% center;
  filter: saturate(0.98) contrast(1.01);
}

.open-quiz-hero .target-hero-content {
  width: var(--target-container);
  padding-top: 42px;
}

.open-quiz-copy {
  max-width: 675px;
}

.open-quiz-hero .target-eyebrow {
  width: fit-content;
  margin: 0 0 28px;
  padding: 9px 16px;
  border: 1px solid rgba(199, 148, 62, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--target-gold-dark);
  box-shadow: 0 12px 28px rgba(69, 55, 34, 0.04);
}

.open-quiz-hero .target-eyebrow::before {
  display: none;
}

.open-quiz-hero h1 {
  max-width: 650px;
  color: #292c35;
  font-size: clamp(42px, 3.7vw, 58px);
  font-weight: 800;
  line-height: 1.08;
}

.open-quiz-hero .target-subtitle {
  max-width: 545px;
  margin-top: 22px;
  color: #555b66;
  font-size: 19px;
  line-height: 1.55;
}

.open-quiz-workspace {
  display: grid;
  grid-template-columns: minmax(0, 824px) 284px;
  gap: 20px;
  align-items: stretch;
  width: min(1128px, 100%);
  margin-top: 60px;
}

.open-quiz-panel,
.risk-card,
.situation-card,
.result-card,
.final-cta {
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(41, 44, 53, 0.07);
}

.open-quiz-panel {
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.quiz-row {
  display: grid;
  grid-template-columns: 28px minmax(210px, 1fr) 390px;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 0 24px;
  border-top: 1px solid rgba(41, 44, 53, 0.09);
}

.quiz-row:first-child {
  border-top: 0;
}

.quiz-number {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #fbf3e7;
  color: var(--target-gold-dark);
  font-size: 10px;
  font-weight: 700;
}

.quiz-row p {
  margin: 0;
  color: #292c35;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quiz-option {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(41, 44, 53, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #343841;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.quiz-option:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 148, 62, 0.35);
}

.quiz-option.is-active {
  border-color: rgba(199, 148, 62, 0.42);
  background: #fff9f0;
}

.risk-card {
  padding: 26px 23px 18px;
  backdrop-filter: blur(16px);
}

.risk-card h2,
.risk-card h3 {
  margin: 0;
  color: #555b66;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.open-quiz-section {
  position: relative;
  overflow: hidden;
  padding: 46px 0 34px;
  background: #fbfbfa;
}

.open-quiz-section-inner {
  position: relative;
  width: var(--target-container);
  min-height: 850px;
  margin: 0 auto;
}

.open-quiz-section-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.open-quiz-section-copy .target-eyebrow {
  width: fit-content;
  margin: 0 0 30px;
  padding: 8px 14px;
  border: 1px solid rgba(199, 148, 62, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--target-gold-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 28px rgba(69, 55, 34, 0.04);
}

.open-quiz-section-copy .target-eyebrow::before {
  display: none;
}

.open-quiz-section-copy h2 {
  max-width: 560px;
  margin: 0;
  color: #292c35;
  font-size: clamp(38px, 2.85vw, 48px);
  font-weight: 800;
  line-height: 1.12;
}

.open-quiz-section-copy p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
  color: #555b66;
  font-size: 16px;
  line-height: 1.48;
}

.open-quiz-scene {
  position: absolute;
  top: -84px;
  right: auto;
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: 1040px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  opacity: 1;
  pointer-events: none;
  transform: translateX(-50%);
  mask-image: none;
}

.open-quiz-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fbfbfa 0%, rgba(251, 251, 250, 0.98) 28%, rgba(251, 251, 250, 0.72) 39%, rgba(251, 251, 250, 0.24) 53%, rgba(251, 251, 250, 0.03) 68%, rgba(251, 251, 250, 0) 100%),
    linear-gradient(0deg, rgba(251, 251, 250, 0.18) 0%, rgba(251, 251, 250, 0.06) 16%, rgba(251, 251, 250, 0) 38%);
}

.open-quiz-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: none;
}

.open-quiz-section .open-quiz-workspace {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 858px) 270px;
  gap: 20px;
  width: min(1148px, 100%);
  margin-top: 56px;
}

.open-quiz-footer {
  display: none;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: center;
  width: min(1128px, 100%);
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(41, 44, 53, 0.06);
}

.open-quiz-footer p {
  margin: 0;
  color: #292c35;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.open-quiz-footer .target-button {
  min-width: 0;
  width: 100%;
}

.open-quiz-section .open-quiz-panel,
.open-quiz-section .risk-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(41, 44, 53, 0.08);
}

.open-quiz-section .quiz-row {
  grid-template-columns: 28px minmax(240px, 1fr) 360px;
  gap: 16px;
  min-height: 71px;
  padding: 0 20px;
}

.open-quiz-section .quiz-row p {
  font-size: 13px;
  line-height: 1.35;
}

.open-quiz-section .quiz-options {
  gap: 12px;
}

.open-quiz-section .quiz-option {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.open-quiz-section .risk-card {
  padding: 23px 20px 17px;
}

.open-quiz-section .risk-scale {
  min-height: 152px;
  margin-top: 20px;
}

.open-quiz-section .risk-bar {
  width: 17px;
  height: 142px;
}

.open-quiz-section .risk-labels {
  padding: 6px 0 8px;
  font-size: 12px;
}

.open-quiz-section .risk-result {
  margin-top: 14px;
  padding: 14px 12px;
}

.open-quiz-section .risk-result strong {
  font-size: 12px;
}

.open-quiz-section .risk-result p {
  font-size: 11px;
}

.risk-scale {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 20px;
  min-height: 170px;
  margin-top: 22px;
}

.risk-bar {
  position: relative;
  display: block;
  width: 20px;
  height: 158px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f14b4b 0%, #f1932c 38%, #e5c64c 61%, #51bd75 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.risk-marker {
  position: absolute;
  top: var(--risk-marker-position, 50%);
  left: -4px;
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: #343841;
  transform: translateY(-50%);
  transition: top 260ms ease, background-color 260ms ease;
}

.risk-labels {
  display: grid;
  align-content: space-between;
  padding: 7px 0 9px;
  color: #545a64;
  font-size: 13px;
  line-height: 1;
}

.risk-labels span {
  transition: color 220ms ease, font-weight 220ms ease;
}

.risk-card[data-risk-level="high"] .risk-labels span:nth-child(1),
.risk-card[data-risk-level="medium"] .risk-labels span:nth-child(2),
.risk-card[data-risk-level="low"] .risk-labels span:nth-child(3) {
  color: #343841;
  font-weight: 800;
}

.risk-card[data-risk-level="high"] .risk-result {
  background: #fff1ee;
}

.risk-card[data-risk-level="low"] .risk-result {
  background: #eef9f2;
}

.risk-result {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-top: 16px;
  padding: 18px 16px;
  border-radius: 8px;
  background: #fbf6ef;
}

.risk-result span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--target-gold-dark);
  font-size: 22px;
}

.risk-result strong {
  color: #343841;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.risk-result p {
  grid-column: 1 / -1;
  margin: 0;
  color: #666b75;
  font-size: 12px;
  line-height: 1.45;
}

.target-section {
  width: var(--target-container);
  margin: 0 auto;
  padding: 76px 0 0;
  color: var(--target-text);
}

.situations-section {
  padding-top: 70px;
}

.target-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 31px;
}

.target-section-head.compact {
  align-items: flex-start;
}

.target-section .target-eyebrow {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--target-gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.target-section .target-eyebrow::before {
  display: block;
}

.target-section h2 {
  margin: 0;
  color: #292c35;
  font-size: clamp(31px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}

.target-section .target-all-services {
  margin: 0 0 9px;
  color: #6d727d;
  font-size: 14px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.situation-card {
  min-height: 230px;
  padding: 32px 24px 25px;
}

.situation-card span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fbf3e8;
  color: var(--target-gold-dark);
  font-size: 27px;
}

.situation-card h3,
.result-card h3 {
  margin: 0;
  color: #292c35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.situation-card p,
.result-card p {
  margin: 20px 0 0;
  color: #676d77;
  font-size: 15px;
  line-height: 1.5;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  min-height: 366px;
  padding: 24px;
  overflow: hidden;
}

.result-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 19px;
  filter: drop-shadow(0 18px 16px rgba(41, 44, 53, 0.13));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 24px;
}

.stat-item {
  display: grid;
  grid-template-columns: 54px auto;
  column-gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 0 28px;
  border-left: 1px solid rgba(41, 44, 53, 0.12);
}

.stat-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat-item i {
  grid-row: 1 / span 2;
  color: var(--target-gold-dark);
  font-size: 46px;
  line-height: 1;
}

.stat-item strong {
  color: var(--target-gold-dark);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.stat-item span {
  max-width: 190px;
  color: #4e535d;
  font-size: 13px;
  line-height: 1.25;
}

.final-cta {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 352px;
  gap: 22px;
  align-items: center;
  margin: 42px 0 36px;
  padding: 24px;
}

.final-cta-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fbf3e8;
  color: var(--target-gold-dark);
  font-size: 28px;
}

.final-cta h2 {
  max-width: 660px;
  margin: 0;
  color: #292c35;
  font-size: clamp(22px, 1.8vw, 27px);
  font-weight: 700;
  line-height: 1.25;
}

.final-cta p {
  margin: 10px 0 0;
  color: #676d77;
  font-size: 15px;
}

.final-cta-actions {
  display: grid;
  justify-items: center;
  gap: 13px;
}

.final-cta-actions .target-button {
  width: 100%;
  min-width: 0;
}

.final-cta-actions small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777c86;
  font-size: 12px;
}

@media (max-width: 1280px) {
  .open-quiz-workspace {
    grid-template-columns: minmax(0, 1fr) 260px;
    width: min(1128px, 100%);
  }

  .quiz-row {
    grid-template-columns: 28px minmax(190px, 1fr) 330px;
    padding: 0 20px;
  }

  .quiz-options {
    gap: 10px;
  }

  .stat-item {
    padding: 0 18px;
  }
}

@media (max-width: 1080px) {
  .open-quiz-hero {
    min-height: auto;
  }

  .open-quiz-hero::after {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 52%, rgba(255, 255, 255, 0.4) 100%),
      linear-gradient(0deg, #fbfaf7 0%, rgba(251, 250, 247, 0.74) 22%, rgba(251, 250, 247, 0) 45%);
  }

  .open-quiz-hero .target-hero-content {
    padding-top: 50px;
  }

  .open-quiz-workspace {
    grid-template-columns: 1fr;
    width: min(780px, 100%);
    margin-top: 54px;
  }

  .quiz-row {
    grid-template-columns: 28px minmax(180px, 1fr) 340px;
  }

  .risk-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 26px;
  }

  .risk-card h2 {
    grid-column: 1 / -1;
  }

  .risk-scale {
    margin-top: 0;
  }

  .risk-result {
    align-self: end;
    margin-top: 0;
  }

  .situation-grid,
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .result-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 230px;
  }

  .result-card img {
    height: 170px;
    margin: 0;
  }

  .result-card p {
    margin-top: 12px;
  }

  .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(41, 44, 53, 0.12);
    padding: 22px 16px 22px 0;
  }

  .stat-item:nth-child(-n+2) {
    border-top: 0;
  }

  .final-cta {
    grid-template-columns: 62px 1fr;
  }

  .final-cta-actions {
    grid-column: 2;
    justify-items: start;
    width: min(360px, 100%);
  }

  .open-quiz-scene {
    position: absolute;
    top: -72px;
    right: auto;
    left: 50%;
    width: 100vw;
    height: 880px;
    margin: 0;
    transform: translateX(-50%);
    mask-image: none;
  }

  .open-quiz-section .open-quiz-workspace {
    width: 100%;
    margin-top: 26px;
  }
}

@media (max-width: 860px) {
  .open-quiz-hero {
    padding: 0 0 38px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f6f4ef 100%);
  }

  .open-quiz-hero::after,
  .open-quiz-hero .target-hero-media {
    display: none;
  }

  .open-quiz-hero .target-hero-content {
    width: calc(100% - 32px);
    padding-top: 26px;
    text-align: center;
  }

  .open-quiz-copy {
    max-width: 100%;
  }

  .open-quiz-hero .target-eyebrow {
    justify-content: center;
    margin: 0 auto 17px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .open-quiz-hero h1 {
    max-width: 100%;
    font-size: clamp(35px, 10vw, 47px);
  }

  .open-quiz-hero .target-subtitle {
    max-width: 100%;
    margin-top: 17px;
    font-size: 16px;
  }

  .open-quiz-hero .target-hero-mobile-media {
    display: block;
    width: 100%;
    height: 278px;
    margin: 22px auto 0;
    border-radius: 14px;
    object-fit: cover;
    object-position: 72% center;
    box-shadow: 0 18px 44px rgba(41, 44, 53, 0.12);
  }

  .open-quiz-workspace {
    width: 100%;
    margin-top: 24px;
    text-align: left;
  }

  .quiz-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px 12px;
    min-height: auto;
    padding: 18px 14px;
  }

  .quiz-options {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quiz-option {
    min-height: 40px;
    padding: 0 7px;
    font-size: 12px;
  }

  .risk-card {
    display: block;
    padding: 22px 18px;
  }

  .risk-scale {
    min-height: 148px;
    margin-top: 18px;
  }

  .risk-bar {
    height: 140px;
  }

  .risk-result {
    margin-top: 16px;
  }

  .target-section {
    width: calc(100% - 32px);
    padding-top: 56px;
  }

  .target-section-head {
    display: block;
    margin-bottom: 22px;
  }

  .target-section .target-eyebrow {
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 10px;
  }

  .target-section h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .target-section .target-all-services {
    margin-top: 16px;
  }

  .situation-grid,
  .stats-row,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .situation-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .result-card {
    display: block;
    min-height: auto;
    padding: 22px;
  }

  .result-card img {
    width: 100%;
    height: 160px;
    margin: 0 0 16px;
  }

  .stat-item,
  .stat-item:first-child {
    border-top: 1px solid rgba(41, 44, 53, 0.12);
    padding: 20px 0;
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
    padding: 22px;
  }

  .final-cta-actions {
    grid-column: auto;
    width: 100%;
    justify-items: stretch;
  }

  .open-quiz-section {
    padding: 50px 0 38px;
  }

  .open-quiz-section-inner {
    width: calc(100% - 32px);
  }

  .open-quiz-section-copy {
    text-align: center;
  }

  .open-quiz-section-copy .target-eyebrow {
    justify-content: center;
    margin: 0 auto 17px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .open-quiz-section-copy h2 {
    font-size: clamp(34px, 9vw, 45px);
  }

  .open-quiz-section-copy p:last-child {
    max-width: 100%;
    margin-top: 17px;
    font-size: 16px;
  }

  .open-quiz-scene {
    height: 248px;
    border-radius: 14px;
  }

  .open-quiz-footer {
    grid-template-columns: 1fr;
    padding: 18px;
    text-align: center;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .open-quiz-section {
    padding: 40px 0 32px;
  }

  .open-quiz-section-inner {
    width: calc(100% - 32px);
    min-height: 528px;
  }

  .open-quiz-section-copy {
    max-width: 350px;
    text-align: left;
  }

  .open-quiz-section-copy .target-eyebrow {
    justify-content: flex-start;
    margin: 0 0 22px;
    padding: 7px 13px;
    font-size: 9px;
  }

  .open-quiz-section-copy h2 {
    max-width: 350px;
    font-size: 29px;
    line-height: 1.16;
  }

  .open-quiz-section-copy p:last-child {
    max-width: 355px;
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.48;
  }

  .open-quiz-scene {
    position: absolute;
    top: -40px;
    right: auto;
    left: 50%;
    width: 100vw;
    height: 470px;
    margin: 0;
    border-radius: 0;
    opacity: 1;
    transform: translateX(-50%);
    mask-image: none;
  }

  .open-quiz-scene::after {
    background:
      linear-gradient(90deg, #fbfbfa 0%, rgba(251, 251, 250, 0.98) 30%, rgba(251, 251, 250, 0.72) 42%, rgba(251, 251, 250, 0.22) 58%, rgba(251, 251, 250, 0.02) 74%, rgba(251, 251, 250, 0) 100%),
      linear-gradient(0deg, rgba(251, 251, 250, 0.18) 0%, rgba(251, 251, 250, 0.06) 18%, rgba(251, 251, 250, 0) 48%);
  }

  .open-quiz-scene img {
    width: 100%;
    object-position: right center;
    transform: none;
  }

  .open-quiz-section .open-quiz-workspace,
  .open-quiz-workspace {
    display: grid;
    grid-template-columns: 430px 140px;
    gap: 20px;
    width: 590px;
    margin-top: 44px;
    text-align: left;
  }

  .open-quiz-section .quiz-row,
  .quiz-row {
    grid-template-columns: 20px minmax(0, 1fr) 210px;
    gap: 10px;
    min-height: 58px;
    padding: 0 15px;
  }

  .quiz-number {
    width: 17px;
    height: 17px;
    font-size: 8px;
  }

  .open-quiz-section .quiz-row p,
  .quiz-row p {
    font-size: 10px;
    line-height: 1.34;
  }

  .open-quiz-section .quiz-options,
  .quiz-options {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
  }

  .open-quiz-section .quiz-option,
  .quiz-option {
    min-height: 26px;
    padding: 0 7px;
    font-size: 9px;
    border-radius: 4px;
  }

  .risk-card,
  .open-quiz-section .risk-card {
    display: block;
    padding: 18px 16px 14px;
  }

  .risk-card h3 {
    font-size: 8px;
  }

  .risk-scale,
  .open-quiz-section .risk-scale {
    grid-template-columns: 18px 1fr;
    gap: 12px;
    min-height: 112px;
    margin-top: 16px;
  }

  .risk-bar,
  .open-quiz-section .risk-bar {
    width: 13px;
    height: 105px;
  }

  .risk-marker {
    left: -4px;
    width: 22px;
    height: 2px;
  }

  .risk-labels,
  .open-quiz-section .risk-labels {
    padding: 4px 0 5px;
    font-size: 8px;
  }

  .risk-result,
  .open-quiz-section .risk-result {
    grid-template-columns: 22px 1fr;
    gap: 8px;
    margin-top: 12px;
    padding: 11px 10px;
    border-radius: 6px;
  }

  .risk-result span {
    width: 20px;
    height: 20px;
    font-size: 15px;
  }

  .risk-result strong,
  .open-quiz-section .risk-result strong {
    font-size: 9px;
  }

  .risk-result p,
  .open-quiz-section .risk-result p {
    font-size: 8px;
    line-height: 1.42;
  }
}

@media (max-width: 640px) {
  .open-quiz-section-inner {
    min-height: auto;
  }

  .open-quiz-section .open-quiz-scene {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: 248px;
    margin-top: 24px;
    border-radius: 14px;
    transform: none;
  }

  .open-quiz-section .open-quiz-scene::after {
    background:
      linear-gradient(90deg, rgba(251, 251, 250, 0.84) 0%, rgba(251, 251, 250, 0.22) 58%, rgba(251, 251, 250, 0) 100%),
      linear-gradient(0deg, #fbfbfa 0%, rgba(251, 251, 250, 0.4) 35%, rgba(251, 251, 250, 0) 72%);
  }

  .open-quiz-section .open-quiz-scene img {
    width: 100%;
    object-position: center right;
    transform: none;
  }
}

/* Sequential Product Design quiz target. */
.open-quiz-section .open-quiz-workspace {
  grid-template-columns: minmax(0, 1fr) 252px 278px;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  margin-top: 56px;
}

.step-quiz-top {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px 24px 14px;
}

.step-quiz-top > span {
  color: #5b616b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.step-quiz-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.step-quiz-progress span {
  height: 5px;
  border-radius: 999px;
  background: rgba(41, 44, 53, 0.1);
  transition: background 180ms ease;
}

.step-quiz-progress span.is-active {
  background: var(--target-gold-dark);
}

.step-quiz-body {
  display: grid;
  gap: 24px;
  padding: 28px 24px 26px;
}

.step-quiz-body h3 {
  margin: 0;
  color: #292c35;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.22;
}

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

.step-answer {
  display: grid;
  min-height: 146px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(41, 44, 53, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #292c35;
  cursor: pointer;
  font-family: var(--target-font);
  font-size: 18px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.step-answer i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(41, 44, 53, 0.24);
  border-radius: 50%;
  color: #292c35;
  font-size: 27px;
  font-weight: 400;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.step-answer:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 148, 62, 0.36);
  box-shadow: 0 16px 34px rgba(41, 44, 53, 0.06);
}

.step-answer.is-active {
  border-color: rgba(199, 148, 62, 0.74);
  background: #fffaf2;
  box-shadow: inset 0 0 0 1px rgba(199, 148, 62, 0.14);
}

.step-answer.is-active i {
  border-color: var(--target-gold-dark);
  color: var(--target-gold-dark);
  background: rgba(199, 148, 62, 0.06);
}

.step-complete-message {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
  min-height: 146px;
  padding: 26px;
  border: 1px solid rgba(199, 148, 62, 0.34);
  border-radius: 8px;
  background: #fffaf2;
}

.step-complete-message i {
  grid-row: span 2;
  color: var(--target-gold-dark);
  font-size: 52px;
}

.step-complete-message strong {
  color: #292c35;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.step-complete-message span {
  color: #626873;
  font-size: 15px;
  line-height: 1.45;
}

.step-quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 24px 18px;
}

.step-back-button,
.step-next-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--target-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.step-back-button {
  min-width: 138px;
  border: 1px solid rgba(41, 44, 53, 0.13);
  background: rgba(255, 255, 255, 0.78);
  color: #292c35;
}

.step-next-button {
  min-width: 190px;
  border: 1px solid rgba(154, 110, 39, 0.28);
  background: linear-gradient(135deg, #d0a04a, #bd8732);
  color: #fff;
  box-shadow: 0 12px 28px rgba(166, 117, 43, 0.18);
}

.step-back-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.step-next-button:hover,
.step-back-button:not(:disabled):hover {
  transform: translateY(-1px);
}

.step-quiz-safe {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 24px 22px;
  color: #858a93;
  font-size: 12px;
  line-height: 1.35;
}

.step-quiz-safe i {
  color: #9298a2;
  font-size: 16px;
}

.step-risk-card {
  display: grid;
  align-content: start;
  padding: 31px 23px 24px;
}

.step-risk-card h3,
.step-final-card h3 {
  margin: 0;
  color: #292c35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.step-risk-card > strong {
  display: block;
  margin-top: 12px;
  color: var(--target-gold-dark);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.step-risk-card .risk-scale {
  min-height: 181px;
  margin-top: 26px;
}

.step-risk-card .risk-bar {
  width: 20px;
  height: 176px;
}

.step-risk-card .risk-labels {
  font-size: 13px;
}

.step-risk-card > p {
  margin: 16px 0 0;
  color: #6e7480;
  font-size: 12px;
  line-height: 1.48;
}

.step-final-card {
  display: grid;
  align-content: start;
  gap: 17px;
  padding: 31px 23px 23px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(41, 44, 53, 0.08);
}

.step-final-card p {
  margin: 0;
  color: #676d77;
  font-size: 14px;
  line-height: 1.55;
}

.step-final-card form {
  display: grid;
  gap: 12px;
}

.step-final-card label {
  display: grid;
  gap: 6px;
}

.step-final-card label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.step-final-card input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(41, 44, 53, 0.13);
  border-radius: 5px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.84);
  color: #292c35;
  font-family: var(--target-font);
  font-size: 14px;
  outline: none;
}

.step-final-card input:disabled,
.step-final-card button:disabled {
  opacity: 0.55;
  cursor: default;
}

.step-final-card input:focus {
  border-color: rgba(199, 148, 62, 0.65);
  box-shadow: 0 0 0 3px rgba(199, 148, 62, 0.12);
}

.step-final-card .target-button {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  gap: 10px;
  font-size: 15px;
}

.step-final-card small {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: #747a84;
  font-size: 12px;
  line-height: 1.45;
}

.step-final-card small i {
  color: #8f98a5;
  font-size: 25px;
}

.step-final-card.is-ready {
  border-color: rgba(199, 148, 62, 0.32);
  background: #fffdf9;
}

.open-quiz-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
}

.open-quiz-stats > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 68px;
  padding: 0 34px;
  border-left: 1px solid rgba(41, 44, 53, 0.12);
}

.open-quiz-stats > div:first-child {
  border-left: 0;
  padding-left: 24px;
}

.open-quiz-stats i {
  grid-row: span 2;
  color: var(--target-gold-dark);
  font-size: 42px;
}

.open-quiz-stats strong {
  color: var(--target-gold-dark);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.open-quiz-stats span {
  color: #626873;
  font-size: 12px;
  line-height: 1.34;
}

@media (max-width: 1280px) {
  .open-quiz-section .open-quiz-workspace {
    grid-template-columns: minmax(0, 1fr) 245px;
  }

  .step-final-card {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr) minmax(220px, 0.8fr);
    align-items: center;
  }

  .step-final-card form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) 220px;
    align-items: end;
  }
}

@media (max-width: 1080px) {
  .open-quiz-section .open-quiz-workspace {
    grid-template-columns: 1fr;
  }

  .step-final-card {
    grid-template-columns: 1fr;
  }

  .step-final-card form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) 220px;
  }

  .step-risk-card {
    grid-template-columns: minmax(0, 0.72fr) minmax(260px, 1fr);
    gap: 18px 26px;
  }

  .step-risk-card h3,
  .step-risk-card > strong,
  .step-risk-card > p {
    grid-column: 1;
  }

  .step-risk-card .risk-scale {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-top: 0;
  }

  .open-quiz-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .open-quiz-stats > div:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 860px) {
  .step-quiz-top {
    grid-template-columns: 1fr;
    padding: 22px 18px 10px;
  }

  .step-quiz-body {
    padding: 24px 18px 20px;
  }

  .step-quiz-body h3 {
    font-size: 22px;
  }

  .step-answer-grid {
    gap: 12px;
  }

  .step-answer {
    min-height: 112px;
    padding: 16px 10px;
    font-size: 15px;
  }

  .step-answer i {
    width: 42px;
    height: 42px;
    font-size: 23px;
  }

  .step-quiz-actions {
    padding: 10px 18px 16px;
  }

  .step-quiz-safe {
    padding: 0 18px 20px;
  }

  .step-risk-card,
  .step-final-card {
    padding: 22px 18px;
  }

  .step-risk-card {
    grid-template-columns: 1fr 1fr;
  }

  .step-risk-card .risk-scale {
    grid-column: 2;
  }

  .step-final-card form {
    grid-template-columns: 1fr;
  }

  .open-quiz-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .open-quiz-stats > div,
  .open-quiz-stats > div:first-child,
  .open-quiz-stats > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(41, 44, 53, 0.1);
    padding: 16px 0;
  }

  .open-quiz-stats > div:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  .open-quiz-section .open-quiz-workspace {
    margin-top: 22px;
  }

  .step-answer-grid {
    grid-template-columns: 1fr;
  }

  .step-answer {
    min-height: 74px;
    grid-template-columns: 46px 1fr;
    justify-items: start;
    text-align: left;
  }

  .step-quiz-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .step-back-button,
  .step-next-button {
    width: 100%;
  }

  .step-risk-card {
    display: block;
  }

  .step-risk-card .risk-scale {
    margin-top: 20px;
  }
}

.direction-block {
  padding: 58px 0 74px;
  background: #fbfbfa;
  color: var(--target-text);
}

.direction-shell {
  width: var(--target-container);
  margin: 0 auto;
}

.direction-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #9a9da4;
  font-size: 13px;
  line-height: 1;
}

.direction-breadcrumbs a,
.direction-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.direction-breadcrumbs span {
  color: var(--target-gold-dark);
}

.direction-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: 52px;
  align-items: center;
}

.direction-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #292c35;
  font-size: clamp(44px, 3.2vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.direction-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: #555b66;
  font-size: 16px;
  line-height: 1.55;
}

.direction-bullets {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.direction-bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #464b54;
  font-size: 14px;
  line-height: 1.42;
}

.direction-bullets i {
  color: var(--target-gold);
  font-size: 19px;
  line-height: 1.15;
}

.direction-hero-media {
  overflow: hidden;
  min-height: 348px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #eef0ef;
}

.direction-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 348px;
  object-fit: cover;
  object-position: center;
}

.direction-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 31px;
  border: 1px solid rgba(199, 148, 62, 0.48);
  border-radius: 4px;
  background: #fff;
}

.direction-tabs button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-left: 1px solid rgba(199, 148, 62, 0.35);
  background: transparent;
  color: #292c35;
  font-family: var(--target-font);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.direction-tabs button:first-child {
  border-left: 0;
}

.direction-tabs button i {
  font-size: 24px;
}

.direction-tabs button.is-active {
  background: linear-gradient(180deg, #d5a345 0%, #c79131 100%);
  color: #fff;
}

.direction-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.direction-service-card {
  display: grid;
  min-height: 244px;
  padding: 20px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(41, 44, 53, 0.04);
}

.direction-card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #fbf6ee;
  color: var(--target-gold-dark);
  font-size: 24px;
}

.direction-service-card h3 {
  min-height: 46px;
  margin: 0;
  color: #292c35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.direction-service-card p {
  margin: 12px 0 18px;
  color: #626873;
  font-size: 14px;
  line-height: 1.43;
}

.direction-card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(41, 44, 53, 0.09);
  color: #6c717b;
  font-size: 13px;
  line-height: 1.25;
}

.direction-card-meta span:last-child {
  text-align: right;
}

.direction-card-meta strong {
  display: block;
  margin-top: 3px;
  color: #292c35;
  font-size: 14px;
  font-weight: 800;
}

.direction-service-card button {
  min-height: 40px;
  margin-top: 18px;
  border: 1px solid rgba(199, 148, 62, 0.65);
  border-radius: 4px;
  background: #fff;
  color: var(--target-gold-dark);
  font-family: var(--target-font);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.direction-service-card button:hover {
  background: var(--target-gold);
  color: #fff;
}

.direction-consult {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr) minmax(0, 0.65fr) 220px;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 22px;
  border: 1px solid rgba(199, 148, 62, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.direction-consult-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.direction-consult-person > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef3f1;
  color: var(--target-gold-dark);
  font-size: 30px;
}

.direction-consult strong,
.direction-consult-point strong {
  display: block;
  color: #292c35;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.direction-consult p,
.direction-consult-point span {
  margin: 5px 0 0;
  color: #6b7079;
  font-size: 13px;
  line-height: 1.35;
}

.direction-consult-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border-left: 1px solid rgba(41, 44, 53, 0.1);
  padding-left: 20px;
}

.direction-consult-point i {
  color: var(--target-gold-dark);
  font-size: 28px;
}

.direction-consult .target-button {
  min-width: 0;
  width: 100%;
  min-height: 46px;
}

.direction-benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 36px;
  align-items: start;
  margin-top: 30px;
}

.direction-benefits h2 {
  margin: 0 0 28px;
  color: #292c35;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.direction-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.direction-benefit-grid div {
  display: grid;
  gap: 9px;
}

.direction-benefit-grid i {
  color: var(--target-gold-dark);
  font-size: 30px;
}

.direction-benefit-grid strong {
  color: #292c35;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.direction-benefit-grid p {
  margin: 0;
  color: #69707a;
  font-size: 13px;
  line-height: 1.45;
}

.direction-download {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
}

.direction-download > i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fbf6ee;
  color: var(--target-gold-dark);
  font-size: 24px;
}

.direction-download strong {
  color: #292c35;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.direction-download p {
  margin: 0;
  color: #69707a;
  font-size: 13px;
  line-height: 1.45;
}

.direction-download a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--target-gold-dark);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1280px) {
  .direction-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 32px;
  }

  .direction-copy h2 {
    font-size: clamp(40px, 4vw, 52px);
  }

  .direction-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-consult {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr) 220px;
  }

  .direction-consult-point:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 860px) {
  .direction-block {
    padding: 44px 0 58px;
  }

  .direction-hero,
  .direction-benefits {
    grid-template-columns: 1fr;
  }

  .direction-hero-media {
    min-height: 260px;
    order: -1;
  }

  .direction-hero-media img {
    min-height: 260px;
  }

  .direction-copy h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .direction-tabs button {
    min-height: 54px;
    font-size: 17px;
  }

  .direction-consult {
    grid-template-columns: 1fr;
  }

  .direction-consult-point {
    border-left: 0;
    border-top: 1px solid rgba(41, 44, 53, 0.1);
    padding: 16px 0 0;
  }

  .direction-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .direction-breadcrumbs {
    flex-wrap: wrap;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .direction-copy h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .direction-copy p {
    font-size: 14px;
  }

  .direction-tabs {
    grid-template-columns: 1fr;
  }

  .direction-tabs button {
    border-left: 0;
    border-top: 1px solid rgba(199, 148, 62, 0.35);
  }

  .direction-tabs button:first-child {
    border-top: 0;
  }

  .direction-service-grid,
  .direction-benefit-grid {
    grid-template-columns: 1fr;
  }

  .direction-card-meta {
    grid-template-columns: 1fr;
  }

  .direction-card-meta span:last-child {
    text-align: left;
  }
}

.service-directory-section {
  padding: 74px 0 82px;
  background: #fbfbfa;
  color: var(--target-text);
}

.service-directory-shell {
  width: var(--target-container);
  margin: 0 auto;
}

.service-directory-head {
  margin-bottom: 27px;
}

.service-directory-head h2 {
  margin: 0;
  color: #292c35;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.service-directory-head p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #626873;
  font-size: 17px;
  line-height: 1.5;
}

.service-directory-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(41, 44, 53, 0.13);
  border-radius: 8px;
  background: #fff;
}

.service-directory-tabs button {
  min-height: 56px;
  border: 0;
  border-left: 1px solid rgba(41, 44, 53, 0.13);
  background: transparent;
  color: #292c35;
  -webkit-text-fill-color: #292c35;
  font-family: var(--target-font);
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.service-directory-tabs button:first-child {
  border-left: 0;
}

.service-directory-tabs button:hover,
.service-directory-tabs button.is-active {
  background: linear-gradient(180deg, #d2a044 0%, #bd8730 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 700;
}

.service-directory-panel {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  min-height: 620px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(199, 148, 62, 0.42);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(41, 44, 53, 0.11);
}

.service-directory-side {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 24px;
  min-height: 100%;
  border-right: 1px solid rgba(199, 148, 62, 0.38);
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
}

.service-directory-side > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(199, 148, 62, 0.3);
  border-radius: 50%;
  color: var(--target-gold-dark);
  font-size: 31px;
}

.service-directory-side span {
  color: #292c35;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.service-directory-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(var(--directory-rows, 12), minmax(58px, auto));
  grid-auto-flow: column;
  align-content: start;
  column-gap: 48px;
  padding: 28px 46px 32px 42px;
  background:
    radial-gradient(circle at 86% 42%, rgba(199, 148, 62, 0.045), transparent 20%),
    #fff;
}

.service-directory-link {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 20px;
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 0;
  color: #1f232b;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.32;
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
}

.service-directory-link i {
  color: var(--target-gold-dark);
  font-size: 22px;
  line-height: 1;
}

.service-directory-link .service-directory-arrow {
  color: #292c35;
  font-size: 24px;
  justify-self: end;
  transition: color 150ms ease, transform 150ms ease;
}

.service-directory-link:hover {
  color: var(--target-gold-dark);
  transform: translateX(2px);
}

.service-directory-link:hover .service-directory-arrow {
  color: var(--target-gold-dark);
  transform: translateX(3px);
}

.faq-section {
  padding: 44px 0 76px;
  background:
    linear-gradient(180deg, #fbfbfa 0%, #f8f8f6 100%);
  color: var(--target-text);
}

.faq-shell {
  width: var(--target-container);
  margin: 0 auto;
}

.faq-section .target-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 10px 18px;
  border: 1px solid rgba(199, 148, 62, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--target-gold-dark);
  box-shadow: 0 12px 30px rgba(41, 44, 53, 0.04);
}

.faq-section .target-eyebrow::before {
  display: none;
}

.faq-section h2 {
  max-width: none;
  margin: 0;
  color: #292c35;
  font-size: clamp(36px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.faq-stage-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-bottom: 1px solid rgba(41, 44, 53, 0.18);
}

.faq-stage-tabs button {
  position: relative;
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 14px;
  padding: 0 0 20px;
  border: 0;
  background: transparent;
  color: #8a909a;
  font-family: var(--target-font);
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-stage-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(170px, 72%);
  height: 2px;
  background: transparent;
}

.faq-stage-tabs span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid rgba(41, 44, 53, 0.18);
  border-radius: 50%;
  background: #fff;
  color: #8a909a;
  font-size: 14px;
  line-height: 1;
}

.faq-stage-tabs button:hover,
.faq-stage-tabs button.is-active {
  color: var(--target-gold-dark);
}

.faq-stage-tabs button.is-active::after {
  background: var(--target-gold-dark);
}

.faq-stage-tabs button.is-active span {
  border-color: var(--target-gold-dark);
  background: linear-gradient(135deg, #d0a04a, #bd8732);
  color: #fff;
}

.faq-stage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 46px;
  align-items: start;
  margin-top: 40px;
}

.faq-stage-panel[hidden] {
  display: none;
}

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

.faq-accordion-card {
  overflow: hidden;
  min-height: 484px;
  border: 1px solid rgba(41, 44, 53, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(41, 44, 53, 0.05);
}

.faq-accordion-card details {
  border-top: 1px solid rgba(41, 44, 53, 0.1);
}

.faq-accordion-card details:first-child {
  border-top: 0;
}

.faq-accordion-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 23px 22px;
  color: #292c35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-accordion-card summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-card summary span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  justify-self: end;
  color: var(--target-gold-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-icon-minus {
  display: none;
}

.faq-accordion-card details[open] .faq-icon-plus {
  display: none;
}

.faq-accordion-card details[open] .faq-icon-minus {
  display: inline-block;
}

.faq-accordion-card p {
  margin: -3px 22px 0;
  color: #626873;
  font-size: 15px;
  line-height: 1.58;
}

.faq-accordion-card p + p {
  margin-top: 12px;
}

.faq-accordion-card details[open] {
  padding-bottom: 22px;
}

.faq-prep-card {
  position: relative;
  min-height: 484px;
  padding: 12px 0 0 48px;
  border-left: 1px solid rgba(41, 44, 53, 0.13);
}

.faq-prep-card h3 {
  width: fit-content;
  margin: 0 0 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--target-gold);
  color: #292c35;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.faq-prep-card ul {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-prep-card li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #626873;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.42;
}

.faq-prep-card li i {
  color: var(--target-gold-dark);
  font-size: 24px;
  line-height: 1.05;
}

.faq-prep-card .target-button {
  width: 100%;
  min-height: 58px;
  margin-top: 34px;
}

.faq-prep-card p {
  margin: 19px 0 0;
  color: #8a909a;
  font-size: 14px;
  line-height: 1.45;
}

.faq-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.58fr) 318px;
  gap: 32px;
  align-items: center;
  margin-top: 44px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(41, 44, 53, 0.13);
}

.faq-contact-copy,
.faq-phone-link {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.faq-contact-copy > i {
  color: var(--target-gold-dark);
  font-size: 41px;
  line-height: 1;
}

.faq-contact-copy strong,
.faq-phone-link strong {
  display: block;
  margin-bottom: 6px;
  color: #292c35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.faq-contact-copy span,
.faq-phone-link span {
  color: #777d86;
  font-size: 14px;
  line-height: 1.45;
}

.faq-phone-link {
  color: #292c35;
  text-decoration: none;
}

.faq-phone-link > i {
  justify-self: end;
  color: #292c35;
  font-size: 27px;
  line-height: 1;
}

.faq-outline-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid var(--target-gold-dark);
  border-radius: 6px;
  background: transparent;
  color: var(--target-gold-dark);
  font-family: var(--target-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq-outline-button:hover {
  background: rgba(199, 148, 62, 0.08);
  transform: translateY(-1px);
}

.service-detail-page .target-header {
  position: sticky;
  border-bottom: 1px solid rgba(41, 44, 53, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.service-detail {
  background: #fbfbfa;
  color: var(--target-text);
}

.service-detail-hero,
.service-detail-body {
  width: var(--target-container);
  margin: 0 auto;
}

.service-detail-hero {
  padding: 48px 0 62px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: start;
}

.service-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--target-gold-dark);
  font-size: 14px;
  font-weight: 800;
}

.service-detail-copy .target-eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(199, 148, 62, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--target-gold-dark);
  font-size: 11px;
}

.service-detail-copy .target-eyebrow::before {
  display: none;
}

.service-detail h1 {
  max-width: 850px;
  margin: 0;
  color: #292c35;
  font-size: clamp(44px, 3.5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
}

.service-detail-copy > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #565c66;
  font-size: 18px;
  line-height: 1.52;
}

.service-detail-copy ul {
  display: grid;
  gap: 13px;
  max-width: 680px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-copy li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #3f454f;
  font-size: 15px;
  line-height: 1.45;
}

.service-detail-copy li i {
  color: var(--target-gold-dark);
  font-size: 20px;
}

.service-detail-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.service-detail-card,
.service-detail-related {
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(41, 44, 53, 0.07);
}

.service-detail-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.service-detail-card h2,
.service-detail-related h2,
.service-detail-body h2 {
  margin: 0;
  color: #292c35;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.service-detail-card p {
  margin: 0;
  color: #626873;
  font-size: 14px;
  line-height: 1.5;
}

.service-detail-card dl {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
}

.service-detail-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(41, 44, 53, 0.1);
}

.service-detail-card dt {
  color: #737984;
  font-size: 13px;
}

.service-detail-card dd {
  margin: 0;
  color: #292c35;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.service-detail-card .target-button {
  width: 100%;
  min-width: 0;
}

.service-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  padding: 0 0 84px;
}

.service-detail-content {
  display: grid;
  gap: 34px;
  min-width: 0;
}

.service-detail-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-detail-steps article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
}

.service-detail-steps span {
  color: var(--target-gold-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-detail-steps strong {
  display: block;
  margin-top: 20px;
  color: #292c35;
  font-size: 17px;
  line-height: 1.25;
}

.service-detail-steps p {
  margin: 10px 0 0;
  color: #626873;
  font-size: 14px;
  line-height: 1.45;
}

.service-detail-related {
  position: sticky;
  top: 116px;
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding: 22px;
}

.service-detail-related div {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.service-detail-related a {
  display: block;
  padding: 10px 11px;
  border-radius: 5px;
  color: #424852;
  font-size: 13px;
  line-height: 1.35;
}

.service-detail-related a:hover,
.service-detail-related a.is-active {
  background: #fbf6ee;
  color: var(--target-gold-dark);
}

.service-seo-overview,
.service-faq,
.service-open-quiz {
  padding: 30px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(41, 44, 53, 0.06);
}

.service-seo-overview .target-eyebrow,
.service-faq .target-eyebrow,
.service-open-quiz .target-eyebrow {
  margin-bottom: 16px;
  color: var(--target-gold-dark);
  font-size: 11px;
}

.service-seo-text {
  display: grid;
  gap: 17px;
  margin-top: 20px;
}

.service-seo-text p {
  margin: 0;
  color: #555d68;
  font-size: 16px;
  line-height: 1.72;
}

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

.service-seo-grid article {
  min-height: 284px;
  padding: 24px;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 250, 244, 0.82)),
    #fff;
}

.service-seo-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #fbf6ee;
  color: var(--target-gold-dark);
  font-size: 24px;
}

.service-seo-grid h3 {
  margin: 0;
  color: #292c35;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.service-seo-grid ul {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-seo-grid li {
  position: relative;
  padding-left: 19px;
  color: #565c66;
  font-size: 14px;
  line-height: 1.48;
}

.service-seo-grid li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--target-gold-dark);
}

.service-faq h2,
.service-open-quiz h2 {
  margin: 0;
  color: #292c35;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.16;
}

.service-faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-faq details {
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fbfbfa;
}

.service-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #292c35;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--target-gold-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.service-faq details[open] summary::after {
  content: "-";
}

.service-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #626873;
  font-size: 15px;
  line-height: 1.62;
}

.service-open-quiz {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 0%, rgba(199, 148, 62, 0.12), transparent 32%),
    #fff;
}

.service-open-quiz-head {
  max-width: 760px;
}

.service-open-quiz-head > p:last-child {
  margin: 14px 0 0;
  color: #626873;
  font-size: 16px;
  line-height: 1.55;
}

.service-quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  margin-top: 24px;
}

.service-quiz-panel,
.service-quiz-result {
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(41, 44, 53, 0.06);
}

.service-quiz-row {
  display: grid;
  grid-template-columns: 32px minmax(180px, 1fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 16px 20px;
  border-top: 1px solid rgba(41, 44, 53, 0.08);
}

.service-quiz-row:first-child {
  border-top: 0;
}

.service-quiz-row > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #fbf2e3;
  color: var(--target-gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.service-quiz-row p {
  margin: 0;
  color: #292c35;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.service-quiz-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-quiz-options button {
  min-height: 42px;
  border: 1px solid rgba(41, 44, 53, 0.11);
  border-radius: 6px;
  background: #fff;
  color: #4b515b;
  cursor: pointer;
  font-family: var(--target-font);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.service-quiz-options button:hover,
.service-quiz-options button.is-active {
  border-color: rgba(199, 148, 62, 0.45);
  background: #fff8ed;
  color: #292c35;
}

.service-quiz-result {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

.service-quiz-result::before {
  content: "";
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #f0523c, #dfae33 52%, #4fbf73);
}

.service-quiz-result[data-risk-level="low"]::before {
  background: linear-gradient(180deg, #80cf8c, #4fbf73);
}

.service-quiz-result[data-risk-level="high"]::before {
  background: linear-gradient(180deg, #f0523c, #e77d32);
}

.service-quiz-result strong {
  color: #292c35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.service-quiz-result p {
  margin: 0;
  color: #626873;
  font-size: 14px;
  line-height: 1.5;
}

.service-quiz-result .target-button {
  width: 100%;
  min-width: 0;
  margin-top: 4px;
}

body.is-modal-open {
  overflow: hidden;
}

.consultation-modal[hidden] {
  display: none;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.consultation-modal.is-open {
  opacity: 1;
}

.consultation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 29, 0.48);
  backdrop-filter: blur(8px);
}

.consultation-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 32px;
  border: 1px solid rgba(199, 148, 62, 0.25);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(20, 23, 29, 0.28);
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.consultation-modal.is-open .consultation-dialog {
  transform: translateY(0);
}

.consultation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(41, 44, 53, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #292c35;
  cursor: pointer;
  font-size: 22px;
}

.consultation-dialog .target-eyebrow {
  margin-bottom: 16px;
  padding-right: 42px;
  color: var(--target-gold-dark);
  font-size: 11px;
}

.consultation-dialog h2 {
  margin: 0;
  color: #292c35;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
}

.consultation-dialog > p:not(.target-eyebrow) {
  margin: 14px 0 0;
  color: #626873;
  font-size: 15px;
  line-height: 1.55;
}

.consultation-dialog form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.consultation-dialog label {
  display: grid;
  gap: 8px;
  color: #292c35;
  font-size: 13px;
  font-weight: 800;
}

.consultation-dialog input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(41, 44, 53, 0.14);
  border-radius: 7px;
  padding: 0 15px;
  color: #292c35;
  font-family: var(--target-font);
  font-size: 15px;
  outline: none;
}

.consultation-dialog input:focus {
  border-color: rgba(199, 148, 62, 0.6);
  box-shadow: 0 0 0 3px rgba(199, 148, 62, 0.14);
}

.consultation-dialog .target-button {
  width: 100%;
  min-width: 0;
  margin-top: 4px;
}

.consultation-dialog small {
  color: #7c828c;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .service-directory-list {
    column-gap: 34px;
    padding: 24px 32px 28px;
  }

  .service-directory-link {
    font-size: 15px;
  }
}

@media (max-width: 860px) {
  .service-directory-head,
  .service-directory-panel,
  .service-detail-layout,
  .service-detail-body,
  .service-quiz-layout {
    grid-template-columns: 1fr;
  }

  .service-directory-side {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 148, 62, 0.38);
    grid-template-rows: 1fr;
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .service-directory-side > i {
    width: 34px;
    height: 34px;
    font-size: 21px;
  }

  .service-directory-side span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .service-directory-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .service-detail-related {
    position: static;
    max-height: none;
  }

  .service-detail-steps {
    grid-template-columns: 1fr;
  }

  .service-seo-grid {
    grid-template-columns: 1fr;
  }

  .service-quiz-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .service-quiz-options {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .service-directory-section {
    padding: 48px 0 60px;
  }

  .service-directory-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .service-directory-tabs button {
    min-height: 50px;
    font-size: 14px;
  }

  .service-directory-list {
    padding: 14px 18px 20px;
  }

  .service-directory-link {
    font-size: 13px;
    gap: 10px;
    min-height: 52px;
  }

  .service-detail-hero {
    padding: 32px 0 48px;
  }

  .service-detail h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .service-detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .service-seo-overview,
  .service-faq,
  .service-open-quiz {
    padding: 22px;
  }

  .service-seo-grid article {
    min-height: auto;
    padding: 20px;
  }

  .service-quiz-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .service-quiz-options {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .consultation-modal {
    align-items: end;
    padding: 12px;
  }

  .consultation-dialog {
    padding: 26px 20px 22px;
  }

  .consultation-dialog h2 {
    font-size: 28px;
  }
}

@media (max-width: 1280px) {
  .faq-stage-panel {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
  }

  .faq-columns {
    gap: 24px;
  }

  .faq-prep-card {
    padding-left: 32px;
  }

  .faq-contact-strip {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .faq-outline-button {
    grid-column: 1 / -1;
    width: min(360px, 100%);
    justify-self: end;
  }
}

@media (max-width: 1080px) {
  .faq-stage-panel {
    grid-template-columns: 1fr;
  }

  .faq-prep-card {
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(41, 44, 53, 0.13);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(41, 44, 53, 0.05);
  }

  .faq-prep-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-prep-card .target-button {
    width: min(320px, 100%);
  }
}

@media (max-width: 860px) {
  .faq-section {
    padding: 58px 0 60px;
  }

  .faq-section h2 {
    font-size: clamp(32px, 8vw, 46px);
  }

  .faq-stage-tabs {
    grid-template-columns: 1fr;
    margin-top: 28px;
    border: 1px solid rgba(41, 44, 53, 0.13);
    border-radius: 8px;
    background: #fff;
  }

  .faq-stage-tabs button {
    min-height: 56px;
    padding: 14px 18px;
    border-top: 1px solid rgba(41, 44, 53, 0.1);
  }

  .faq-stage-tabs button:first-child {
    border-top: 0;
  }

  .faq-stage-tabs button::after {
    display: none;
  }

  .faq-stage-panel {
    gap: 24px;
    margin-top: 24px;
  }

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

  .faq-accordion-card {
    min-height: auto;
  }

  .faq-prep-card ul {
    grid-template-columns: 1fr;
  }

  .faq-contact-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-phone-link > i {
    justify-self: start;
  }

  .faq-outline-button {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 48px 0 54px;
  }

  .faq-section .target-eyebrow {
    padding: 9px 14px;
    font-size: 12px;
  }

  .faq-stage-tabs button {
    font-size: 15px;
  }

  .faq-accordion-card summary {
    min-height: 64px;
    padding: 18px 16px;
    font-size: 15px;
  }

  .faq-accordion-card p {
    margin-right: 16px;
    margin-left: 16px;
    font-size: 14px;
  }

  .faq-prep-card {
    padding: 20px 16px;
  }

  .faq-prep-card h3 {
    font-size: 20px;
  }

  .faq-prep-card li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    font-size: 15px;
  }

  .faq-contact-copy,
  .faq-phone-link {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .faq-contact-copy > i {
    font-size: 32px;
  }

  .faq-phone-link > i {
    font-size: 23px;
  }

  .faq-contact-copy strong,
  .faq-phone-link strong {
    font-size: 16px;
  }
}
