:root {
  --navy: #071829;
  --navy-2: #0e2742;
  --ink: #152235;
  --burgundy: #8b1e3f;
  --burgundy-dark: #65122c;
  --gold: #d2a64d;
  --gold-soft: #ecd59e;
  --cream: #f6f0e5;
  --cream-2: #fbf8f1;
  --paper: #ffffff;
  --line: #dfe5eb;
  --muted: #5e6b7a;
  --success: #1f6a52;
  --shadow-sm: 0 10px 30px rgba(7, 24, 41, 0.09);
  --shadow-md: 0 24px 65px rgba(7, 24, 41, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(210, 166, 77, 0.6);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.2vw, 4.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: white;
  background: var(--burgundy);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.legal-strip {
  padding: 9px 20px;
  color: rgba(255, 255, 255, 0.82);
  background: #03101c;
  font-size: 0.72rem;
  font-weight: 650;
  text-align: center;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  z-index: 150;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 24, 41, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 48px;
  height: 48px;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0.045em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--burgundy);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.primary-nav a {
  color: #314154;
  font-size: 0.88rem;
  font-weight: 780;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--burgundy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: var(--burgundy);
  box-shadow: 0 12px 24px rgba(139, 30, 63, 0.22);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 16px 30px rgba(139, 30, 63, 0.28);
}

.btn-gold {
  color: #231a0a;
  background: var(--gold);
  box-shadow: 0 12px 24px rgba(210, 166, 77, 0.22);
}

.btn-gold:hover {
  background: #e1ba67;
}

.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(7, 24, 41, 0.2);
}

.btn-outline:hover {
  background: white;
  border-color: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: white;
  box-shadow: var(--shadow-sm);
}

.btn-link {
  min-height: auto;
  padding: 0;
  color: var(--burgundy);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-weight: 850;
}

.btn-link:hover {
  transform: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  background:
    radial-gradient(circle at 86% 8%, rgba(210, 166, 77, 0.18), transparent 27%),
    radial-gradient(circle at 18% 25%, rgba(139, 30, 63, 0.09), transparent 24%),
    linear-gradient(180deg, var(--cream-2), #ffffff 88%);
}

.hero::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -210px;
  content: "";
  border: 1px solid rgba(139, 30, 63, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(210, 166, 77, 0.035), 0 0 0 140px rgba(139, 30, 63, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 72px;
}

.hero h1 {
  max-width: 850px;
}

.hero h1 em {
  color: var(--burgundy);
  font-style: normal;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 32px;
  color: #405165;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  color: #3c4d61;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 24, 41, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.credential-chip svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.portrait-shell {
  position: absolute;
  inset: 0 28px 36px 38px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(7, 24, 41, 0.12);
  border-radius: 190px 190px 34px 34px;
  box-shadow: var(--shadow-md);
}

.portrait-shell::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(7, 24, 41, 0.42));
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  transform: scale(1.02);
}

.visual-card {
  position: absolute;
  z-index: 3;
  width: 260px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 24, 41, 0.1);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.visual-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.visual-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.visual-card-top {
  top: 64px;
  right: -12px;
}

.visual-card-bottom {
  left: 0;
  bottom: 0;
  color: white;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  border-color: rgba(255, 255, 255, 0.16);
}

.visual-card-bottom strong,
.visual-card-bottom span {
  color: white;
}

.visual-card-bottom span {
  color: rgba(255, 255, 255, 0.8);
}

.method-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.method-mini b {
  padding: 6px 5px;
  color: var(--navy);
  background: var(--cream);
  border-radius: 7px;
  font-size: 0.62rem;
  text-align: center;
  letter-spacing: 0.03em;
}

.trust-bar {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.trust-item {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 790;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 39px;
  height: 39px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--burgundy);
  background: #f9edf1;
  border-radius: 12px;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-cream {
  background: var(--cream-2);
}

.section-navy {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: white;
}

.section-navy .section-label {
  color: var(--gold-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .section-label {
  justify-content: center;
}

.section-head > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-navy .section-head > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.problem-grid,
.path-grid,
.value-grid,
.faq-grid,
.card-grid-2 {
  display: grid;
  gap: 22px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(7, 24, 41, 0.045);
}

.card::after {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -70px;
  bottom: -70px;
  content: "";
  background: rgba(210, 166, 77, 0.08);
  border-radius: 50%;
}

.card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.card p {
  color: var(--muted);
}

.path-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.path-card .path-top {
  min-height: 142px;
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.path-card:nth-child(2) .path-top {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.path-card:nth-child(3) .path-top {
  color: var(--navy);
  background: linear-gradient(135deg, #d5ad5c, #edcf8d);
}

.path-top small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.path-top h3 {
  margin: 0;
  color: inherit;
}

.path-card .path-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.path-card .path-body p {
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 860;
}

.card-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 80px;
}

.method-sticky {
  position: sticky;
  top: 130px;
}

.method-sticky p {
  font-size: 1.05rem;
}

.method-quote {
  margin-top: 30px;
  padding: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.method-step-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 900;
}

.method-step h3 {
  margin-bottom: 8px;
}

.method-step p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.method-step small {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 74px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3d4e61;
}

.check-list li::before {
  position: absolute;
  top: 0.17em;
  left: 0;
  width: 23px;
  height: 23px;
  display: grid;
  content: "✓";
  place-items: center;
  color: white;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.insight-panel {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 46px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.insight-panel::after {
  position: absolute;
  inset: auto -140px -180px auto;
  width: 440px;
  height: 440px;
  content: "";
  background: radial-gradient(circle, rgba(210, 166, 77, 0.32), transparent 66%);
}

.insight-panel .section-label {
  color: var(--gold-soft);
}

.insight-panel h2,
.insight-panel h3 {
  color: white;
}

.insight-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.insight-stat {
  position: relative;
  z-index: 2;
  margin: 34px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.insight-stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.insight-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 750;
}

.value-card {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.value-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  color: var(--burgundy);
}

.value-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.quote-section {
  padding: 92px 0;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
}

.quote-kicker {
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quote-section blockquote {
  margin: 0;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.quote-section blockquote span {
  color: var(--gold-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 48px;
  padding: 52px;
  color: white;
  background:
    linear-gradient(120deg, rgba(7, 24, 41, 0.96), rgba(14, 39, 66, 0.93)),
    url("assets/method-grid.svg") center/cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel h2 {
  color: white;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 7px 20px rgba(7, 24, 41, 0.035);
}

.faq-item summary {
  position: relative;
  padding: 24px 58px 24px 24px;
  color: var(--navy);
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  display: grid;
  content: "+";
  place-items: center;
  color: var(--burgundy);
  background: #f8edf1;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(210, 166, 77, 0.26), transparent 32%),
    linear-gradient(120deg, var(--navy), var(--navy-2));
}

.page-hero::after {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -90px;
  bottom: -220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.035), 0 0 0 140px rgba(255, 255, 255, 0.02);
}

.page-hero .container,
.page-hero .container-narrow {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 920px;
  color: white;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.page-hero .eyebrow {
  color: var(--gold-soft);
}

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

.breadcrumb {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 720;
}

.breadcrumb a:hover {
  color: white;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33px;
  width: 2px;
  content: "";
  background: var(--line);
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--burgundy);
  border: 7px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

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

.timeline-card p {
  color: var(--muted);
}

.profile-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1/1.08;
  object-fit: cover;
  object-position: 50% 35%;
}

.profile-card-body {
  padding: 28px;
}

.profile-card-body p {
  color: var(--muted);
}

.notice {
  padding: 20px 22px;
  color: #4c3a13;
  background: #fff8e5;
  border-left: 5px solid var(--gold);
  border-radius: 12px;
}

.notice strong {
  color: #31250c;
}

.assessment-page {
  min-height: calc(100vh - 120px);
  padding: 74px 0 100px;
  background:
    radial-gradient(circle at 6% 10%, rgba(139, 30, 63, 0.08), transparent 23%),
    linear-gradient(180deg, var(--cream-2), white);
}

.assessment-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
}

.assessment-sidebar {
  position: sticky;
  top: 125px;
  align-self: start;
  padding: 36px;
  color: white;
  background: var(--navy);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.assessment-sidebar h1,
.assessment-sidebar h2,
.assessment-sidebar h3 {
  color: white;
}

.assessment-sidebar p {
  color: rgba(255, 255, 255, 0.72);
}

.assessment-sidebar .section-label {
  color: var(--gold-soft);
}

.assessment-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.assessment-point {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.assessment-point b {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.72rem;
}

.form-panel {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.form-header {
  padding: 30px 34px 22px;
  border-bottom: 1px solid var(--line);
}

.form-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-header h1,
.form-header h2 {
  margin: 0;
  font-size: 1.6rem;
}

.step-copy {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.progress-track {
  height: 7px;
  margin-top: 20px;
  overflow: hidden;
  background: #edf1f5;
  border-radius: 999px;
}

.progress-bar {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: inherit;
  transition: width 0.25s ease;
}

.form-body {
  padding: 34px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeUp 0.26s ease;
}

.form-step h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.form-step h3:focus {
  outline: none;
}

.form-step > p {
  color: var(--muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 26px;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  color: #324357;
  background: #fbfcfd;
  border: 2px solid var(--line);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 790;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.choice label:hover {
  transform: translateY(-2px);
  border-color: #bdc9d5;
}

.choice input:checked + label {
  color: var(--burgundy-dark);
  background: #fff8fa;
  border-color: var(--burgundy);
  box-shadow: 0 8px 20px rgba(139, 30, 63, 0.1);
}

.choice input:focus-visible + label {
  outline: 3px solid rgba(210, 166, 77, 0.6);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.field-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
fieldset legend {
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 830;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #cbd5df;
  border-radius: 11px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.08);
  outline: 0;
}

.helper-text,
.form-note {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
}

.form-actions .btn {
  min-width: 135px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 22px;
}

.checkbox-row input {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--burgundy);
}

.route-card {
  margin: 24px 0 0;
  padding: 24px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 18px;
}

.route-card small {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-soft);
  font-size: 0.69rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h4 {
  margin-bottom: 8px;
  color: white;
  font-size: 1.55rem;
}

.route-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.privacy-lock {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
  padding: 17px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 0.75rem;
}

.privacy-lock svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--gold);
}

.thank-you-panel {
  max-width: 800px;
  margin-inline: auto;
  padding: 50px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.thank-you-icon {
  width: 76px;
  height: 76px;
  display: grid;
  margin: 0 auto 24px;
  place-items: center;
  color: white;
  background: var(--success);
  border-radius: 50%;
  font-size: 2rem;
}

.legal-content h2 {
  margin-top: 52px;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li {
  color: #435367;
}

.legal-content li + li {
  margin-top: 8px;
}

.site-footer {
  padding: 66px 0 26px;
  color: #b5c1cf;
  background: #030e19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 52px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 55px;
  height: 55px;
}

.footer-brand h3,
.site-footer h4 {
  color: white;
}

.footer-brand h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.footer-brand p {
  max-width: 500px;
  color: #91a0b1;
  font-size: 0.88rem;
}

.site-footer h4 {
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.equal-housing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: white;
  font-size: 0.73rem;
  font-weight: 800;
}

.equal-housing img {
  width: 28px;
  height: 28px;
  color: white;
  filter: brightness(0) invert(1);
}

.footer-legal {
  margin-top: 42px;
  padding-top: 25px;
  color: #8190a2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.69rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  color: #68778a;
  font-size: 0.7rem;
}

.mobile-cta {
  display: none;
}

.assessment-body .mobile-cta {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  .primary-nav {
    position: fixed;
    z-index: 170;
    top: 122px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .menu-button {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .method-layout,
  .split,
  .assessment-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .method-sticky,
  .assessment-sidebar {
    position: static;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .problem-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 78px;
  }

  .container,
  .container-narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .legal-strip {
    padding: 8px 12px;
    font-size: 0.62rem;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 0.87rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .primary-nav {
    top: 108px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding: 64px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 530px;
  }

  .portrait-shell {
    inset: 0 0 48px 0;
    border-radius: 145px 145px 26px 26px;
  }

  .visual-card-top {
    top: 28px;
    right: -2px;
    width: 225px;
  }

  .visual-card-bottom {
    left: -2px;
    width: 250px;
  }

  .trust-bar {
    margin-top: -24px;
  }

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

  .trust-item,
  .trust-item:nth-child(2) {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .method-step {
    grid-template-columns: 54px 1fr;
    gap: 15px;
    padding: 22px 18px;
  }

  .method-step-number {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.2rem;
  }

  .value-grid,
  .card-grid-2,
  .faq-grid,
  .field-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .field-grid .full {
    grid-column: auto;
  }

  .insight-panel {
    min-height: 0;
    padding: 34px 28px;
  }

  .quote-section {
    padding: 70px 0;
  }

  .cta-panel {
    padding: 34px 26px;
  }

  .page-hero {
    padding: 66px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .page-hero-actions {
    display: grid;
  }

  .page-hero-actions .btn {
    width: 100%;
  }

  .assessment-page {
    padding: 18px 0 78px;
  }

  .assessment-sidebar {
    display: none;
  }

  .form-body,
  .form-header {
    padding: 25px;
  }

  .form-step h3 {
    font-size: 1.65rem;
  }

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

  .form-actions .btn {
    width: 100%;
  }

  .thank-you-panel {
    padding: 34px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 140;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .mobile-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta .btn {
    width: 100%;
    box-shadow: 0 18px 38px rgba(7, 24, 41, 0.34);
  }
}

@media (max-width: 420px) {
  .brand-copy strong {
    font-size: 0.78rem;
  }

  .brand-copy span {
    max-width: 180px;
    font-size: 0.57rem;
  }

  .credential-row {
    display: grid;
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-card {
    padding: 16px 17px;
  }

  .visual-card-top {
    width: 205px;
  }

  .visual-card-bottom {
    width: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Final consolidated site additions */
.brand-copy small{margin-top:3px;color:#607080;font-size:.61rem;font-weight:750;letter-spacing:.035em}
.form-kicker{margin:0 0 7px;color:var(--burgundy);font-size:.7rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.form-header h1{font-size:clamp(1.65rem,3vw,2.35rem);margin:0}
.compact-fields{margin-top:22px}
.checkbox-row.optional{margin-top:13px;padding-top:13px;border-top:1px solid var(--line)}
.number-list{counter-reset:item;display:grid;gap:15px;margin:24px 0 0;padding:0;list-style:none}.number-list li{display:grid;grid-template-columns:38px 1fr;gap:12px;align-items:start;color:rgba(255,255,255,.78)}.number-list li:before{counter-increment:item;content:counter(item);display:grid;place-items:center;width:34px;height:34px;background:var(--gold);color:var(--navy);border-radius:50%;font-weight:900}
.check-list.inverse li{color:rgba(255,255,255,.78)}.check-list.inverse li::before{color:var(--gold-soft)}
.resource-preview-grid,.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.resource-card{display:flex;flex-direction:column;min-height:260px;padding:28px;background:white;border:1px solid var(--line);border-radius:var(--radius-md);box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.resource-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:rgba(139,30,63,.3)}.resource-card span{color:var(--burgundy);font-size:.72rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.resource-card h3{margin:18px 0 13px;font-size:1.55rem}.resource-card p{color:var(--muted)}.resource-card b{display:flex;align-items:center;gap:8px;margin-top:auto;color:var(--burgundy);font-size:.86rem}.resource-card b svg{width:18px}.center-button{text-align:center;margin-top:30px}.resource-meta{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}.resource-meta span{padding:8px 12px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.17);border-radius:999px;color:rgba(255,255,255,.78);font-size:.72rem;font-weight:800}.resource-hero .breadcrumb,.resource-hero .breadcrumb a{color:rgba(255,255,255,.65)}
.source-panel{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center;padding:36px;background:var(--cream-2);border:1px solid var(--line);border-radius:var(--radius-md)}.source-links{display:grid;gap:10px}.source-links a{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;background:white;border:1px solid var(--line);border-radius:12px;font-weight:800}.source-links svg{width:18px;color:var(--burgundy)}
.about-preview{align-items:center}.about-photo{max-width:520px}.about-photo img{width:100%;border-radius:var(--radius-lg);box-shadow:var(--shadow-md);object-fit:cover}.profile-section{align-items:start}.profile-card img{aspect-ratio:1/1;object-fit:cover}.credential-stack{display:grid;gap:12px;margin-top:26px}.credential-stack div{display:grid;grid-template-columns:80px 1fr;gap:18px;padding:16px;border-top:1px solid var(--line)}.credential-stack b{color:var(--burgundy);font-size:1.2rem}.credential-stack span{color:var(--muted)}
.script-box{padding:28px;background:white;border-left:5px solid var(--gold);border-radius:0 var(--radius-sm) var(--radius-sm) 0;box-shadow:var(--shadow-sm)}.script-box p{font-size:1.08rem;color:var(--navy)}
.legal-hero{padding-bottom:52px}.legal-content h2{margin:48px 0 14px;font-size:2rem}.legal-content a{text-decoration:underline;text-decoration-color:var(--gold);text-underline-offset:3px}.complaint-notice{padding:24px;background:#f7f0df;border:2px solid var(--gold);border-radius:var(--radius-sm)}.complaint-notice p{font-size:.84rem;line-height:1.8;letter-spacing:.02em}.legal-eho{margin:18px 0}.legal-eho img{width:48px;height:48px}
.thank-route{margin:28px auto;max-width:720px;text-align:left}.result-checklist{margin:28px 0;text-align:left}.result-checklist h3{margin-bottom:12px}.result-checklist ul{display:grid;gap:11px;padding-left:24px}.cta-actions.centered{justify-content:center;flex-wrap:wrap}.thank-you-panel{max-width:900px}
.footer-grid{grid-template-columns:1.6fr .8fr .8fr .8fr}
.site-footer .footer-links span{color:rgba(255,255,255,.45)}
@media(max-width:1080px){.resource-preview-grid,.resource-grid{grid-template-columns:repeat(2,1fr)}.footer-grid{grid-template-columns:1.4fr 1fr 1fr}.footer-grid>div:last-child{grid-column:2/4}}
@media(max-width:760px){.brand-copy small{display:none}.resource-preview-grid,.resource-grid,.source-panel{grid-template-columns:1fr}.resource-card{min-height:0}.footer-grid{grid-template-columns:1fr}.footer-grid>div:last-child{grid-column:auto}.profile-card{margin-bottom:20px}.credential-stack div{grid-template-columns:1fr;gap:4px}.resource-meta{margin-top:18px}.source-panel{padding:26px}.form-header-row{align-items:flex-start}}
@media print{.legal-strip,.site-header,.site-footer,.mobile-cta,.cta-actions{display:none!important}body{padding:0!important}.thank-you-panel{box-shadow:none;border:0}.assessment-page{padding:0}.route-card{break-inside:avoid}}
