:root {
  --teal: #177e89;
  --navy: #084c61;
  --red: #db3a34;
  --gold: #ffc857;
  --charcoal: #323031;
  --paper: #ffffff;
  --line: rgba(50, 48, 49, 0.18);
  --muted: rgba(50, 48, 49, 0.72);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--charcoal); background: var(--paper); font-family: Arial, sans-serif; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; left: -10000px; top: 0; background: var(--gold); color: var(--charcoal); padding: 12px 16px; font-weight: 700; }
.skip:focus { left: 16px; z-index: 10; }
.topbar { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--navy); border-radius: 12px; color: var(--navy); letter-spacing: 0; }
.navigation { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); color: var(--muted); font-size: .88rem; font-weight: 700; white-space: nowrap; }
.navigation a:hover, .navigation a:focus-visible { color: var(--teal); }
.navigation .current { color: var(--navy); }
.hero { padding: 30px 0 80px; }
.hero-grid { min-height: 575px; display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: 16px; background: rgba(23, 126, 137, .09); }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(38px, 6vw, 76px); }
.tag, .section-name { margin: 0; color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.055em; }
h1 { margin-top: 20px; max-width: 570px; font-size: clamp(2.55rem, 4.1vw, 4.35rem); }
.hero-copy > p:not(.tag) { max-width: 520px; margin: 23px 0 0; color: var(--muted); font-size: 1.04rem; line-height: 1.62; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border: 1px solid var(--navy); border-radius: 12px; background: var(--navy); color: var(--paper); font-size: .9rem; font-weight: 700; transition: transform .18s ease, background .18s ease; white-space: nowrap; }
.button:hover, .button:focus-visible { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.text-link { border-bottom: 1px solid currentColor; color: var(--navy); padding-bottom: 4px; font-size: .9rem; font-weight: 700; }
.text-link:hover, .text-link:focus-visible { color: var(--teal); }
.hero-image { position: relative; min-height: 100%; background: var(--navy); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 76, 97, .22), transparent 42%); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.image-note { position: absolute; z-index: 1; bottom: 22px; right: 22px; padding: 10px 12px; border-radius: 12px; background: var(--navy); color: var(--paper); font-size: .75rem; font-weight: 700; }
.intro { padding: 96px 0; }
.intro-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 100px; align-items: start; }
.intro h2, .heading h2, .cta h2 { font-size: clamp(2.2rem, 4vw, 4.05rem); }
.intro-copy { color: var(--muted); font-size: 1.02rem; line-height: 1.68; }
.intro-copy p { margin: 0; }
.intro-copy p + p { margin-top: 20px; }
.panel-section { padding: 96px 0; background: rgba(23, 126, 137, .08); }
.heading { max-width: 740px; }
.heading p:not(.section-name) { max-width: 630px; margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.62; }
.focus-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; margin-top: 52px; }
.focus-card { min-height: 320px; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.focus-card.accent { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.focus-card h3 { margin-top: 18px; font-size: clamp(1.65rem, 2.8vw, 2.7rem); }
.focus-card p { max-width: 510px; margin: 20px 0 0; color: var(--muted); line-height: 1.64; }
.focus-card.accent p { color: rgba(255,255,255,.75); }
.focus-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 16px; margin: 32px 0 0; padding: 0; list-style: none; }
.focus-list li { padding-top: 10px; border-top: 1px solid var(--line); color: var(--teal); font-size: .87rem; font-weight: 700; }
.accent .focus-list li { border-color: rgba(255,255,255,.24); color: var(--gold); }
.steps { padding: 108px 0; }
.step-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.step { min-height: 245px; padding: 30px; border-top: 3px solid var(--teal); background: var(--paper); }
.step:nth-child(2) { border-color: var(--gold); }
.step:nth-child(3) { border-color: var(--red); }
.step small { color: var(--teal); font-size: .72rem; font-weight: 700; letter-spacing: .13em; }
.step h3 { margin-top: 45px; font-size: 1.52rem; }
.step p { margin: 14px 0 0; color: var(--muted); font-size: .94rem; line-height: 1.6; }
.cta { padding: 86px 0; background: var(--charcoal); color: var(--paper); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta h2 { max-width: 750px; }
.cta p { max-width: 640px; margin: 20px 0 0; color: rgba(255,255,255,.74); font-size: 1rem; line-height: 1.62; }
.cta .button { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.cta .button:hover, .cta .button:focus-visible { background: var(--paper); border-color: var(--paper); }
footer { padding: 36px 0; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 50px; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; }
.footer-grid strong, .footer-grid span { display: block; }
.footer-grid strong { color: var(--charcoal); letter-spacing: .16em; font-size: .73rem; }
.footer-grid div span { margin-top: 5px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (max-width: 860px) { .hero-grid, .intro-grid, .focus-grid, .cta-grid { grid-template-columns: 1fr; gap: 40px; } .hero-image { min-height: 380px; } .step-list { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > span { grid-column: 1 / -1; } }
@media (max-width: 640px) { .wrap { width: min(100% - 36px, 1180px); } .topbar { display: block; padding: 18px 0; } .navigation { flex-wrap: wrap; gap: 9px 16px; margin-top: 15px; font-size: .76rem; } .hero { padding: 18px 0 54px; } .hero-grid { min-height: 0; border-radius: 12px; } .hero-copy { padding: 40px 26px; } h1 { font-size: clamp(2.5rem, 11vw, 3.2rem); } .hero-image { min-height: 290px; } .intro, .panel-section, .steps { padding: 76px 0; } .focus-card { min-height: 0; border-radius: 12px; } .focus-list { grid-template-columns: 1fr; } .cta { padding: 74px 0; } .footer-grid { grid-template-columns: 1fr; gap: 20px; } .footer-grid > span { grid-column: auto; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; } }

/* Dark editorial solution system. Shared structure, distinct service signatures. */
.solution-page {
  --page-accent: #ffc857;
  --page-signal: #177e89;
  background: #084c61;
  color: #ffffff;
}

.solution-page.trust-page { --page-accent: #ffc857; --page-signal: #db3a34; }
.solution-page.career-page { --page-accent: #db3a34; --page-signal: #177e89; }

.solution-page .topbar {
  min-height: 82px;
  border-color: rgba(255, 255, 255, .22);
}

.solution-page .brand,
.solution-page .navigation { color: rgba(255, 255, 255, .78); }

.solution-page .brand-mark {
  border-color: var(--page-accent);
  border-radius: 0;
  color: var(--page-accent);
}

.solution-page .navigation .current,
.solution-page .navigation a:hover,
.solution-page .navigation a:focus-visible { color: var(--page-accent); }

.solution-page .hero { padding: 0 0 108px; }

.solution-page .hero-grid {
  min-height: 680px;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  border-radius: 0;
  background: #323031;
  position: relative;
}

.solution-page .hero-grid::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 34%;
  height: 9px;
  left: 0;
  top: 0;
  background: var(--page-accent);
}

.solution-page .hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7.1vw, 108px) clamp(36px, 6vw, 88px);
}

.solution-page .tag,
.solution-page .section-name,
.solution-page .wealth-framework-heading > p {
  color: var(--page-accent);
}

.solution-page h1,
.solution-page h2,
.solution-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
}

.solution-page h1 {
  max-width: 640px;
  font-size: clamp(3rem, 4.8vw, 5.4rem);
  line-height: .94;
}

.solution-page .hero-copy > p:not(.tag) {
  color: rgba(255, 255, 255, .72);
  max-width: 495px;
  font-size: 1.02rem;
}

.solution-page .button {
  border-radius: 0;
  background: var(--page-accent);
  border-color: var(--page-accent);
  color: #323031;
  padding-inline: 25px;
}

.solution-page .button:hover,
.solution-page .button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
}

.solution-page .text-link {
  color: #ffffff;
  border-color: var(--page-accent);
}

.solution-page .text-link:hover,
.solution-page .text-link:focus-visible { color: var(--page-accent); }

.solution-page .hero-image {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--page-signal);
}

.solution-page .hero-image::after {
  background: linear-gradient(90deg, #323031 0%, transparent 40%);
}

.solution-page .hero-image img { filter: saturate(.78) contrast(1.04); }

.solution-page .image-note {
  right: auto;
  left: 34px;
  bottom: 32px;
  border-radius: 0;
  background: var(--page-signal);
  color: #ffffff;
  max-width: 185px;
}

.solution-page .intro {
  padding: 128px 0;
  background: #084c61;
}

.solution-page .intro-grid {
  grid-template-columns: .82fr 1.18fr;
  gap: 13vw;
}

.solution-page .intro h2 {
  color: var(--page-accent);
  font-size: clamp(2.55rem, 4.4vw, 5rem);
  line-height: .97;
}

.solution-page .intro-copy {
  border-left: 1px solid rgba(255, 255, 255, .3);
  padding-left: clamp(24px, 4vw, 54px);
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.solution-page .panel-section {
  padding: 118px 0;
  background: #ffffff;
  color: #323031;
}

.solution-page .heading { max-width: 790px; }
.solution-page .heading h2 { font-size: clamp(2.5rem, 4.1vw, 4.7rem); }
.solution-page .heading p:not(.section-name) { color: rgba(50, 48, 49, .73); }

.solution-page .focus-grid {
  grid-template-columns: 1.32fr .68fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(50, 48, 49, .22);
  border-bottom: 1px solid rgba(50, 48, 49, .22);
}

.solution-page .focus-card {
  min-height: 405px;
  padding: clamp(32px, 5vw, 66px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.solution-page .focus-card + .focus-card { border-left: 1px solid rgba(50, 48, 49, .22); }

.solution-page .focus-card.accent {
  background: #323031;
  color: #ffffff;
}

.solution-page .focus-card h3 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1;
}

.solution-page .focus-card p { color: rgba(50, 48, 49, .72); }
.solution-page .focus-card.accent p { color: rgba(255, 255, 255, .76); }

.solution-page .focus-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 18px;
}

.solution-page .focus-list li { border-top-color: rgba(50, 48, 49, .25); color: var(--page-signal); }
.solution-page .accent .focus-list li { border-top-color: rgba(255, 255, 255, .25); color: var(--page-accent); }

.solution-page .steps {
  padding: 126px 0 136px;
  background: #177e89;
}

.solution-page .steps .heading h2 { color: #ffffff; }
.solution-page .steps .section-name { color: #ffffff; }

.solution-page .step-list {
  grid-template-columns: .72fr 1.15fr .83fr;
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, .34);
  border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.solution-page .step {
  min-height: 312px;
  padding: 34px 30px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .34);
  background: transparent;
  color: #ffffff;
}

.solution-page .step:first-child { border-left: 0; }
.solution-page .step:nth-child(2) { background: #084c61; }
.solution-page .step small { color: var(--page-accent); }
.solution-page .step h3 { margin-top: 78px; font-size: clamp(1.82rem, 2.6vw, 2.75rem); }
.solution-page .step p { color: rgba(255, 255, 255, .73); }

.solution-page .cta { padding: 118px 0; background: #323031; }
.solution-page .cta h2 { color: var(--page-accent); font-size: clamp(2.5rem, 4vw, 4.45rem); }
.solution-page .cta .button { background: var(--page-signal); border-color: var(--page-signal); color: #ffffff; }
.solution-page .cta .button:hover, .solution-page .cta .button:focus-visible { background: var(--page-accent); border-color: var(--page-accent); color: #323031; }

.solution-page footer { padding: 44px 0; background: #084c61; color: rgba(255, 255, 255, .72); }
.solution-page .footer-grid { border-top-color: rgba(255, 255, 255, .22); }
.solution-page .footer-grid strong { color: #ffffff; }

@media (max-width: 860px) {
  .solution-page .hero-grid, .solution-page .intro-grid { grid-template-columns: 1fr; }
  .solution-page .hero-image { min-height: 380px; clip-path: none; }
  .solution-page .focus-grid { grid-template-columns: 1fr; }
  .solution-page .focus-card + .focus-card { border-top: 1px solid rgba(50, 48, 49, .22); border-left: 0; }
  .solution-page .step-list { grid-template-columns: 1fr; }
  .solution-page .step, .solution-page .step:first-child { border-top: 1px solid rgba(255, 255, 255, .34); border-left: 0; }
  .solution-page .step:first-child { border-top: 0; }
  .solution-page .step h3 { margin-top: 45px; }
}

@media (max-width: 640px) {
  .solution-page .topbar { min-height: 0; }
  .solution-page .hero { padding-bottom: 76px; }
  .solution-page .hero-grid { min-height: 0; }
  .solution-page .hero-copy { padding: 48px 25px; }
  .solution-page h1 { font-size: clamp(2.68rem, 11.7vw, 3.5rem); }
  .solution-page .intro, .solution-page .panel-section, .solution-page .steps, .solution-page .cta { padding-block: 82px; }
  .solution-page .intro-copy { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .3); padding: 28px 0 0; }
  .solution-page .focus-card { min-height: 0; padding: 34px 27px; }
  .solution-page .focus-list { grid-template-columns: 1fr; }
}

/* Readability lock for light solution-page hero surfaces. */
html body.solution-page .hero-copy .text-link {
  color: #4A1942 !important;
  border-color: #4A1942 !important;
}
html body.solution-page .career-image-caption span {
  display: inline-block;
  padding: 5px 8px;
  color: #F7F1E8 !important;
  background: rgba(36, 16, 32, .92) !important;
}

/* 2026 premium advisory redesign: shared across every solution page. */
html body.solution-page {
  --premium-wrap: min(1280px, calc(100% - 64px));
  --premium-section: clamp(92px, 10vw, 148px);
  background: #F7F1E8 !important;
  font-family: "Inter", "Aptos", "Segoe UI", Arial, sans-serif !important;
  line-height: 1.66 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html body.solution-page :where(h1, h2, h3) {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -.04em !important;
  text-wrap: balance;
}
html body.solution-page :where(p, li) { text-wrap: pretty; }
html body.solution-page .wrap { width: var(--premium-wrap) !important; }
html body.solution-page .topbar {
  position: sticky !important;
  top: 0;
  z-index: 60;
  width: 100% !important;
  min-height: 84px !important;
  padding-inline: max(32px, calc((100vw - 1280px) / 2)) !important;
  background: rgba(247,241,232,.95) !important;
  backdrop-filter: blur(18px);
}
html body.solution-page .brand-mark {
  width: 44px !important;
  height: 44px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #4A1942 !important;
  border: 1px solid #4A1942 !important;
}
html body.solution-page .navigation {
  gap: clamp(14px, 1.45vw, 25px) !important;
  color: #574D55 !important;
  font-size: .72rem !important;
  letter-spacing: .025em !important;
}
html body.solution-page .navigation > a:not(.navigation-cta) {
  position: relative;
  padding-block: 30px;
}
html body.solution-page .navigation > a:not(.navigation-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: #4A1942;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
html body.solution-page .navigation > a:hover::after { transform: scaleX(1); transform-origin: left; }
html body.solution-page .navigation-cta {
  min-height: 46px !important;
  padding-inline: 18px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
html body.solution-page .hero {
  padding: 0 !important;
  color: #F7F1E8 !important;
  background: #241020 !important;
}
html body.solution-page .hero-grid {
  width: var(--premium-wrap) !important;
  min-height: calc(100svh - 84px) !important;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr) !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}
html body.solution-page .hero-copy {
  padding: 78px clamp(40px, 6vw, 94px) 78px 0 !important;
  color: #F7F1E8 !important;
  background: transparent !important;
}
html body.solution-page .hero-copy .tag { color: #C6A15B !important; }
html body.solution-page .hero-copy h1 {
  max-width: 820px !important;
  color: #F7F1E8 !important;
  font-size: clamp(4.2rem, 6.3vw, 6.55rem) !important;
  line-height: .88 !important;
  letter-spacing: -.055em !important;
}
html body.solution-page .hero-copy > p:not(.tag),
html body.solution-page .hero-copy .hero-outcome,
html body.solution-page .career-disclaimer { color: #D7CBD3 !important; }
html body.solution-page .hero-copy .button {
  min-height: 54px !important;
  padding-inline: 23px !important;
  color: #241020 !important;
  background: #C6A15B !important;
  border-color: #C6A15B !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
html body.solution-page .hero-copy .button:hover { background: #E9D8B4 !important; border-color: #E9D8B4 !important; }
html body.solution-page .hero-copy .text-link { color: #F7F1E8 !important; border-color: #F7F1E8 !important; }
html body.solution-page .hero-image {
  min-height: 620px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
html body.solution-page .hero-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(36,16,32,.74)) !important;
}
html body.solution-page .hero-image img { filter: saturate(.76) sepia(.06); transition: transform .8s cubic-bezier(.2,.8,.2,1); }
html body.solution-page .image-note {
  z-index: 3 !important;
  right: 28px !important;
  bottom: 28px !important;
  padding: 12px 14px !important;
  color: #241020 !important;
  background: #C6A15B !important;
  border-radius: 0 !important;
}
html body.solution-page .trust-row,
html body.solution-page .career-trust { color: #D7CBD3 !important; border-color: rgba(247,241,232,.22) !important; }
html body.solution-page .trust-row span,
html body.solution-page .career-trust li { color: #D7CBD3 !important; }
html body.solution-page .hero-pill { border-radius: 0 !important; box-shadow: 0 18px 48px rgba(36,16,32,.2) !important; }
html body.solution-page .trust-proofs { border-radius: 0 !important; border-bottom: 1px solid rgba(41,38,41,.2) !important; }
html body.solution-page :where(.intro, .panel-section, .steps, .trust-solutions, .trust-pathways, .trust-coverage, .trust-process, .trust-faq, .career-role, .career-program, .career-fit, .career-steps, .career-faq, .estate-transformation, .cta) {
  padding-block: var(--premium-section) !important;
}
html body.solution-page :where(.intro h2, .heading h2, .trust-section-heading h2, .career-section-heading h2, .cta h2) {
  max-width: 900px;
  font-size: clamp(3rem, 5vw, 5.2rem) !important;
  line-height: .96 !important;
}
html body.solution-page .section-name {
  color: #4A1942 !important;
  font-size: .68rem !important;
  letter-spacing: .16em !important;
}
html body.solution-page :where(.intro-grid, .trust-section-heading, .career-section-heading) { gap: clamp(65px, 9vw, 135px) !important; }
html body.solution-page :where(.focus-card, .step, .risk-list article, .shift-card, .takeaway-grid article, .trust-option, .trust-pathway-grid article, .benefits-grid article, .role-grid article, .goal-grid article, .career-program-card, .fit-column, .steps-track article) {
  border-radius: 0 !important;
  box-shadow: none !important;
}
html body.solution-page :where(.risk-list, .goal-grid, .role-grid, .takeaway-grid, .benefits-grid) {
  gap: 0 !important;
  border-top: 1px solid rgba(41,38,41,.2);
  border-left: 1px solid rgba(41,38,41,.2);
}
html body.solution-page :where(.risk-list article, .goal-grid article, .role-grid article, .takeaway-grid article, .benefits-grid article) {
  border: 0 !important;
  border-right: 1px solid rgba(41,38,41,.2) !important;
  border-bottom: 1px solid rgba(41,38,41,.2) !important;
}
html body.solution-page .trust-option-grid,
html body.solution-page .trust-pathway-grid,
html body.solution-page .fit-grid { gap: 0 !important; border: 1px solid rgba(41,38,41,.2); }
html body.solution-page .trust-option + .trust-option,
html body.solution-page .trust-pathway-grid article + article,
html body.solution-page .fit-column + .fit-column { border-left: 1px solid rgba(41,38,41,.2) !important; }
html body.solution-page .cta { color: #F7F1E8 !important; background: #4A1942 !important; }
html body.solution-page .cta .button { color: #241020 !important; background: #C6A15B !important; border-color: #C6A15B !important; border-radius: 0 !important; }
html body.solution-page footer { padding-block: 48px !important; background: #241020 !important; }
html body.solution-page .footer-grid { color: #C9BDC5 !important; border-color: rgba(247,241,232,.22) !important; }
html body.solution-page .footer-grid strong { color: #F7F1E8 !important; }

@media (max-width: 900px) {
  html body.solution-page .hero-grid { min-height: 0 !important; grid-template-columns: 1fr !important; }
  html body.solution-page .hero-copy { padding: 70px 0 64px !important; }
  html body.solution-page .hero-image { min-height: 500px !important; }
}
@media (max-width: 760px) {
  html body.solution-page { --premium-wrap: calc(100% - 36px); --premium-section: 78px; }
  html body.solution-page .topbar { padding: 14px 18px !important; }
  html body.solution-page .navigation { border-top: 1px solid rgba(41,38,41,.16); }
  html body.solution-page .navigation > a:not(.navigation-cta) { padding-block: 10px !important; }
  html body.solution-page .navigation > a::after { display: none; }
  html body.solution-page .hero-copy { padding: 62px 0 58px !important; }
  html body.solution-page .hero-copy h1 { font-size: clamp(3.35rem, 15vw, 4.7rem) !important; }
  html body.solution-page .hero-image { min-height: 380px !important; }
  html body.solution-page .trust-option-grid,
  html body.solution-page .trust-pathway-grid,
  html body.solution-page .fit-grid { border: 0; }
  html body.solution-page .trust-option + .trust-option,
  html body.solution-page .trust-pathway-grid article + article,
  html body.solution-page .fit-column + .fit-column { border-top: 1px solid rgba(41,38,41,.2) !important; border-left: 0 !important; }
}

/* Final contrast audit for the three static solution routes. */
html body.solution-page {
  --luxury-gold-ink: #6E5200;
}

html body.solution-page .navigation-cta,
html body.solution-page .button {
  background-color: #1A1A1A !important;
  background-image: linear-gradient(90deg, #D4AF37, #D4AF37) !important;
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  background-size: 0% 100% !important;
  color: #F9F8F6 !important;
}
html body.solution-page .navigation-cta:hover,
html body.solution-page .navigation-cta:focus-visible,
html body.solution-page .button:hover,
html body.solution-page .button:focus-visible {
  background-size: 100% 100% !important;
  color: #1A1A1A !important;
}

/* Proof rail is paper in the editorial system. */
html body.solution-page .trust-proofs,
html body.solution-page .trust-proofs .proof-intro,
html body.solution-page .trust-proofs .proof-item b { color: #1A1A1A !important; }
html body.solution-page .trust-proofs .proof-intro strong,
html body.solution-page .trust-proofs .proof-item > span { color: #6E5200 !important; }
html body.solution-page .trust-proofs .proof-item small { color: #6C6863 !important; }

/* Light surfaces use ink and muted ink; this prevents inherited white labels
   from disappearing when the section is no longer dark. */
html body.solution-page .estate-problem h2,
html body.solution-page .estate-problem h3,
html body.solution-page .estate-transformation h2,
html body.solution-page .estate-transformation h3,
html body.solution-page .trust-intro h2,
html body.solution-page .trust-solutions h2,
html body.solution-page .trust-coverage h2,
html body.solution-page .trust-process h2,
html body.solution-page .trust-faq h2,
html body.solution-page .career-problem h2,
html body.solution-page .career-program h2,
html body.solution-page .career-fit h2,
html body.solution-page .career-faq h2 { color: #1A1A1A !important; }
html body.solution-page .estate-problem p,
html body.solution-page .estate-problem li,
html body.solution-page .estate-transformation p,
html body.solution-page .estate-transformation li,
html body.solution-page .trust-intro p,
html body.solution-page .trust-solutions p,
html body.solution-page .trust-coverage p,
html body.solution-page .trust-process p,
html body.solution-page .trust-faq p,
html body.solution-page .career-problem p,
html body.solution-page .career-program p,
html body.solution-page .career-fit p,
html body.solution-page .career-faq p { color: #6C6863 !important; }
html body.solution-page .estate-problem .section-name,
html body.solution-page .estate-transformation .section-name,
html body.solution-page .trust-intro .section-name,
html body.solution-page .trust-solutions .section-name,
html body.solution-page .trust-coverage .section-name,
html body.solution-page .trust-process .section-name,
html body.solution-page .trust-faq .section-name,
html body.solution-page .career-problem .section-name,
html body.solution-page .career-program .section-name,
html body.solution-page .career-fit .section-name,
html body.solution-page .career-faq .section-name { color: #6E5200 !important; }

/* Dark framework, pathway, benefit and career sections need paper headings
   and softened paper body copy. */
html body.solution-page .estate-framework h2,
html body.solution-page .estate-framework h3,
html body.solution-page .trust-pathways h2,
html body.solution-page .trust-pathways h3,
html body.solution-page .trust-benefits h2,
html body.solution-page .trust-benefits h3,
html body.solution-page .career-role h2,
html body.solution-page .career-role h3,
html body.solution-page .career-steps h2,
html body.solution-page .career-steps h3,
html body.solution-page .steps h2,
html body.solution-page .steps h3 { color: #F9F8F6 !important; }
html body.solution-page .estate-framework p,
html body.solution-page .trust-pathways p,
html body.solution-page .trust-benefits p,
html body.solution-page .career-role p,
html body.solution-page .career-steps p,
html body.solution-page .steps p { color: rgba(249,248,246,.78) !important; }
html body.solution-page .estate-framework .section-name,
html body.solution-page .trust-pathways .section-name,
html body.solution-page .trust-benefits .section-name,
html body.solution-page .career-role .section-name,
html body.solution-page .career-steps .section-name,
html body.solution-page .steps .section-name { color: #D4AF37 !important; }

/* Trust option headers are blue/teal blocks, while their bodies remain paper. */
html body.solution-page .trust-option-head h3,
html body.solution-page .trust-option-head p,
html body.solution-page .trust-option-head > span { color: #F9F8F6 !important; }
html body.solution-page .trust-option-body p,
html body.solution-page .trust-option-body li { color: #6C6863 !important; }
html body.solution-page .trust-option-body li > span { color: #6E5200 !important; }

html body.solution-page .career-role .role-grid h3,
html body.solution-page .career-role .role-grid p,
html body.solution-page .career-steps .steps-track h3,
html body.solution-page .career-steps .steps-track p { color: #1A1A1A !important; }
html body.solution-page .career-role .role-grid > article > span,
html body.solution-page .career-steps .steps-track > article > span { color: #6E5200 !important; }


/* Microcopy and hero labels on paper/taupe surfaces need ink, not inherited
   white. Dark editorial sections use the bright gold token for small indexes. */
html body.solution-page .estate-hero .trust-row > span { color: #1A1A1A !important; }
html body.solution-page .estate-hero .cta-action small,
html body.solution-page .estate-hero .hero-pill small { color: rgba(249,248,246,.84) !important; }
html body.solution-page .trust-cta-action small { color: rgba(249,248,246,.84) !important; }
html body.solution-page.career-page .career-trust li,
html body.solution-page.career-page .career-image-caption span,
html body.solution-page.career-page .career-hero .text-link span { color: #6E5200 !important; }
html body.solution-page.career-page .career-program-card small { color: rgba(249,248,246,.84) !important; }
html body.solution-page.career-page .career-steps .steps-track article:nth-of-type(1) > span,
html body.solution-page.career-page .career-steps .steps-track article:nth-of-type(2) > span,
html body.solution-page.career-page .career-steps .steps-track article:nth-of-type(3) > span { color: #D4AF37 !important; }

html body.solution-page .estate-hero .hero-outcome strong { color: #1A1A1A !important; }
html body.solution-page .trust-hero .hero-outcome strong { color: #1A1A1A !important; }
html body.solution-page.trust-page .trust-intro em,
html body.solution-page.trust-page .trust-coverage em,
html body.solution-page.trust-page .trust-faq em { color: #6E5200 !important; }
html body.solution-page.career-page .career-hero .career-disclaimer strong,
html body.solution-page.career-page .career-hero .actions .text-link span { color: #1A1A1A !important; }
html body.solution-page.career-page .career-fit .fit-yes em { color: #F9F8F6 !important; }
html body.solution-page.career-page .career-fit .fit-no em { color: #6E5200 !important; }
html body.solution-page.career-page .career-problem .goal-grid a span { color: #1A1A1A !important; }

/* Shared Deep Aubergine palette for the static solution routes. */
html body.solution-page {
  --teal: #4A1942;
  --navy: #4A1942;
  --red: #4A1942;
  --gold: #C6A15B;
  --charcoal: #241020;
  --paper: #F7F1E8;
  --line: rgba(41,38,41,.18);
  --muted: #5D565D;
  --ux-paper: #F7F1E8;
  --ux-white: #F7F1E8;
  --ux-ink: #292629;
  --ux-deep: #241020;
  --ux-teal: #4A1942;
  --ux-gold: #C6A15B;
  --ux-red: #4A1942;
  --ux-line: rgba(41,38,41,.18);
  --ux-muted: #5D565D;
  --luxury-paper: #F7F1E8;
  --luxury-ink: #241020;
  --luxury-taupe: #EDE3D6;
  --luxury-muted: #5D565D;
  --luxury-gold: #C6A15B;
  --luxury-line: rgba(41,38,41,.18);
  background: #F7F1E8 !important;
  color: #292629 !important;
}
html body.solution-page .topbar { background: rgba(247,241,232,.94) !important; border-color: rgba(41,38,41,.2) !important; }
html body.solution-page .brand,
html body.solution-page .navigation,
html body.solution-page .navigation a { color: #292629 !important; }
html body.solution-page .brand-mark { border-color: #4A1942 !important; color: #4A1942 !important; }
html body.solution-page .navigation a:hover,
html body.solution-page .navigation a:focus-visible { color: #4A1942 !important; }
html body.solution-page .navigation-cta,
html body.solution-page .button { background-color: #241020 !important; color: #F7F1E8 !important; border-color: #241020 !important; }
html body.solution-page .navigation-cta:hover,
html body.solution-page .navigation-cta:focus-visible,
html body.solution-page .button:hover,
html body.solution-page .button:focus-visible { background-color: #C6A15B !important; color: #241020 !important; border-color: #C6A15B !important; }
html body.solution-page .hero,
html body.solution-page .trust-proofs,
html body.solution-page .estate-problem,
html body.solution-page .trust-intro,
html body.solution-page .trust-solutions,
html body.solution-page .trust-coverage,
html body.solution-page .trust-process,
html body.solution-page .trust-faq,
html body.solution-page .career-problem,
html body.solution-page .career-program,
html body.solution-page .career-fit,
html body.solution-page .career-faq,
html body.solution-page .estate-transformation { background: #F7F1E8 !important; color: #292629 !important; }
html body.solution-page .estate-framework,
html body.solution-page .trust-pathways,
html body.solution-page .trust-benefits,
html body.solution-page .career-role,
html body.solution-page .career-steps,
html body.solution-page .steps,
html body.solution-page .cta { background: #241020 !important; color: #F7F1E8 !important; }
html body.solution-page .hero-copy,
html body.solution-page .hero-copy h1,
html body.solution-page .estate-problem h2,
html body.solution-page .estate-problem h3,
html body.solution-page .estate-transformation h2,
html body.solution-page .estate-transformation h3,
html body.solution-page .trust-intro h2,
html body.solution-page .trust-solutions h2,
html body.solution-page .trust-coverage h2,
html body.solution-page .trust-process h2,
html body.solution-page .trust-faq h2,
html body.solution-page .career-problem h2,
html body.solution-page .career-program h2,
html body.solution-page .career-fit h2,
html body.solution-page .career-faq h2 { color: #241020 !important; }
html body.solution-page .hero-copy .tag,
html body.solution-page .section-name,
html body.solution-page .estate-problem .section-name,
html body.solution-page .estate-transformation .section-name,
html body.solution-page .trust-intro .section-name,
html body.solution-page .trust-solutions .section-name,
html body.solution-page .trust-coverage .section-name,
html body.solution-page .trust-process .section-name,
html body.solution-page .trust-faq .section-name,
html body.solution-page .career-problem .section-name,
html body.solution-page .career-program .section-name,
html body.solution-page .career-fit .section-name,
html body.solution-page .career-faq .section-name { color: #4A1942 !important; }
html body.solution-page .hero-copy > p:not(.tag),
html body.solution-page .intro-copy p,
html body.solution-page .heading > p,
html body.solution-page .trust-section-heading > p,
html body.solution-page .estate-problem p,
html body.solution-page .estate-problem li,
html body.solution-page .estate-transformation p,
html body.solution-page .estate-transformation li,
html body.solution-page .trust-intro p,
html body.solution-page .trust-solutions p,
html body.solution-page .trust-coverage p,
html body.solution-page .trust-process p,
html body.solution-page .trust-faq p,
html body.solution-page .career-problem p,
html body.solution-page .career-program p,
html body.solution-page .career-fit p,
html body.solution-page .career-faq p { color: #5D565D !important; }
html body.solution-page .hero-image { background: #4A1942 !important; border-color: #241020 !important; }
html body.solution-page .hero-copy h1 em,
html body.solution-page h2 em { color: #4A1942 !important; }
html body.solution-page .estate-framework h2,
html body.solution-page .estate-framework h3,
html body.solution-page .trust-pathways h2,
html body.solution-page .trust-pathways h3,
html body.solution-page .trust-benefits h2,
html body.solution-page .trust-benefits h3,
html body.solution-page .career-role h2,
html body.solution-page .career-role h3,
html body.solution-page .career-steps h2,
html body.solution-page .career-steps h3,
html body.solution-page .steps h2,
html body.solution-page .steps h3,
html body.solution-page .cta h2 { color: #F7F1E8 !important; }
html body.solution-page .estate-framework p,
html body.solution-page .trust-pathways p,
html body.solution-page .trust-benefits p,
html body.solution-page .career-role p,
html body.solution-page .career-steps p,
html body.solution-page .steps p,
html body.solution-page .cta p { color: rgba(247,241,232,.8) !important; }
html body.solution-page .estate-framework .section-name,
html body.solution-page .trust-pathways .section-name,
html body.solution-page .trust-benefits .section-name,
html body.solution-page .career-role .section-name,
html body.solution-page .career-steps .section-name,
html body.solution-page .steps .section-name,
html body.solution-page .cta .section-name { color: #C6A15B !important; }
html body.solution-page .trust-option h3,
html body.solution-page .trust-pathway-grid h3,
html body.solution-page .coverage-grid h3,
html body.solution-page .goal-grid h3,
html body.solution-page .role-grid h3,
html body.solution-page .benefits-grid h3 { color: #241020 !important; }
html body.solution-page .trust-option p,
html body.solution-page .trust-pathway-grid p,
html body.solution-page .coverage-grid p,
html body.solution-page .goal-grid p,
html body.solution-page .role-grid p,
html body.solution-page .benefits-grid p,
html body.solution-page .faq-list p { color: #5D565D !important; }
html body.solution-page .trust-option-head h3,
html body.solution-page .trust-option-head p,
html body.solution-page .trust-option-head > span { color: #F7F1E8 !important; }
html body.solution-page .trust-option-body li > span,
html body.solution-page .career-role .role-grid > article > span,
html body.solution-page .career-steps .steps-track > article > span { color: #4A1942 !important; }
html body.solution-page .career-steps .steps-track > article > span { color: #C6A15B !important; }
html body.solution-page footer { background: #241020 !important; color: rgba(247,241,232,.76) !important; border-color: rgba(247,241,232,.24) !important; }
html body.solution-page footer strong { color: #F7F1E8 !important; }

html body.solution-page .topbar a.navigation-cta { background: #241020 !important; color: #F7F1E8 !important; border-color: #241020 !important; }
html body.solution-page .hero-pill { background: #4A1942 !important; border-color: #C6A15B !important; }
html body.solution-page .hero-pill strong,
html body.solution-page .hero-pill span { color: #F7F1E8 !important; }
html body.solution-page .hero-pill small { color: #C6A15B !important; }
html body.solution-page .trust-pathways h2 em,
html body.solution-page .trust-benefits h2 em,
html body.solution-page .estate-framework h2 em,
html body.solution-page .career-role h2 em,
html body.solution-page .career-steps h2 em,
html body.solution-page .steps h2 em,
html body.solution-page .cta h2 em { color: #C6A15B !important; }
html body.solution-page .trust-solutions h2 em,
html body.solution-page .trust-process h2 em,
html body.solution-page .estate-problem h2 em,
html body.solution-page .estate-transformation h2 em,
html body.solution-page .trust-intro h2 em,
html body.solution-page .trust-coverage h2 em,
html body.solution-page .trust-faq h2 em,
html body.solution-page .career-problem h2 em,
html body.solution-page .career-program h2 em,
html body.solution-page .career-fit h2 em,
html body.solution-page .career-faq h2 em { color: #4A1942 !important; }

html body.solution-page .estate-framework .heading h2 { color: #F9F8F6 !important; }
html body.solution-page .estate-framework .heading > p:not(.section-name) { color: rgba(249,248,246,.78) !important; }

html body.solution-page .career-hero .hero-copy .tag { color: #6E5200 !important; }
html body.solution-page .career-problem .goal-grid article,
html body.solution-page .career-problem .goal-grid article h3,
html body.solution-page .career-problem .goal-grid article p,
html body.solution-page .career-problem .goal-grid article a { color: #1A1A1A !important; }
html body.solution-page .career-problem .goal-grid article > span { color: #6E5200 !important; }
html body.solution-page .career-role .career-section-heading h2 { color: #F9F8F6 !important; }
html body.solution-page .career-role .career-section-heading > p { color: rgba(249,248,246,.78) !important; }
html body.solution-page .career-role .career-section-heading .section-name,
html body.solution-page .career-steps .career-section-heading .section-name { color: #D4AF37 !important; }
html body.solution-page .career-program .career-section-heading .section-name,
html body.solution-page .career-fit .section-name { color: #6E5200 !important; }
html body.solution-page .career-program .career-program-grid > div:first-child .section-name { color: #6E5200 !important; }
html body.solution-page .career-problem .goal-grid article:nth-child(3) h3,
html body.solution-page .career-problem .goal-grid article:nth-child(3) p,
html body.solution-page .career-problem .goal-grid article:nth-child(3) a { color: #1A1A1A !important; }
html body.solution-page .career-problem .goal-grid article:nth-child(3) > span { color: #6E5200 !important; }
html body.solution-page .career-steps .steps-track article h3 { color: #F9F8F6 !important; }
html body.solution-page .career-steps .steps-track article p { color: rgba(249,248,246,.78) !important; }
html body.solution-page .career-steps .steps-track article > span { color: #D4AF37 !important; }

/* Direct-response layout shared by all service pages. */
.solution-page { --page-accent: #ffc857; --page-signal: #084c61; background: #ffffff; color: #323031; }
.solution-page.trust-page { --page-accent: #ffc857; --page-signal: #177e89; }
.solution-page.career-page { --page-accent: #ffc857; --page-signal: #db3a34; }
.solution-page .topbar { width: 100%; min-height: 76px; padding-inline: max(24px, calc((100vw - 1180px) / 2)); background: #084c61; border: 0; }
.solution-page .brand, .solution-page .navigation { color: #ffffff; }
.solution-page .brand-mark { border-radius: 50%; border-color: #ffc857; color: #ffc857; }
.solution-page .navigation { color: rgba(255,255,255,.76); }
.solution-page .navigation .current, .solution-page .navigation a:hover, .solution-page .navigation a:focus-visible { color: #ffc857; }
.solution-page .hero { padding: 0 0 54px; background: #ffc857; }
.solution-page .hero-grid { min-height: 600px; grid-template-columns: 1.04fr .96fr; border-radius: 0; background: #ffc857; }
.solution-page .hero-grid::before { display: none; }
.solution-page .hero-copy { padding: clamp(48px, 7vw, 92px); }
.solution-page .tag, .solution-page .section-name { color: #db3a34; }
.solution-page h1, .solution-page h2, .solution-page h3 { font-family: Arial, sans-serif; font-weight: 800; letter-spacing: -.075em; }
.solution-page h1 { max-width: 650px; font-size: clamp(3rem, 5.15vw, 5.55rem); line-height: .9; }
.solution-page .hero-copy > p:not(.tag) { color: rgba(50,48,49,.8); font-weight: 500; }
.solution-page .button { border-radius: 0; background: #084c61; border-color: #084c61; color: #ffffff; box-shadow: 6px 6px 0 #323031; }
.solution-page .button:hover, .solution-page .button:focus-visible { background: #323031; border-color: #323031; transform: translate(-2px,-2px); }
.solution-page .text-link { color: #323031; border-color: #323031; }
.solution-page .hero-image { clip-path: none; background: #177e89; }
.solution-page .hero-image::after { background: linear-gradient(90deg, rgba(8,76,97,.18), transparent 45%); }
.solution-page .image-note { left: auto; right: 24px; bottom: 24px; border-radius: 0; background: var(--page-signal); color: #ffffff; }
.solution-page .intro { padding: 112px 0; background: #ffffff; }
.solution-page .intro-grid { grid-template-columns: .9fr 1.1fr; gap: 12vw; }
.solution-page .intro h2 { color: #323031; font-size: clamp(2.55rem, 4.5vw, 5rem); line-height: .94; }
.solution-page .intro-copy { padding-left: 0; border: 0; color: rgba(50,48,49,.72); font-size: 1.04rem; }
.solution-page .panel-section { padding: 110px 0; background: #084c61; color: #ffffff; }
.solution-page .heading h2 { color: inherit; font-size: clamp(2.5rem, 4.35vw, 4.9rem); }
.solution-page .heading p:not(.section-name) { color: rgba(255,255,255,.76); }
.solution-page .focus-grid { grid-template-columns: 1.2fr .8fr; gap: 14px; margin-top: 54px; border: 0; }
.solution-page .focus-card { min-height: 400px; border: 0; border-radius: 0; background: #ffffff; color: #323031; }
.solution-page .focus-card + .focus-card { border: 0; }
.solution-page .focus-card.accent { background: #db3a34; color: #ffffff; }
.solution-page .focus-card h3 { font-family: Arial, sans-serif; font-weight: 800; }
.solution-page .focus-card p { color: rgba(50,48,49,.72); }
.solution-page .focus-card.accent p { color: rgba(255,255,255,.82); }
.solution-page .focus-list { grid-template-columns: repeat(2, 1fr); }
.solution-page .focus-list li { border-top-color: rgba(50,48,49,.22); color: #084c61; }
.solution-page .accent .focus-list li { border-top-color: rgba(255,255,255,.3); color: #ffc857; }
.solution-page .steps { padding: 110px 0; background: #ffffff; }
.solution-page .steps .heading h2 { color: #323031; }
.solution-page .steps .section-name { color: #db3a34; }
.solution-page .step-list { grid-template-columns: .8fr 1.2fr .8fr; gap: 14px; margin-top: 54px; border: 0; }
.solution-page .step { min-height: 285px; padding: 34px; border: 0; background: #f3f3f1; color: #323031; }
.solution-page .step:first-child { border: 0; }
.solution-page .step:nth-child(2) { background: #ffc857; }
.solution-page .step:nth-child(3) { background: #177e89; color: #ffffff; }
.solution-page .step small { color: #db3a34; }
.solution-page .step:nth-child(3) small { color: #ffc857; }
.solution-page .step h3 { margin-top: 62px; font-family: Arial, sans-serif; font-weight: 800; }
.solution-page .step p { color: rgba(50,48,49,.72); }
.solution-page .step:nth-child(3) p { color: rgba(255,255,255,.8); }
.solution-page .cta { padding: 106px 0; background: #323031; }
.solution-page .cta h2 { color: #ffc857; font-family: Arial, sans-serif; font-weight: 800; }
.solution-page .cta .button { background: #ffc857; border-color: #ffc857; color: #323031; }
.solution-page .cta .button:hover, .solution-page .cta .button:focus-visible { background: #ffffff; border-color: #ffffff; }
.solution-page footer { background: #323031; }

@media (max-width: 860px) { .solution-page .hero-grid, .solution-page .intro-grid, .solution-page .focus-grid { grid-template-columns: 1fr; } .solution-page .step-list { grid-template-columns: 1fr; } .solution-page .topbar { width: 100%; } }
@media (max-width: 640px) { .solution-page .topbar { padding-inline: 18px; } .solution-page h1 { font-size: clamp(2.7rem, 12vw, 3.65rem); } .solution-page .hero { padding-bottom: 40px; } .solution-page .hero-grid { min-height: 0; } .solution-page .intro { padding-block: 78px; } .solution-page .focus-list { grid-template-columns: 1fr; } }

/* Wealth planning page: income-first clarity, adapted from the reference page. */
.estate-page .hero-copy > p:not(.tag) { max-width: 555px; }
.estate-page .hero-copy .hero-outcome { margin-top: 26px; color: rgba(50,48,49,.72); font-size: .86rem; line-height: 1.5; }
.estate-page .hero-outcome strong { color: var(--navy); }
.estate-page .trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 30px; color: rgba(50,48,49,.72); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.estate-page .trust-row i { display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }
.estate-page .hero-image { overflow: hidden; }
.estate-page .hero-pill { position: absolute; z-index: 2; display: grid; gap: 2px; min-width: 126px; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(8,76,97,.94); color: #ffffff; box-shadow: 5px 5px 0 rgba(50,48,49,.7); }
.estate-page .hero-pill small { color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .12em; }
.estate-page .hero-pill strong { font-size: 1rem; }
.estate-page .hero-pill span { color: rgba(255,255,255,.7); font-size: .72rem; }
.estate-page .hero-pill-one { left: 22px; top: 56px; }
.estate-page .hero-pill-two { right: 22px; top: 180px; border-left-color: var(--teal); }
.estate-page .hero-pill-two small { color: var(--teal); }
.estate-page .hero-pill-three { left: 42px; bottom: 128px; border-left-color: var(--red); }
.estate-page .hero-pill-three small { color: var(--red); }

.estate-page .estate-problem { background: #ffffff; }
.estate-page .estate-problem .section-name { color: var(--red); }
.estate-page .estate-problem .large-copy { color: var(--navy); font-size: 1.28rem; font-weight: 600; line-height: 1.45; }
.estate-page .estate-problem blockquote { margin: 32px 0 0; padding: 18px 0 0 18px; border-left: 3px solid var(--red); color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.2; }
.estate-page .risk-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 74px; border-top: 1px solid rgba(50,48,49,.2); border-bottom: 1px solid rgba(50,48,49,.2); }
.estate-page .risk-list article { display: grid; grid-template-columns: 40px 1fr 22px; gap: 16px; min-height: 190px; padding: 24px 22px 24px 0; border-right: 1px solid rgba(50,48,49,.2); }
.estate-page .risk-list article + article { padding-left: 22px; }
.estate-page .risk-list article:last-child { border-right: 0; }
.estate-page .risk-list article > span { color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.estate-page .risk-list h3 { color: var(--navy); font-size: 1.22rem; }
.estate-page .risk-list p { margin: 10px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.48; }
.estate-page .risk-list b { align-self: end; color: var(--red); font-size: 1.2rem; font-weight: 400; }

.estate-page .estate-framework .heading { max-width: 830px; }
.estate-page .estate-framework .heading h2 { max-width: 720px; }
.estate-page .framework-map { display: grid; grid-template-columns: minmax(220px, .63fr) minmax(0, 1.37fr); gap: 1px; margin-top: 70px; background: rgba(255,255,255,.25); }
.estate-page .framework-core { display: flex; min-height: 440px; flex-direction: column; justify-content: center; padding: 42px; background: var(--charcoal); }
.estate-page .framework-core small { color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.estate-page .framework-core strong { margin-top: 26px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4vw, 4.4rem); font-weight: 500; letter-spacing: -.055em; line-height: .9; }
.estate-page .framework-core span { margin-top: 18px; color: rgba(255,255,255,.62); font-size: .85rem; }
.estate-page .framework-nodes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.25); }
.estate-page .framework-nodes article { display: grid; align-content: start; gap: 9px; min-height: 146px; padding: 22px; background: var(--navy); }
.estate-page .framework-nodes article:nth-child(3n) { background: var(--teal); }
.estate-page .framework-nodes span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.estate-page .framework-nodes strong { color: #ffffff; font-size: 1.05rem; }
.estate-page .framework-nodes small { color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.4; }

.estate-page .estate-process { background: var(--teal); color: #ffffff; }
.estate-page .estate-process .heading { max-width: 870px; }
.estate-page .estate-process .heading h2 { max-width: 790px; color: #ffffff; }
.estate-page .estate-process .heading p:not(.section-name) { max-width: 700px; color: rgba(255,255,255,.75); }
.estate-page .estate-process .section-name { color: var(--gold); }
.estate-page .estate-process .step-list { grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 62px; background: rgba(255,255,255,.25); }
.estate-page .estate-process .step { min-height: 380px; padding: 30px; border: 0; background: var(--navy); color: #ffffff; }
.estate-page .estate-process .step:nth-child(2) { background: var(--charcoal); }
.estate-page .estate-process .step:nth-child(3) { background: var(--red); }
.estate-page .estate-process .step small { color: var(--gold); font-size: .66rem; line-height: 1.4; }
.estate-page .estate-process .step h3 { margin-top: 64px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.75rem, 2.5vw, 2.7rem); font-weight: 500; line-height: .98; }
.estate-page .estate-process .step p { color: rgba(255,255,255,.73); font-size: .88rem; line-height: 1.55; }
.estate-page .estate-process .step .text-link { display: inline-block; margin-top: 20px; color: var(--gold); border-color: var(--gold); font-size: .8rem; }
.estate-page .estate-process .step:nth-child(3) .text-link { color: #ffffff; border-color: #ffffff; }

.estate-page .estate-transformation { padding: 122px 0 132px; background: #ffffff; }
.estate-page .estate-transformation .heading { max-width: 850px; }
.estate-page .estate-transformation .heading h2 { max-width: 770px; color: var(--navy); }
.estate-page .estate-transformation .heading p:not(.section-name) { color: var(--muted); }
.estate-page .shift-grid { display: grid; grid-template-columns: 1fr 100px 1fr; align-items: stretch; gap: 18px; margin-top: 64px; }
.estate-page .shift-card { padding: 34px; border-top: 4px solid var(--red); background: #f3f3f1; }
.estate-page .shift-card.after { border-top-color: var(--teal); background: #e8f1f1; }
.estate-page .shift-card > span { color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.estate-page .shift-card.after > span { color: var(--teal); }
.estate-page .shift-card h3 { margin-top: 28px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 2.5vw, 2.65rem); font-weight: 500; line-height: 1; }
.estate-page .shift-card ul { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.estate-page .shift-card li { padding-top: 12px; border-top: 1px solid rgba(50,48,49,.18); color: var(--muted); font-size: .85rem; line-height: 1.48; }
.estate-page .shift-arrow { display: grid; align-content: center; justify-items: center; gap: 14px; color: var(--red); }
.estate-page .shift-arrow span { font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.estate-page .shift-arrow b { font-size: 2.4rem; font-weight: 400; }
.estate-page .takeaway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; border-top: 1px solid rgba(50,48,49,.2); border-bottom: 1px solid rgba(50,48,49,.2); }
.estate-page .takeaway-grid article { min-height: 190px; padding: 22px 22px 26px 0; border-right: 1px solid rgba(50,48,49,.2); }
.estate-page .takeaway-grid article + article { padding-left: 22px; }
.estate-page .takeaway-grid article:last-child { border-right: 0; }
.estate-page .takeaway-grid span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.estate-page .takeaway-grid strong { display: block; margin-top: 54px; color: var(--navy); font-size: 1rem; }
.estate-page .takeaway-grid p { margin: 10px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.48; }
.estate-page .fit-note { display: grid; grid-template-columns: .42fr 1fr; gap: 28px; margin: 62px 0 0; padding: 20px 0 0; border-top: 1px solid rgba(50,48,49,.2); }
.estate-page .fit-note strong { color: var(--navy); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.estate-page .fit-note span { color: var(--muted); font-size: .88rem; line-height: 1.5; }

.estate-page .estate-offer { background: var(--charcoal); }
.estate-page .estate-offer .section-name { color: var(--gold); }
.estate-page .estate-offer h2 { max-width: 680px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.6vw, 5rem); font-weight: 500; line-height: .94; }
.estate-page .estate-offer .cta-grid > div:first-child > p:not(.section-name) { max-width: 590px; color: rgba(255,255,255,.73); }
.estate-page .estate-offer ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; max-width: 590px; margin: 30px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.82); font-size: .86rem; }
.estate-page .estate-offer li::before { content: "✓"; margin-right: 8px; color: var(--gold); font-weight: 700; }
.estate-page .cta-action { display: grid; gap: 14px; max-width: 330px; padding: 26px; border: 1px solid rgba(255,255,255,.25); background: var(--navy); }
.estate-page .cta-action p, .estate-page .cta-action strong { margin: 0; color: rgba(255,255,255,.75); font-size: .85rem; line-height: 1.5; }
.estate-page .cta-action strong { color: #ffffff; }
.estate-page .cta-action .button { width: 100%; margin-top: 10px; background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.estate-page .cta-action small { color: rgba(255,255,255,.55); font-size: .7rem; line-height: 1.4; }

@media (max-width: 860px) {
  .estate-page .risk-list, .estate-page .framework-map, .estate-page .estate-process .step-list, .estate-page .takeaway-grid { grid-template-columns: 1fr; }
  .estate-page .risk-list article, .estate-page .risk-list article + article, .estate-page .takeaway-grid article, .estate-page .takeaway-grid article + article { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(50,48,49,.2); }
  .estate-page .risk-list article:last-child, .estate-page .takeaway-grid article:last-child { border-bottom: 0; }
  .estate-page .framework-nodes { grid-template-columns: repeat(2, 1fr); }
  .estate-page .estate-process .step { min-height: 280px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .estate-page .estate-process .step:last-child { border-bottom: 0; }
  .estate-page .shift-grid { grid-template-columns: 1fr; }
  .estate-page .shift-arrow { padding: 10px 0; transform: rotate(90deg); }
  .estate-page .fit-note { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .estate-page .hero-pill { transform: scale(.82); transform-origin: center; }
  .estate-page .hero-pill-one { left: 4px; top: 34px; }
  .estate-page .hero-pill-two { right: 2px; top: 148px; }
  .estate-page .hero-pill-three { left: 20px; bottom: 88px; }
  .estate-page .trust-row { gap: 7px; font-size: .58rem; }
  .estate-page .risk-list { margin-top: 48px; }
  .estate-page .framework-map { margin-top: 44px; }
  .estate-page .framework-core { min-height: 280px; padding: 28px; }
  .estate-page .framework-nodes { grid-template-columns: 1fr; }
  .estate-page .framework-nodes article { min-height: 116px; }
  .estate-page .estate-transformation { padding-block: 82px 90px; }
  .estate-page .shift-grid { margin-top: 44px; }
  .estate-page .takeaway-grid { margin-top: 48px; }
  .estate-page .estate-offer ul { grid-template-columns: 1fr; }
  .estate-page .cta-action { max-width: none; }
}

/* Trust planning page: purpose-first choices, clear roles and a confident next step. */
.trust-page .hero-copy > p:not(.tag) { max-width: 520px; }
.trust-page .hero-copy .hero-outcome { max-width: 520px; margin-top: 26px; color: rgba(50,48,49,.72); font-size: .86rem; line-height: 1.5; }
.trust-page .hero-outcome strong { color: var(--navy); }
.trust-page .trust-proofs { background: var(--charcoal); color: #ffffff; }
.trust-page .trust-proofs .wrap { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); }
.trust-page .trust-proofs .proof-intro { padding: 30px 28px 30px 0; color: rgba(255,255,255,.76); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; line-height: 1.1; }
.trust-page .trust-proofs .proof-intro strong { color: var(--gold); font-style: italic; font-weight: 500; }
.trust-page .trust-proofs .proof-item { display: grid; grid-template-columns: 30px 1fr; gap: 14px; min-height: 106px; align-items: center; padding: 22px; border-left: 1px solid rgba(255,255,255,.22); }
.trust-page .trust-proofs .proof-item > span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.trust-page .trust-proofs .proof-item b, .trust-page .trust-proofs .proof-item small { display: block; }
.trust-page .trust-proofs .proof-item b { font-size: .82rem; }
.trust-page .trust-proofs .proof-item small { margin-top: 5px; color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.35; }

.trust-page .trust-intro .section-name { color: var(--red); }
.trust-page .trust-intro .large-copy { color: var(--navy); font-size: 1.28rem; font-weight: 600; line-height: 1.45; }
.trust-page .trust-intro blockquote { margin: 30px 0 0; padding: 18px 0 0 18px; border-left: 3px solid var(--red); color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.18; }

.trust-page .trust-solutions { padding: 122px 0 132px; background: var(--navy); color: #ffffff; }
.trust-page .trust-section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr); gap: 80px; align-items: end; }
.trust-page .trust-section-heading h2 { max-width: 700px; color: #ffffff; font-size: clamp(2.8rem, 4.8vw, 5.2rem); line-height: .92; }
.trust-page .trust-section-heading h2 em { color: var(--gold); font-style: normal; }
.trust-page .trust-section-heading > p { max-width: 430px; margin: 0 0 3px; color: rgba(255,255,255,.72); font-size: .98rem; line-height: 1.6; }
.trust-page .trust-solutions .section-name { color: var(--gold); }
.trust-page .trust-option-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 64px; background: rgba(255,255,255,.28); }
.trust-page .trust-option { min-height: 540px; display: flex; flex-direction: column; background: #ffffff; color: var(--charcoal); }
.trust-page .trust-option.charitable { background: var(--charcoal); color: #ffffff; }
.trust-page .trust-option-head { padding: 34px 34px 28px; border-bottom: 1px solid rgba(50,48,49,.18); }
.trust-page .trust-option.charitable .trust-option-head { border-bottom-color: rgba(255,255,255,.22); }
.trust-page .trust-option-head > span { color: var(--red); font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.trust-page .trust-option.charitable .trust-option-head > span { color: var(--gold); }
.trust-page .trust-option h3 { margin-top: 64px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4vw, 4.2rem); font-weight: 500; line-height: .92; }
.trust-page .trust-option.charitable h3 { color: #ffffff; }
.trust-page .trust-option-head p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }
.trust-page .trust-option.charitable .trust-option-head p { color: rgba(255,255,255,.66); }
.trust-page .trust-option-body { display: flex; flex: 1; flex-direction: column; padding: 28px 34px 30px; }
.trust-page .trust-option-body > p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.58; }
.trust-page .trust-option.charitable .trust-option-body > p { color: rgba(255,255,255,.72); }
.trust-page .trust-option-body ul { display: grid; gap: 0; margin: 26px 0 0; padding: 0; list-style: none; }
.trust-page .trust-option-body li { padding: 13px 0; border-top: 1px solid rgba(50,48,49,.2); color: var(--navy); font-size: .86rem; }
.trust-page .trust-option.charitable .trust-option-body li { border-color: rgba(255,255,255,.22); color: #ffffff; }
.trust-page .trust-option-body li span { display: inline-block; width: 29px; color: var(--red); font-size: .68rem; font-weight: 700; }
.trust-page .trust-option.charitable .trust-option-body li span { color: var(--gold); }
.trust-page .trust-option-link { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 28px; color: var(--red); font-size: .84rem; font-weight: 700; }
.trust-page .trust-option.charitable .trust-option-link { color: var(--gold); }
.trust-page .trust-option-link span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 1.05rem; transition: transform .18s ease, background .18s ease, color .18s ease; }
.trust-page .trust-option-link:hover span, .trust-page .trust-option-link:focus-visible span { transform: rotate(45deg); background: currentColor; color: var(--charcoal); }
.trust-page .trust-disclaimer { margin: 24px 0 0; color: rgba(255,255,255,.56); font-size: .72rem; line-height: 1.45; }

.trust-page .trust-pathways { padding: 122px 0 132px; background: var(--charcoal); color: #ffffff; }
.trust-page .trust-section-heading.light h2 { color: #ffffff; }
.trust-page .trust-section-heading.light > p { color: rgba(255,255,255,.68); }
.trust-page .trust-section-heading.light .section-name { color: var(--gold); }
.trust-page .trust-pathway-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 66px; background: rgba(255,255,255,.24); }
.trust-page .trust-pathway-grid article { min-height: 360px; padding: 28px; background: var(--navy); }
.trust-page .trust-pathway-grid article + article { background: var(--teal); }
.trust-page .trust-pathway-grid article > span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.trust-page .trust-pathway-grid article > p { margin: 46px 0 0; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .15em; }
.trust-page .trust-pathway-grid h3 { max-width: 470px; margin-top: 13px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.2vw, 3.5rem); font-weight: 500; line-height: .95; }
.trust-page .trust-pathway-grid ul { display: grid; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.74); font-size: .84rem; }
.trust-page .trust-pathway-grid li::before { content: "✓"; margin-right: 8px; color: var(--gold); }

.trust-page .trust-coverage { padding: 122px 0 132px; background: #ffffff; }
.trust-page .trust-coverage .trust-section-heading h2 { color: var(--navy); }
.trust-page .trust-coverage .trust-section-heading > p { color: var(--muted); }
.trust-page .trust-coverage .section-name { color: var(--red); }
.trust-page .trust-coverage .trust-section-heading h2 em { color: var(--red); }
.trust-page .coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid rgba(50,48,49,.2); border-bottom: 1px solid rgba(50,48,49,.2); }
.trust-page .coverage-grid article { min-height: 260px; padding: 23px 20px 24px 0; border-right: 1px solid rgba(50,48,49,.2); }
.trust-page .coverage-grid article + article { padding-left: 20px; }
.trust-page .coverage-grid article:last-child { border-right: 0; }
.trust-page .coverage-grid article > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.trust-page .coverage-grid h3 { margin-top: 86px; color: var(--navy); font-size: 1.3rem; }
.trust-page .coverage-grid p { margin: 10px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

.trust-page .trust-process { padding: 124px 0 136px; background: var(--teal); color: #ffffff; }
.trust-page .process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: start; }
.trust-page .process-copy .section-name { color: var(--gold); }
.trust-page .process-copy h2 { margin-top: 18px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.5vw, 5rem); font-weight: 500; line-height: .92; }
.trust-page .process-copy h2 em { color: var(--gold); font-style: normal; }
.trust-page .process-copy > p:not(.section-name) { margin: 25px 0 0; color: rgba(255,255,255,.75); line-height: 1.6; }
.trust-page .process-copy .text-link { display: inline-block; margin-top: 28px; color: #ffffff; border-color: var(--gold); }
.trust-page .trust-steps { border-top: 1px solid rgba(255,255,255,.3); }
.trust-page .trust-steps article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.trust-page .trust-steps article > span { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .11em; }
.trust-page .trust-steps h3 { color: #ffffff; font-size: 1.35rem; }
.trust-page .trust-steps p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.5; }

.trust-page .trust-benefits { padding: 120px 0 132px; background: var(--navy); color: #ffffff; }
.trust-page .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 66px; background: rgba(255,255,255,.25); }
.trust-page .benefits-grid article { min-height: 245px; padding: 24px; background: var(--charcoal); }
.trust-page .benefits-grid article:nth-child(2) { background: var(--teal); }
.trust-page .benefits-grid article:nth-child(3) { background: var(--red); }
.trust-page .benefits-grid article > span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.trust-page .benefits-grid h3 { margin-top: 72px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; line-height: .98; }
.trust-page .benefits-grid p { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: .84rem; line-height: 1.5; }

.trust-page .trust-faq { padding: 122px 0 132px; background: #ffffff; }
.trust-page .trust-faq .trust-section-heading h2 { color: var(--navy); }
.trust-page .trust-faq .trust-section-heading h2 em { color: var(--red); }
.trust-page .trust-faq .trust-section-heading > p { color: var(--muted); }
.trust-page .trust-faq .section-name { color: var(--red); }
.trust-page .faq-list { margin-top: 64px; border-top: 1px solid rgba(50,48,49,.22); }
.trust-page .faq-list details { border-bottom: 1px solid rgba(50,48,49,.22); }
.trust-page .faq-list summary { display: grid; grid-template-columns: 48px 1fr 24px; gap: 16px; align-items: center; padding: 22px 0; color: var(--navy); cursor: pointer; font-size: 1.02rem; font-weight: 700; list-style: none; }
.trust-page .faq-list summary::-webkit-details-marker { display: none; }
.trust-page .faq-list summary::after { content: "+"; color: var(--red); font-size: 1.25rem; font-weight: 400; }
.trust-page .faq-list details[open] summary::after { content: "−"; }
.trust-page .faq-list summary span { color: var(--red); font-size: .7rem; letter-spacing: .11em; }
.trust-page .faq-list details p { max-width: 690px; margin: 0 68px 24px; color: var(--muted); font-size: .9rem; line-height: 1.58; }

.trust-page .trust-cta { padding: 116px 0; background: var(--charcoal); }
.trust-page .trust-cta .section-name { color: var(--gold); }
.trust-page .trust-cta h2 { max-width: 760px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.6vw, 5rem); font-weight: 500; line-height: .93; }
.trust-page .trust-cta .cta-grid > div:first-child > p:not(.section-name) { max-width: 630px; color: rgba(255,255,255,.72); }
.trust-page .trust-cta-action { display: grid; gap: 16px; max-width: 330px; padding: 26px; border: 1px solid rgba(255,255,255,.24); background: var(--navy); }
.trust-page .trust-cta-action strong { color: #ffffff; font-size: .9rem; line-height: 1.45; }
.trust-page .trust-cta-action .button { width: 100%; background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.trust-page .trust-cta-action small { color: rgba(255,255,255,.58); font-size: .7rem; line-height: 1.4; }

@media (max-width: 860px) {
  .trust-page .trust-proofs .wrap, .trust-page .trust-section-heading, .trust-page .trust-option-grid, .trust-page .trust-pathway-grid, .trust-page .process-grid, .trust-page .benefits-grid { grid-template-columns: 1fr; }
  .trust-page .trust-proofs .proof-intro { border-bottom: 1px solid rgba(255,255,255,.22); }
  .trust-page .trust-proofs .proof-item { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .trust-page .trust-proofs .proof-item:last-child { border-bottom: 0; }
  .trust-page .trust-section-heading { gap: 26px; }
  .trust-page .trust-section-heading > p { max-width: 620px; }
  .trust-page .trust-option { min-height: 0; }
  .trust-page .trust-pathway-grid article { min-height: 300px; }
  .trust-page .coverage-grid { grid-template-columns: 1fr 1fr; }
  .trust-page .coverage-grid article:nth-child(2) { border-right: 0; }
  .trust-page .coverage-grid article:nth-child(3), .trust-page .coverage-grid article:nth-child(4) { border-top: 1px solid rgba(50,48,49,.2); }
  .trust-page .coverage-grid article:nth-child(4) { border-right: 0; }
  .trust-page .process-grid { gap: 54px; }
}

@media (max-width: 640px) {
  .trust-page .trust-proofs .proof-intro { padding: 24px 0; }
  .trust-page .trust-proofs .proof-item { padding: 18px 0; }
  .trust-page .trust-solutions, .trust-page .trust-pathways, .trust-page .trust-coverage, .trust-page .trust-process, .trust-page .trust-benefits, .trust-page .trust-faq { padding-block: 82px 90px; }
  .trust-page .trust-option-head, .trust-page .trust-option-body { padding-inline: 25px; }
  .trust-page .trust-option h3 { margin-top: 46px; }
  .trust-page .trust-pathway-grid article { min-height: 0; padding: 26px; }
  .trust-page .coverage-grid { grid-template-columns: 1fr; }
  .trust-page .coverage-grid article, .trust-page .coverage-grid article + article { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(50,48,49,.2); }
  .trust-page .coverage-grid article:last-child { border-bottom: 0; }
  .trust-page .coverage-grid h3 { margin-top: 34px; }
  .trust-page .benefits-grid article { min-height: 0; }
  .trust-page .benefits-grid h3 { margin-top: 44px; }
  .trust-page .faq-list summary { grid-template-columns: 36px 1fr 20px; gap: 10px; font-size: .9rem; }
  .trust-page .faq-list details p { margin-inline: 46px 20px; }
  .trust-page .trust-cta-action { max-width: none; }
}

/* Wealth Planner career page: transparent expectations with a clear route in. */
.career-page .career-trust { display: flex; flex-wrap: wrap; gap: 9px 22px; margin: 27px 0 0; padding: 0; list-style: none; color: var(--navy); font-size: .72rem; font-weight: 700; }
.career-page .career-trust li::before { content: "✓"; margin-right: 7px; color: var(--red); }
.career-page .career-disclaimer { max-width: 550px; margin-top: 22px; color: rgba(50,48,49,.6); font-size: .72rem; line-height: 1.45; }
.career-page .career-disclaimer strong { color: var(--navy); }
.career-page .career-hero .hero-image { overflow: hidden; }
.career-page .career-image-caption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 28px; display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.4); color: #ffffff; }
.career-page .career-image-caption span { color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .14em; }
.career-page .career-image-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; line-height: .95; }

.career-page .career-problem { background: #ffffff; }
.career-page .career-problem .section-name { color: var(--red); }
.career-page .career-problem .large-copy { color: var(--navy); font-size: 1.22rem; font-weight: 600; line-height: 1.45; }
.career-page .goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 72px; background: rgba(50,48,49,.2); }
.career-page .goal-grid article { min-height: 260px; padding: 24px 22px 28px; background: #f3f3f1; }
.career-page .goal-grid article:nth-child(2) { background: var(--gold); }
.career-page .goal-grid article:nth-child(3) { background: var(--teal); color: #ffffff; }
.career-page .goal-grid article > span { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.career-page .goal-grid article:nth-child(3) > span { color: var(--gold); }
.career-page .goal-grid h3 { margin-top: 70px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 500; line-height: .97; }
.career-page .goal-grid article:nth-child(3) h3 { color: #ffffff; }
.career-page .goal-grid p { margin: 12px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.career-page .goal-grid article:nth-child(3) p { color: rgba(255,255,255,.76); }
.career-page .goal-grid a { display: inline-flex; gap: 12px; align-items: center; margin-top: 22px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--red); font-size: .78rem; font-weight: 700; }
.career-page .goal-grid article:nth-child(2) a { color: var(--navy); }
.career-page .goal-grid article:nth-child(3) a { color: var(--gold); }

.career-page .career-role { padding: 122px 0 132px; background: var(--navy); color: #ffffff; }
.career-page .career-section-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(250px, .9fr); gap: 76px; align-items: end; }
.career-page .career-section-heading.centered { display: block; max-width: 820px; text-align: center; margin-inline: auto; }
.career-page .career-section-heading .section-name { color: var(--gold); }
.career-page .career-section-heading h2 { max-width: 750px; margin-top: 18px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.8vw, 5.2rem); font-weight: 500; line-height: .92; }
.career-page .career-section-heading h2 em { color: var(--gold); font-style: normal; }
.career-page .career-section-heading > p { max-width: 440px; margin: 0 0 3px; color: rgba(255,255,255,.72); font-size: .98rem; line-height: 1.6; }
.career-page .role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 66px; background: rgba(255,255,255,.24); }
.career-page .role-grid article { min-height: 290px; padding: 23px 22px 25px; background: var(--charcoal); }
.career-page .role-grid article:nth-child(2) { background: var(--teal); }
.career-page .role-grid article:nth-child(3) { background: #3d3a3b; }
.career-page .role-grid article:nth-child(4) { background: var(--red); }
.career-page .role-grid article > span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.career-page .role-grid h3 { margin-top: 72px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; line-height: .96; }
.career-page .role-grid p { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: .83rem; line-height: 1.5; }
.career-page .career-credibility { display: grid; grid-template-columns: 58px 1fr auto; gap: 20px; align-items: center; margin-top: 34px; padding: 23px; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.12); }
.career-page .career-credibility-mark { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--gold); color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.career-page .career-credibility span { color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .13em; }
.career-page .career-credibility h3 { margin-top: 7px; color: #ffffff; font-size: 1.08rem; }
.career-page .career-credibility p { max-width: 650px; margin: 7px 0 0; color: rgba(255,255,255,.65); font-size: .77rem; line-height: 1.45; }
.career-page .career-credibility a { color: var(--gold); font-size: .76rem; font-weight: 700; white-space: nowrap; }

.career-page .career-program { padding: 122px 0 132px; background: var(--gold); color: var(--charcoal); }
.career-page .career-program-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: start; }
.career-page .career-program-grid > div:first-child .section-name { color: var(--red); }
.career-page .career-program-grid h2 { max-width: 650px; margin-top: 18px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.8vw, 5.1rem); font-weight: 500; line-height: .92; }
.career-page .career-program-grid > div:first-child > p:last-child { max-width: 520px; margin-top: 28px; color: rgba(50,48,49,.74); font-size: 1rem; line-height: 1.6; }
.career-page .career-program-card { padding: 30px; background: var(--navy); color: #ffffff; box-shadow: 7px 7px 0 var(--charcoal); }
.career-page .career-program-card > span { color: var(--gold); font-size: .67rem; font-weight: 700; letter-spacing: .14em; }
.career-page .career-program-card h3 { margin-top: 64px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: 2.3rem; font-weight: 500; line-height: .94; }
.career-page .career-program-card ul { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; }
.career-page .career-program-card li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.75); font-size: .82rem; line-height: 1.45; }
.career-page .career-program-card li b { display: inline-block; width: 28px; color: var(--gold); font-size: .68rem; }
.career-page .career-program-card .button { width: 100%; margin-top: 28px; background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.career-page .career-program-card small { display: block; margin-top: 14px; color: rgba(255,255,255,.56); font-size: .7rem; }

.career-page .career-fit { padding: 0; background: #ffffff; }
.career-page .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(50,48,49,.2); }
.career-page .fit-column { min-height: 440px; padding: 42px; }
.career-page .fit-column.fit-yes { background: var(--teal); color: #ffffff; }
.career-page .fit-column.fit-no { background: #f3f3f1; color: var(--charcoal); }
.career-page .fit-column .section-name { color: var(--gold); }
.career-page .fit-column.fit-no .section-name { color: var(--red); }
.career-page .fit-column h2 { max-width: 430px; margin-top: 70px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 3.6vw, 4rem); font-weight: 500; line-height: .92; }
.career-page .fit-column.fit-no h2 { color: var(--navy); }
.career-page .fit-column h2 em { color: var(--gold); font-style: normal; }
.career-page .fit-column.fit-no h2 em { color: var(--red); }
.career-page .fit-column ul { display: grid; gap: 0; max-width: 520px; margin: 32px 0 0; padding: 0; list-style: none; }
.career-page .fit-column li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.8); font-size: .84rem; }
.career-page .fit-column.fit-no li { border-top-color: rgba(50,48,49,.2); color: var(--muted); }
.career-page .fit-column li span { display: inline-block; width: 25px; color: var(--gold); font-weight: 700; }
.career-page .fit-column.fit-no li span { color: var(--red); }

.career-page .career-steps { padding: 122px 0 132px; background: var(--charcoal); color: #ffffff; }
.career-page .career-steps .career-section-heading h2 { margin-inline: auto; }
.career-page .steps-track { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; align-items: center; margin-top: 66px; border-top: 1px solid rgba(255,255,255,.26); border-bottom: 1px solid rgba(255,255,255,.26); }
.career-page .steps-track article { min-height: 250px; padding: 24px 22px 28px 0; }
.career-page .steps-track article + article { padding-left: 22px; }
.career-page .steps-track article > span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.career-page .steps-track h3 { margin-top: 80px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 500; line-height: .96; }
.career-page .steps-track p { margin: 11px 0 0; color: rgba(255,255,255,.67); font-size: .82rem; line-height: 1.5; }
.career-page .steps-track > i { color: var(--red); font-size: 2rem; font-style: normal; text-align: center; }

.career-page .career-faq { padding: 122px 0 132px; background: #ffffff; }
.career-page .career-faq .career-section-heading h2 { color: var(--navy); }
.career-page .career-faq .career-section-heading > p { color: var(--muted); }
.career-page .career-faq .section-name { color: var(--red); }
.career-page .career-faq-list { margin-top: 64px; border-top: 1px solid rgba(50,48,49,.22); }
.career-page .career-faq-list details { border-bottom: 1px solid rgba(50,48,49,.22); }
.career-page .career-faq-list summary { display: grid; grid-template-columns: 46px 1fr 24px; gap: 16px; align-items: center; padding: 22px 0; color: var(--navy); cursor: pointer; font-size: 1rem; font-weight: 700; list-style: none; }
.career-page .career-faq-list summary::-webkit-details-marker { display: none; }
.career-page .career-faq-list summary::after { content: "+"; color: var(--red); font-size: 1.25rem; font-weight: 400; }
.career-page .career-faq-list details[open] summary::after { content: "−"; }
.career-page .career-faq-list summary span { color: var(--red); font-size: .7rem; letter-spacing: .1em; }
.career-page .career-faq-list details p { max-width: 700px; margin: 0 64px 24px; color: var(--muted); font-size: .9rem; line-height: 1.58; }

.career-page .career-cta { padding: 116px 0; background: var(--red); }
.career-page .career-cta .section-name { color: var(--gold); }
.career-page .career-cta h2 { max-width: 720px; color: #ffffff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 4.6vw, 5rem); font-weight: 500; line-height: .93; }
.career-page .career-cta .cta-grid > div:first-child > p:not(.section-name) { max-width: 590px; color: rgba(255,255,255,.82); }
.career-page .career-cta-action { display: grid; gap: 15px; max-width: 320px; padding: 26px; background: var(--charcoal); }
.career-page .career-cta-action strong { color: #ffffff; font-size: .9rem; }
.career-page .career-cta-action .button { width: 100%; background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.career-page .career-cta-action small { color: rgba(255,255,255,.58); font-size: .7rem; line-height: 1.4; }

@media (max-width: 860px) {
  .career-page .career-section-heading, .career-page .career-program-grid, .career-page .fit-grid { grid-template-columns: 1fr; }
  .career-page .career-section-heading { gap: 25px; }
  .career-page .career-section-heading > p { max-width: 620px; }
  .career-page .goal-grid, .career-page .role-grid { grid-template-columns: 1fr 1fr; }
  .career-page .goal-grid article:nth-child(3) { grid-column: 1 / -1; }
  .career-page .role-grid article { min-height: 245px; }
  .career-page .career-program-grid { gap: 52px; }
  .career-page .steps-track { grid-template-columns: 1fr; }
  .career-page .steps-track article, .career-page .steps-track article + article { min-height: 0; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .career-page .steps-track article:last-of-type { border-bottom: 0; }
  .career-page .steps-track article h3 { margin-top: 38px; }
  .career-page .steps-track > i { display: none; }
}

@media (max-width: 640px) {
  .career-page .career-trust { gap: 8px 15px; font-size: .64rem; }
  .career-page .career-disclaimer { font-size: .68rem; }
  .career-page .goal-grid, .career-page .role-grid { grid-template-columns: 1fr; }
  .career-page .goal-grid article:nth-child(3) { grid-column: auto; }
  .career-page .goal-grid article, .career-page .role-grid article { min-height: 0; }
  .career-page .goal-grid h3, .career-page .role-grid h3 { margin-top: 40px; }
  .career-page .career-credibility { grid-template-columns: 48px 1fr; }
  .career-page .career-credibility a { grid-column: 2; }
  .career-page .career-program, .career-page .career-role, .career-page .career-steps, .career-page .career-faq { padding-block: 82px 90px; }
  .career-page .career-program-card { padding: 25px; }
  .career-page .fit-column { min-height: 0; padding: 34px 25px; }
  .career-page .fit-column h2 { margin-top: 44px; }
  .career-page .career-faq-list summary { grid-template-columns: 36px 1fr 20px; gap: 10px; font-size: .9rem; }
  .career-page .career-faq-list details p { margin-inline: 46px 18px; }
  .career-page .career-cta-action { max-width: none; }
}

/* Accessibility pass: preserve the palette while keeping labels readable. */
.solution-page .hero .tag { color: #084c61; }
.estate-page .estate-framework .section-name,
.estate-page .estate-process .section-name { color: #ffc857; }
.career-page .career-program-grid > div:first-child .section-name,
.career-page .career-faq .section-name,
.career-page .fit-column.fit-no .section-name { color: #084c61; }

@media (max-width: 640px) {
  .solution-page .navigation a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* UI UX Pro Max pass for all static solution routes. */
.solution-page {
  --ux-paper: #f6f8f7;
  --ux-white: #ffffff;
  --ux-ink: #323031;
  --ux-deep: #084c61;
  --ux-teal: #177e89;
  --ux-gold: #ffc857;
  --ux-red: #db3a34;
  --ux-line: rgba(8, 76, 97, .18);
  --ux-muted: #5a6668;
  background: var(--ux-paper);
  color: var(--ux-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.solution-page h1,
.solution-page h2,
.solution-page h3 { font-family: inherit; letter-spacing: -.045em; text-wrap: balance; }
.solution-page .topbar { width: 100%; padding-inline: max(24px, calc((100vw - 1240px) / 2)); background: var(--ux-deep); border-bottom: 1px solid rgba(255,255,255,.17); }
.solution-page .brand,
.solution-page .navigation { color: #ffffff; }
.solution-page .brand-mark { border-color: var(--ux-gold); border-radius: 50%; color: var(--ux-gold); }
.solution-page .navigation a { color: rgba(255,255,255,.76); }
.solution-page .navigation a:hover,
.solution-page .navigation a:focus-visible { color: var(--ux-gold); }
.solution-page .navigation-cta { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 0 15px; border: 1px solid var(--ux-gold); border-radius: 8px; background: var(--ux-gold); color: var(--ux-ink) !important; font-weight: 700; }
.solution-page .navigation-cta:hover,
.solution-page .navigation-cta:focus-visible { background: var(--ux-white); border-color: var(--ux-white); transform: translateY(-2px); }
.solution-page .hero { padding: 32px 0 76px; background: var(--ux-paper); }
.solution-page .hero-grid { min-height: 640px; grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); gap: 0; border-radius: 14px; background: var(--ux-deep); box-shadow: 0 18px 44px rgba(8,76,97,.12); }
.solution-page .hero-copy { padding: clamp(42px, 6vw, 84px); }
.solution-page .tag,
.solution-page .section-name { color: var(--ux-gold); }
.solution-page h1 { max-width: 660px; color: #ffffff; font-size: clamp(3rem, 5.4vw, 5.8rem); line-height: .92; }
.solution-page .hero-copy > p:not(.tag) { color: rgba(255,255,255,.78); }
.solution-page .actions { gap: 16px; }
.solution-page .button { min-height: 50px; border: 1px solid var(--ux-gold); border-radius: 8px; background: var(--ux-gold); color: var(--ux-ink); box-shadow: none; }
.solution-page .button:hover,
.solution-page .button:focus-visible { background: #ffffff; border-color: #ffffff; color: var(--ux-ink); transform: translateY(-2px); }
.solution-page .text-link { color: #ffffff; border-bottom-color: var(--ux-gold); }
.solution-page .text-link:hover,
.solution-page .text-link:focus-visible { color: var(--ux-gold); }
.solution-page .hero-image { min-height: 100%; background: var(--ux-teal); }
.solution-page .hero-image::after { background: linear-gradient(90deg, rgba(8,76,97,.42), transparent 46%); }
.solution-page .hero-image img { filter: saturate(.82) contrast(1.05); }
.solution-page .image-note { right: 22px; bottom: 22px; border-radius: 8px; background: var(--ux-gold); color: var(--ux-ink); }
.solution-page .hero-outcome { color: rgba(255,255,255,.76) !important; }

.solution-page .intro,
.solution-page .estate-problem,
.solution-page .career-problem,
.solution-page .trust-intro { padding: 112px 0; background: var(--ux-paper); }
.solution-page .intro-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 9vw; }
.solution-page .intro h2 { color: var(--ux-deep); font-size: clamp(2.7rem, 4.8vw, 5.1rem); line-height: .94; }
.solution-page .intro h2 em { color: var(--ux-teal); }
.solution-page .intro-copy { color: var(--ux-muted); }
.solution-page .intro-copy .large-copy { color: var(--ux-deep); }
.solution-page .intro-copy blockquote { border-left-color: var(--ux-gold); color: var(--ux-deep); }

.solution-page .panel-section,
.solution-page .career-role,
.solution-page .trust-solutions,
.solution-page .trust-coverage { padding: 112px 0; background: #e9f0ee; color: var(--ux-ink); }
.solution-page .heading h2,
.solution-page .trust-section-heading h2,
.solution-page .career-section-heading h2 { color: var(--ux-deep); font-size: clamp(2.6rem, 4.6vw, 4.9rem); line-height: .94; }
.solution-page .heading p:not(.section-name),
.solution-page .trust-section-heading > p,
.solution-page .career-section-heading > p { color: var(--ux-muted); }
.solution-page .section-name { color: var(--ux-red); }

.solution-page .framework-map,
.solution-page .coverage-grid,
.solution-page .goal-grid,
.solution-page .role-grid,
.solution-page .trust-option-grid,
.solution-page .trust-pathway-grid,
.solution-page .benefits-grid { gap: 12px; background: transparent; }
.solution-page .framework-core,
.solution-page .framework-nodes article,
.solution-page .coverage-grid article,
.solution-page .goal-grid article,
.solution-page .role-grid article,
.solution-page .trust-option,
.solution-page .trust-pathway-grid article,
.solution-page .benefits-grid article { border-radius: 12px; }
.solution-page .framework-core { background: var(--ux-deep); color: #ffffff; }
.solution-page .framework-nodes article,
.solution-page .coverage-grid article,
.solution-page .goal-grid article,
.solution-page .role-grid article { background: var(--ux-white); border: 1px solid var(--ux-line); color: var(--ux-ink); }
.solution-page .framework-nodes article > span,
.solution-page .coverage-grid article > span,
.solution-page .goal-grid article > span,
.solution-page .role-grid article > span { color: var(--ux-red); }
.solution-page .framework-nodes article strong,
.solution-page .coverage-grid h3,
.solution-page .goal-grid h3,
.solution-page .role-grid h3 { color: var(--ux-deep); }
.solution-page .framework-nodes article small,
.solution-page .coverage-grid p,
.solution-page .goal-grid p,
.solution-page .role-grid p { color: var(--ux-muted); }

.solution-page .steps,
.solution-page .trust-pathways,
.solution-page .career-steps { padding: 112px 0; background: var(--ux-deep); color: #ffffff; }
.solution-page .steps .heading h2,
.solution-page .trust-pathways .trust-section-heading h2,
.solution-page .career-steps .career-section-heading h2 { color: #ffffff; }
.solution-page .steps .heading p:not(.section-name),
.solution-page .trust-pathways .trust-section-heading > p,
.solution-page .career-steps .career-section-heading > p { color: rgba(255,255,255,.76); }
.solution-page .steps .section-name,
.solution-page .trust-pathways .section-name,
.solution-page .career-steps .section-name { color: var(--ux-gold); }
.solution-page .step-list { gap: 12px; border: 0; }
.solution-page .step { min-height: 290px; border: 0; border-radius: 12px; background: rgba(255,255,255,.08); color: #ffffff; }
.solution-page .step:nth-child(2) { background: var(--ux-teal); }
.solution-page .step:nth-child(3) { background: var(--ux-ink); }
.solution-page .step small { color: var(--ux-gold); }
.solution-page .step p { color: rgba(255,255,255,.76); }

.solution-page .estate-transformation,
.solution-page .trust-process,
.solution-page .career-program,
.solution-page .career-fit,
.solution-page .trust-faq,
.solution-page .career-faq { padding: 112px 0; background: var(--ux-paper); color: var(--ux-ink); }
.solution-page .shift-grid { gap: 12px; }
.solution-page .shift-card { border: 1px solid var(--ux-line); border-radius: 12px; background: var(--ux-white); }
.solution-page .shift-card.after { background: #e9f0ee; }
.solution-page .shift-card h3 { color: var(--ux-deep); }
.solution-page .shift-card li { color: var(--ux-muted); }
.solution-page .takeaway-grid { gap: 12px; }
.solution-page .takeaway-grid article { border: 1px solid var(--ux-line); border-radius: 12px; background: var(--ux-white); }
.solution-page .takeaway-grid span { color: var(--ux-red); }
.solution-page .takeaway-grid strong { color: var(--ux-deep); }
.solution-page .takeaway-grid p { color: var(--ux-muted); }

.solution-page .trust-option,
.solution-page .career-program-card { border: 0; border-radius: 12px; box-shadow: 0 18px 44px rgba(8,76,97,.12); }
.solution-page .trust-option-head { background: var(--ux-deep); }
.solution-page .trust-option.charitable .trust-option-head { background: var(--ux-teal); }
.solution-page .trust-option-body { background: var(--ux-white); color: var(--ux-ink); }
.solution-page .trust-option-body p,
.solution-page .trust-option-body li { color: var(--ux-muted); }
.solution-page .trust-option-link { color: var(--ux-deep); }
.solution-page .trust-option-link:hover,
.solution-page .trust-option-link:focus-visible { color: var(--ux-teal); }
.solution-page .trust-disclaimer,
.solution-page .fit-note { color: var(--ux-muted); }
.solution-page .trust-pathway-grid article { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); }
.solution-page .trust-pathway-grid article > span { color: var(--ux-gold); }
.solution-page .trust-pathway-grid article p { color: var(--ux-gold); }
.solution-page .trust-pathway-grid article h3 { color: #ffffff; }
.solution-page .trust-pathway-grid article li { color: rgba(255,255,255,.75); }
.solution-page .coverage-grid article { min-height: 220px; }
.solution-page .trust-process .process-copy h2,
.solution-page .trust-faq .trust-section-heading h2,
.solution-page .career-faq .career-section-heading h2 { color: var(--ux-deep); }
.solution-page .trust-steps article,
.solution-page .career-page .career-credibility { border-color: var(--ux-line); }
.solution-page .trust-steps article > span { color: var(--ux-red); }
.solution-page .trust-steps article h3 { color: var(--ux-deep); }
.solution-page .trust-steps article p { color: var(--ux-muted); }

.solution-page .career-program { background: var(--ux-gold); }
.solution-page .career-program-grid h2 { color: var(--ux-deep); }
.solution-page .career-program-grid > div:first-child > p:last-child { color: rgba(50,48,49,.76); }
.solution-page .career-program-card { background: var(--ux-deep); color: #ffffff; }
.solution-page .career-program-card .button { background: var(--ux-gold); color: var(--ux-ink); }
.solution-page .fit-grid { gap: 12px; background: transparent; }
.solution-page .fit-column { border-radius: 12px; }
.solution-page .fit-column.fit-yes { background: var(--ux-teal); }
.solution-page .fit-column.fit-no { background: var(--ux-white); border: 1px solid var(--ux-line); }
.solution-page .fit-column h2 { color: #ffffff; }
.solution-page .fit-column.fit-no h2 { color: var(--ux-deep); }
.solution-page .fit-column li { border-color: rgba(255,255,255,.25); }
.solution-page .fit-column.fit-no li { border-color: var(--ux-line); color: var(--ux-muted); }
.solution-page .fit-column.fit-no .section-name { color: var(--ux-red); }

.solution-page .faq-list,
.solution-page .career-faq-list { border-top-color: var(--ux-line); }
.solution-page .faq-list details,
.solution-page .career-faq-list details { border-bottom-color: var(--ux-line); }
.solution-page .faq-list summary,
.solution-page .career-faq-list summary { color: var(--ux-deep); }
.solution-page .faq-list summary span,
.solution-page .career-faq-list summary span { color: var(--ux-red); }
.solution-page .faq-list summary::after,
.solution-page .career-faq-list summary::after { color: var(--ux-red); }
.solution-page .faq-list details p,
.solution-page .career-faq-list details p { color: var(--ux-muted); }

.solution-page .cta { padding: 110px 0; background: var(--ux-ink); }
.solution-page .cta h2 { color: var(--ux-gold); font-size: clamp(2.7rem, 4.7vw, 5.1rem); line-height: .94; }
.solution-page .cta p { color: rgba(255,255,255,.76); }
.solution-page .cta .button { background: var(--ux-gold); border-color: var(--ux-gold); color: var(--ux-ink); }
.solution-page .cta .button:hover,
.solution-page .cta .button:focus-visible { background: #ffffff; border-color: #ffffff; }
.solution-page footer { background: var(--ux-deep); color: rgba(255,255,255,.74); }
.solution-page .footer-grid { border-top-color: rgba(255,255,255,.22); }
.solution-page .footer-grid strong { color: #ffffff; }

@media (max-width: 900px) {
  .solution-page .topbar { padding-inline: 20px; }
  .solution-page .navigation { flex-wrap: wrap; justify-content: flex-end; gap: 10px 16px; }
  .solution-page .hero-grid,
  .solution-page .intro-grid { grid-template-columns: 1fr; }
  .solution-page .hero-image { min-height: 390px; }
  .solution-page .framework-map { grid-template-columns: 1fr; }
  .solution-page .framework-nodes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .solution-page .topbar { position: relative; padding: 16px; }
  .solution-page .hero { padding-block: 20px 56px; }
  .solution-page .hero-grid { min-height: 0; }
  .solution-page .hero-copy { padding: 42px 25px; }
  .solution-page h1 { font-size: clamp(3rem, 13vw, 4.2rem); }
  .solution-page .hero-image { min-height: 280px; }
  .solution-page .intro,
  .solution-page .panel-section,
  .solution-page .steps,
  .solution-page .estate-transformation,
  .solution-page .trust-solutions,
  .solution-page .trust-pathways,
  .solution-page .trust-coverage,
  .solution-page .trust-process,
  .solution-page .trust-faq,
  .solution-page .career-role,
  .solution-page .career-program,
  .solution-page .career-fit,
  .solution-page .career-steps,
  .solution-page .career-faq,
  .solution-page .cta { padding-block: 78px; }
  .solution-page .framework-nodes,
  .solution-page .goal-grid,
  .solution-page .role-grid,
  .solution-page .coverage-grid,
  .solution-page .benefits-grid { grid-template-columns: 1fr; }
  .solution-page .step-list,
  .solution-page .trust-option-grid,
  .solution-page .trust-pathway-grid,
  .solution-page .fit-grid { grid-template-columns: 1fr; }
  .solution-page .framework-nodes article,
  .solution-page .coverage-grid article,
  .solution-page .goal-grid article,
  .solution-page .role-grid article { min-height: 0; }
  .solution-page .cta-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .solution-page *, .solution-page *::before, .solution-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Static-route contrast correction: never let legacy declarations win over the current surface. */
.solution-page .hero-copy .tag { color: var(--ux-gold) !important; }
.solution-page .hero-copy .hero-outcome,
.solution-page .hero-copy .hero-outcome strong,
.solution-page .hero-copy .career-trust,
.solution-page .hero-copy .career-trust li,
.solution-page .hero-copy .career-disclaimer,
.solution-page .hero-copy .career-disclaimer strong { color: rgba(255,255,255,.86) !important; }
.solution-page .hero-copy .career-trust li::before { color: var(--ux-gold) !important; }
.solution-page .panel-section .section-name,
.solution-page .steps .section-name,
.solution-page .career-role .section-name,
.solution-page .trust-solutions .section-name,
.solution-page .trust-coverage .section-name { color: var(--ux-deep) !important; }
.solution-page .panel-section .heading h2,
.solution-page .career-role .career-section-heading h2,
.solution-page .trust-solutions .trust-section-heading h2,
.solution-page .trust-coverage .trust-section-heading h2 { color: var(--ux-deep) !important; }
.solution-page .panel-section .heading p:not(.section-name),
.solution-page .career-role .career-section-heading > p,
.solution-page .trust-solutions .trust-section-heading > p,
.solution-page .trust-coverage .trust-section-heading > p { color: var(--ux-muted) !important; }
.solution-page .estate-framework .framework-core,
.solution-page .estate-framework .framework-core strong,
.solution-page .estate-framework .framework-core small,
.solution-page .estate-framework .framework-core span { color: #ffffff !important; }
.solution-page .framework-nodes article,
.solution-page .framework-nodes article:nth-child(n),
.solution-page .framework-nodes article strong,
.solution-page .framework-nodes article small { background: #ffffff !important; color: var(--ux-deep) !important; }
.solution-page .trust-row,
.solution-page .trust-row span { color: rgba(255,255,255,.86) !important; }
.solution-page .trust-row i { background: var(--ux-gold) !important; }
.solution-page .trust-option-head h3,
.solution-page .trust-option-head p,
.solution-page .trust-option-head span { color: #ffffff !important; }
.solution-page .trust-option-body,
.solution-page .trust-option-body p,
.solution-page .trust-option-body li,
.solution-page .trust-option-body strong { color: var(--ux-ink) !important; }
.solution-page .trust-option-body li span { color: var(--ux-red) !important; }
.solution-page .trust-option-link { color: var(--ux-deep) !important; }
.solution-page .trust-option.charitable .trust-option-body,
.solution-page .trust-option.charitable .trust-option-body p,
.solution-page .trust-option.charitable .trust-option-body li,
.solution-page .trust-option.charitable .trust-option-body strong { color: var(--ux-ink) !important; }
.solution-page .trust-pathways .section-name,
.solution-page .trust-process .section-name,
.solution-page .trust-benefits .section-name,
.solution-page .career-steps .section-name,
.solution-page .career-program .section-name { color: var(--ux-gold) !important; }
.solution-page .trust-process .process-copy h2,
.solution-page .trust-process .process-copy h2 em { color: var(--ux-deep) !important; }
.solution-page .trust-process .process-copy > p:not(.section-name),
.solution-page .trust-process .trust-steps p { color: var(--ux-muted) !important; }
.solution-page .trust-process .trust-steps h3 { color: var(--ux-deep) !important; }
.solution-page .career-role .role-grid article,
.solution-page .career-role .role-grid article:nth-child(1),
.solution-page .career-role .role-grid article:nth-child(2),
.solution-page .career-role .role-grid article:nth-child(3),
.solution-page .career-role .role-grid article:nth-child(4) { background: #ffffff !important; color: var(--ux-deep) !important; }
.solution-page .career-role .role-grid article > span,
.solution-page .career-role .role-grid h3,
.solution-page .career-role .role-grid p { color: var(--ux-deep) !important; }
.solution-page .career-problem .goal-grid article:nth-child(2) p,
.solution-page .career-problem .goal-grid article:nth-child(2) h3,
.solution-page .career-problem .goal-grid article:nth-child(2) a { color: var(--ux-ink) !important; }
.solution-page .career-problem .goal-grid article:nth-child(3) p,
.solution-page .career-problem .goal-grid article:nth-child(3) h3,
.solution-page .career-problem .goal-grid article:nth-child(3) a { color: #ffffff !important; }
.solution-page .career-fit .fit-yes .section-name,
.solution-page .career-fit .fit-yes h2,
.solution-page .career-fit .fit-yes li,
.solution-page .career-fit .fit-yes li span { color: #ffffff !important; }
.solution-page .career-fit .fit-no .section-name,
.solution-page .career-fit .fit-no h2,
.solution-page .career-fit .fit-no li,
.solution-page .career-fit .fit-no li span { color: var(--ux-deep) !important; }
.solution-page .career-fit .fit-no li { border-color: var(--ux-line) !important; }

/* Final WCAG contrast pass for all three solution pages. */
.solution-page footer,
.solution-page footer .wrap,
.solution-page footer span,
.solution-page footer p,
.solution-page footer a { color: #ffffff !important; }

.solution-page .section-name { color: var(--ux-deep) !important; }
.solution-page .estate-process .section-name { color: var(--ux-gold) !important; }
.solution-page .trust-pathways .section-name,
.solution-page .trust-benefits .section-name,
.solution-page .career-steps .section-name,
.solution-page .career-program .section-name,
.solution-page .cta .section-name { color: var(--ux-gold) !important; }
.solution-page .trust-solutions .trust-section-heading h2 em { color: var(--ux-deep) !important; }
.solution-page .trust-process .section-name,
.solution-page .trust-faq .section-name,
.solution-page .career-faq .section-name { color: var(--ux-deep) !important; }

.solution-page .estate-process .risk-list > li > span,
.solution-page .estate-transformation .section-name { color: var(--ux-deep) !important; }
.solution-page .estate-process .steps-track > article > span,
.solution-page .estate-transformation article > span { color: var(--ux-deep) !important; }
.solution-page .estate-process article:nth-child(3) .section-name,
.solution-page .estate-process article:nth-child(3) small { color: #ffffff !important; }

.solution-page .trust-option-head { color: #ffffff !important; }
.solution-page .trust-option-head h3,
.solution-page .trust-option-head p,
.solution-page .trust-option-head span { color: #ffffff !important; }
.solution-page .trust-process .text-link { color: var(--ux-deep) !important; }
.solution-page .trust-process .trust-steps > article > span,
.solution-page .trust-faq .trust-faq-list > article > span { color: var(--ux-deep) !important; }
.solution-page .trust-process .trust-steps article:nth-child(2) > span,
.solution-page .trust-process .trust-steps article:nth-child(3) > span { color: var(--ux-deep) !important; }

.solution-page .career-problem .goal-grid article:nth-child(1) > span { color: var(--ux-deep) !important; }
.solution-page .career-problem .goal-grid article:nth-child(2) > span { color: var(--ux-deep) !important; }
.solution-page .career-problem .goal-grid article:nth-child(3) > span,
.solution-page .career-problem .goal-grid article:nth-child(3) a,
.solution-page .career-problem .goal-grid article:nth-child(3) a span { color: #ffffff !important; }
.solution-page .career-credibility { background: var(--ux-deep) !important; color: #ffffff !important; }
.solution-page .career-credibility h3,
.solution-page .career-credibility p { color: #ffffff !important; }
.solution-page .career-credibility .career-credibility-mark,
.solution-page .career-credibility > div > span { color: var(--ux-gold) !important; }
.solution-page .career-program .section-name { color: var(--ux-deep) !important; }
.solution-page .career-steps .steps-track > i { color: #ffffff !important; }
.solution-page .career-fit .fit-yes .section-name { color: #ffffff !important; }
.solution-page .risk-list > article > span,
.solution-page .risk-list > article > b { color: var(--ux-deep) !important; }
.solution-page .steps-track > article > span,
.solution-page .steps-track > article > small { color: #ffffff !important; }
.solution-page .estate-process .steps-track > article > span,
.solution-page .estate-process .steps-track > article > small { color: #ffffff !important; }
.solution-page .trust-pathway-grid article > span,
.solution-page .trust-pathway-grid article > p { color: #ffffff !important; }
.solution-page .trust-benefits article > span { color: #ffffff !important; }
.solution-page .career-problem .goal-grid article:nth-child(1) a,
.solution-page .career-problem .goal-grid article:nth-child(1) a span { color: var(--ux-deep) !important; }
.solution-page .career-steps .steps-track article > span { color: #ffffff !important; }
.solution-page .hero-copy .tag { color: #ffffff !important; }
.solution-page .estate-process .step p,
.solution-page .estate-process .step .text-link { color: #ffffff !important; }
.solution-page .estate-hero .hero-pill small { color: #ffffff !important; }
.solution-page .framework-nodes article > span { color: var(--ux-deep) !important; }
.solution-page .estate-transformation .shift-arrow > span { color: var(--ux-deep) !important; }
.solution-page .estate-process .step small { color: #ffffff !important; }
.solution-page .trust-option-body li > span { color: var(--ux-deep) !important; }
.solution-page .trust-coverage .coverage-grid article > span { color: var(--ux-deep) !important; }
.solution-page .faq-list article > span,
.solution-page .career-faq-list article > span { color: var(--ux-deep) !important; }
.solution-page .trust-benefits article > span { color: #ffffff !important; }
.solution-page .faq-list summary > span,
.solution-page .career-faq-list summary > span { color: var(--ux-deep) !important; }
.solution-page.career-page .hero-copy .tag { color: #ffffff !important; }
.solution-page.career-page .career-image-caption span { color: #ffffff !important; }
.solution-page .estate-process .step:nth-child(3),
.solution-page .trust-benefits .benefits-grid article:nth-child(3) { background: #b62d2c !important; }
.solution-page .estate-process .step:nth-child(3) p,
.solution-page .estate-process .step:nth-child(3) small,
.solution-page .estate-process .step:nth-child(3) .text-link,
.solution-page .trust-benefits .benefits-grid article:nth-child(3) p { color: #ffffff !important; }

/* Luxury editorial redesign for static solution routes. */
.solution-page {
  --luxury-paper: #F9F8F6;
  --luxury-ink: #1A1A1A;
  --luxury-taupe: #EBE5DE;
  --luxury-muted: #6C6863;
  --luxury-gold: #D4AF37;
  --luxury-line: rgba(26,26,26,.16);
  background: var(--luxury-paper) !important;
  color: var(--luxury-ink) !important;
  font-family: Inter, Arial, sans-serif !important;
}
.solution-page::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .28; background-image: linear-gradient(to right, transparent 24.95%, rgba(26,26,26,.1) 25%, transparent 25.05%, transparent 49.95%, rgba(26,26,26,.1) 50%, transparent 50.05%, transparent 74.95%, rgba(26,26,26,.1) 75%, transparent 75.05%); }
.solution-page > * { position: relative; z-index: 1; }
.solution-page h1, .solution-page h2, .solution-page h3 { font-family: "Playfair Display", Georgia, serif !important; font-weight: 400 !important; letter-spacing: -.025em !important; line-height: 1.02 !important; }
.solution-page, .solution-page *, .solution-page .topbar, .solution-page .brand-mark, .solution-page .button, .solution-page .trust-option, .solution-page .focus-card, .solution-page .career-credibility { border-radius: 0 !important; }
.solution-page .topbar { position: sticky !important; top: 0 !important; z-index: 30 !important; width: 100% !important; min-height: 82px !important; padding-inline: max(32px, calc((100vw - 1600px) / 2)) !important; background: rgba(249,248,246,.94) !important; color: var(--luxury-ink) !important; border-bottom: 1px solid rgba(26,26,26,.2) !important; backdrop-filter: blur(10px); }
.solution-page .brand { color: var(--luxury-ink) !important; }
.solution-page .brand-mark { width: 44px !important; height: 44px !important; border: 1px solid var(--luxury-ink) !important; color: var(--luxury-ink) !important; }
.solution-page .navigation a { color: var(--luxury-ink) !important; transition: color .5s ease !important; }
.solution-page .navigation a:hover, .solution-page .navigation a:focus-visible { color: var(--luxury-gold) !important; }
.solution-page .navigation-cta { min-height: 48px !important; padding-inline: 20px !important; border: 1px solid var(--luxury-ink) !important; background: linear-gradient(90deg, var(--luxury-gold) 50%, var(--luxury-ink) 50%) !important; background-size: 205% 100% !important; background-position: 100% 0 !important; color: var(--luxury-paper) !important; font-size: .68rem !important; letter-spacing: .16em !important; text-transform: uppercase !important; }
.solution-page .navigation-cta:hover, .solution-page .navigation-cta:focus-visible { background-position: 0 0 !important; border-color: var(--luxury-gold) !important; color: var(--luxury-ink) !important; }
.solution-page .hero { padding: 56px 0 0 !important; background: var(--luxury-paper) !important; }
.solution-page .hero-grid { min-height: min(760px, calc(100dvh - 112px)) !important; grid-template-columns: 1.08fr .92fr !important; background: transparent !important; border-top: 1px solid var(--luxury-ink) !important; border-bottom: 1px solid var(--luxury-ink) !important; }
.solution-page .hero-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(56px, 8vw, 128px) clamp(30px, 6vw, 120px) clamp(56px, 7vw, 104px) 0 !important; background: transparent !important; color: var(--luxury-ink) !important; }
.solution-page .hero-copy .tag, .solution-page .section-name { color: var(--luxury-muted) !important; font-size: .67rem !important; letter-spacing: .28em !important; text-transform: uppercase !important; }
.solution-page .hero-copy h1 { max-width: 880px !important; color: var(--luxury-ink) !important; font-size: clamp(4rem, 7vw, 8.4rem) !important; }
.solution-page .hero-copy h1 em, .solution-page .hero-copy h2 em, .solution-page h2 em { color: var(--luxury-gold) !important; }
.solution-page .hero-copy > p:not(.tag), .solution-page .intro-copy p, .solution-page .heading > p, .solution-page .trust-section-heading > p { color: var(--luxury-muted) !important; line-height: 1.75 !important; }
.solution-page .hero-image { min-height: 100% !important; border-left: 1px solid var(--luxury-ink) !important; background: var(--luxury-taupe) !important; overflow: hidden !important; }
.solution-page .hero-image::before { content: "ILMAN RUSLY / VOL. 02"; position: absolute; top: 34px; right: 24px; z-index: 2; color: var(--luxury-ink); font-size: .58rem; letter-spacing: .24em; writing-mode: vertical-rl; }
.solution-page .hero-image img, .solution-page .hero-image picture img { filter: grayscale(1) !important; transition: filter 1800ms ease, transform 1800ms ease !important; }
.solution-page .hero-image:hover img { filter: grayscale(0) !important; transform: scale(1.04) !important; }
.solution-page .button { min-height: 56px !important; padding-inline: 28px !important; border: 1px solid var(--luxury-ink) !important; background: linear-gradient(90deg, var(--luxury-gold) 50%, var(--luxury-ink) 50%) !important; background-size: 205% 100% !important; background-position: 100% 0 !important; color: var(--luxury-paper) !important; font-size: .68rem !important; letter-spacing: .16em !important; text-transform: uppercase !important; transition: background-position .5s ease, color .5s ease, transform .5s ease !important; }
.solution-page .button:hover, .solution-page .button:focus-visible { background-position: 0 0 !important; border-color: var(--luxury-gold) !important; color: var(--luxury-ink) !important; transform: translateY(-2px) !important; }
.solution-page .text-link, .solution-page .trust-option-link, .solution-page .goal-grid a { color: var(--luxury-ink) !important; border-color: var(--luxury-ink) !important; letter-spacing: .14em !important; text-transform: uppercase !important; }
.solution-page .text-link:hover, .solution-page .trust-option-link:hover, .solution-page .goal-grid a:hover { color: var(--luxury-gold) !important; border-color: var(--luxury-gold) !important; }
.solution-page .trust-proofs, .solution-page .estate-problem, .solution-page .trust-intro, .solution-page .trust-solutions, .solution-page .trust-coverage, .solution-page .trust-process, .solution-page .trust-faq, .solution-page .career-problem, .solution-page .career-program, .solution-page .career-fit, .solution-page .career-faq, .solution-page .estate-transformation { background: var(--luxury-paper) !important; color: var(--luxury-ink) !important; padding-block: 132px !important; }
.solution-page .estate-framework, .solution-page .trust-pathways, .solution-page .trust-benefits, .solution-page .career-role, .solution-page .career-steps, .solution-page .steps { background: var(--luxury-ink) !important; color: var(--luxury-paper) !important; padding-block: 132px !important; }
.solution-page .cta { background: var(--luxury-ink) !important; color: var(--luxury-paper) !important; padding-block: 132px !important; }
.solution-page .trust-proofs .wrap, .solution-page .risk-list, .solution-page .step-list, .solution-page .trust-option-grid, .solution-page .trust-pathway-grid, .solution-page .coverage-grid, .solution-page .benefits-grid, .solution-page .goal-grid, .solution-page .role-grid, .solution-page .steps-track, .solution-page .faq-list { border-top: 1px solid var(--luxury-line) !important; border-bottom: 1px solid var(--luxury-line) !important; }
.solution-page .trust-proofs .wrap > div, .solution-page .risk-list article, .solution-page .step, .solution-page .trust-option, .solution-page .trust-pathway-grid article, .solution-page .coverage-grid article, .solution-page .benefits-grid article, .solution-page .goal-grid article, .solution-page .role-grid article, .solution-page .steps-track article, .solution-page .faq-list details { background: transparent !important; border: 0 !important; border-bottom: 1px solid var(--luxury-line) !important; box-shadow: none !important; }
.solution-page .trust-option-grid, .solution-page .trust-pathway-grid, .solution-page .coverage-grid, .solution-page .goal-grid, .solution-page .role-grid, .solution-page .benefits-grid, .solution-page .steps-track { gap: 0 !important; }
.solution-page .trust-option, .solution-page .trust-pathway-grid article, .solution-page .coverage-grid article, .solution-page .goal-grid article, .solution-page .role-grid article, .solution-page .benefits-grid article { min-height: 280px !important; padding: 34px 30px 42px 0 !important; border-left: 1px solid var(--luxury-line) !important; }
.solution-page .trust-option:first-child, .solution-page .trust-pathway-grid article:first-child, .solution-page .coverage-grid article:first-child, .solution-page .goal-grid article:first-child, .solution-page .role-grid article:first-child, .solution-page .benefits-grid article:first-child { border-left: 0 !important; }
.solution-page .trust-option h3, .solution-page .trust-pathway-grid h3, .solution-page .coverage-grid h3, .solution-page .goal-grid h3, .solution-page .role-grid h3, .solution-page .benefits-grid h3 { color: var(--luxury-ink) !important; font-size: 2.15rem !important; }
.solution-page .trust-option p, .solution-page .trust-pathway-grid p, .solution-page .coverage-grid p, .solution-page .goal-grid p, .solution-page .role-grid p, .solution-page .benefits-grid p, .solution-page .faq-list p { color: var(--luxury-muted) !important; }
.solution-page .estate-framework h2, .solution-page .estate-framework p, .solution-page .trust-pathways h2, .solution-page .trust-pathways p, .solution-page .trust-benefits h2, .solution-page .trust-benefits p, .solution-page .career-role h2, .solution-page .career-role p, .solution-page .career-steps h2, .solution-page .career-steps p, .solution-page .steps h2, .solution-page .steps p, .solution-page .cta h2, .solution-page .cta p { color: var(--luxury-paper) !important; }
.solution-page .estate-framework .section-name, .solution-page .trust-pathways .section-name, .solution-page .trust-benefits .section-name, .solution-page .career-role .section-name, .solution-page .career-steps .section-name, .solution-page .steps .section-name, .solution-page .cta .section-name { color: var(--luxury-gold) !important; }
.solution-page footer { padding-block: 48px !important; background: var(--luxury-ink) !important; color: rgba(249,248,246,.7) !important; border-top: 1px solid rgba(249,248,246,.25) !important; }
.solution-page footer strong { color: var(--luxury-paper) !important; }
.solution-page .career-credibility { border-top: 1px solid rgba(249,248,246,.35) !important; border-bottom: 1px solid rgba(249,248,246,.35) !important; background: transparent !important; }

@media (max-width: 900px) {
  .solution-page .hero-grid { min-height: auto !important; grid-template-columns: 1fr !important; }
  .solution-page .hero-copy { padding: 74px 0 !important; }
  .solution-page .hero-image { min-height: 540px !important; border-left: 0 !important; border-top: 1px solid var(--luxury-ink) !important; }
  .solution-page .trust-option, .solution-page .trust-pathway-grid article, .solution-page .coverage-grid article, .solution-page .goal-grid article, .solution-page .role-grid article, .solution-page .benefits-grid article { border-left: 0 !important; border-top: 1px solid var(--luxury-line) !important; }
  .solution-page .trust-option:first-child, .solution-page .trust-pathway-grid article:first-child, .solution-page .coverage-grid article:first-child, .solution-page .goal-grid article:first-child, .solution-page .role-grid article:first-child, .solution-page .benefits-grid article:first-child { border-top: 0 !important; }
}
@media (max-width: 640px) {
  .solution-page .topbar { padding-inline: 18px !important; }
  .solution-page .hero { padding-top: 20px !important; }
  .solution-page .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5rem) !important; }
  .solution-page .hero-image { min-height: 350px !important; }
  .solution-page .trust-proofs, .solution-page .estate-problem, .solution-page .trust-intro, .solution-page .trust-solutions, .solution-page .trust-coverage, .solution-page .trust-process, .solution-page .trust-faq, .solution-page .career-problem, .solution-page .career-program, .solution-page .career-fit, .solution-page .career-faq, .solution-page .estate-transformation, .solution-page .estate-framework, .solution-page .trust-pathways, .solution-page .trust-benefits, .solution-page .career-role, .solution-page .career-steps, .solution-page .steps, .solution-page .cta { padding-block: 84px !important; }
}

/* Final contrast audit lock. This block intentionally sits after every legacy
   route rule so no old selector can reintroduce unreadable text. */
html body.solution-page .navigation-cta,
html body.solution-page .button {
  background-color: #1A1A1A !important;
  background-image: linear-gradient(90deg, #D4AF37, #D4AF37) !important;
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  background-size: 0% 100% !important;
  color: #F9F8F6 !important;
}
html body.solution-page .navigation-cta:hover,
html body.solution-page .navigation-cta:focus-visible,
html body.solution-page .button:hover,
html body.solution-page .button:focus-visible { background-size: 100% 100% !important; color: #1A1A1A !important; }

html body.solution-page .trust-proofs,
html body.solution-page .trust-proofs .proof-intro,
html body.solution-page .trust-proofs .proof-item b { color: #1A1A1A !important; }
html body.solution-page .trust-proofs .proof-intro strong,
html body.solution-page .trust-proofs .proof-item > span { color: #6E5200 !important; }
html body.solution-page .trust-proofs .proof-item small { color: #6C6863 !important; }

html body.solution-page .estate-problem h2,
html body.solution-page .estate-problem h3,
html body.solution-page .estate-transformation h2,
html body.solution-page .estate-transformation h3,
html body.solution-page .trust-intro h2,
html body.solution-page .trust-solutions h2,
html body.solution-page .trust-coverage h2,
html body.solution-page .trust-process h2,
html body.solution-page .trust-faq h2,
html body.solution-page .career-problem h2,
html body.solution-page .career-program h2,
html body.solution-page .career-fit h2,
html body.solution-page .career-faq h2 { color: #1A1A1A !important; }
html body.solution-page .estate-problem p,
html body.solution-page .estate-problem li,
html body.solution-page .estate-transformation p,
html body.solution-page .estate-transformation li,
html body.solution-page .trust-intro p,
html body.solution-page .trust-solutions p,
html body.solution-page .trust-coverage p,
html body.solution-page .trust-process p,
html body.solution-page .trust-faq p,
html body.solution-page .career-problem p,
html body.solution-page .career-program p,
html body.solution-page .career-fit p,
html body.solution-page .career-faq p { color: #6C6863 !important; }
html body.solution-page .estate-problem .section-name,
html body.solution-page .estate-transformation .section-name,
html body.solution-page .trust-intro .section-name,
html body.solution-page .trust-solutions .section-name,
html body.solution-page .trust-coverage .section-name,
html body.solution-page .trust-process .section-name,
html body.solution-page .trust-faq .section-name,
html body.solution-page .career-problem .section-name,
html body.solution-page .career-program .section-name,
html body.solution-page .career-fit .section-name,
html body.solution-page .career-faq .section-name { color: #6E5200 !important; }

html body.solution-page .estate-framework h2,
html body.solution-page .estate-framework h3,
html body.solution-page .trust-pathways h2,
html body.solution-page .trust-pathways h3,
html body.solution-page .trust-benefits h2,
html body.solution-page .trust-benefits h3,
html body.solution-page .career-role h2,
html body.solution-page .career-role h3,
html body.solution-page .career-steps h2,
html body.solution-page .career-steps h3,
html body.solution-page .steps h2,
html body.solution-page .steps h3 { color: #F9F8F6 !important; }
html body.solution-page .estate-framework p,
html body.solution-page .trust-pathways p,
html body.solution-page .trust-benefits p,
html body.solution-page .career-role p,
html body.solution-page .career-steps p,
html body.solution-page .steps p { color: rgba(249,248,246,.78) !important; }
html body.solution-page .estate-framework .section-name,
html body.solution-page .trust-pathways .section-name,
html body.solution-page .trust-benefits .section-name,
html body.solution-page .career-role .section-name,
html body.solution-page .career-steps .section-name,
html body.solution-page .steps .section-name { color: #D4AF37 !important; }

html body.solution-page .trust-option-head h3,
html body.solution-page .trust-option-head p,
html body.solution-page .trust-option-head > span { color: #F9F8F6 !important; }
html body.solution-page .trust-option-body p,
html body.solution-page .trust-option-body li { color: #6C6863 !important; }
html body.solution-page .trust-option-body li > span { color: #6E5200 !important; }
html body.solution-page .career-role .role-grid h3,
html body.solution-page .career-role .role-grid p,
html body.solution-page .career-steps .steps-track h3,
html body.solution-page .career-steps .steps-track p { color: #1A1A1A !important; }
html body.solution-page .career-role .role-grid > article > span,
html body.solution-page .career-steps .steps-track > article > span { color: #6E5200 !important; }

/* Final Deep Aubergine surface lock. */
html body.solution-page {
  --luxury-paper: #F7F1E8;
  --luxury-ink: #292629;
  --luxury-taupe: #EDE3D6;
  --luxury-muted: #625A61;
  --luxury-gold: #C6A15B;
  --luxury-line: rgba(41, 38, 41, .2);
  --ux-paper: #F7F1E8;
  --ux-ink: #292629;
  --ux-deep: #241020;
  --ux-teal: #4A1942;
  --ux-gold: #C6A15B;
  --ux-red: #4A1942;
  --ux-line: rgba(41, 38, 41, .2);
  --ux-muted: #625A61;
  background: #F7F1E8 !important;
  color: #292629 !important;
  font-family: "Aptos", "Segoe UI", sans-serif !important;
}
html body.solution-page::before { display: none !important; }
html body.solution-page .topbar { background: rgba(247, 241, 232, .94) !important; border-color: rgba(41, 38, 41, .2) !important; }
html body.solution-page .brand,
html body.solution-page .navigation a { color: #292629 !important; }
html body.solution-page .brand-mark { background: #4A1942 !important; border-color: #4A1942 !important; color: #C6A15B !important; }
html body.solution-page .hero,
html body.solution-page .hero-copy,
html body.solution-page .trust-proofs,
html body.solution-page .estate-problem,
html body.solution-page .trust-intro,
html body.solution-page .trust-solutions,
html body.solution-page .trust-coverage,
html body.solution-page .trust-process,
html body.solution-page .trust-faq,
html body.solution-page .career-problem,
html body.solution-page .career-program,
html body.solution-page .career-fit,
html body.solution-page .career-faq,
html body.solution-page .estate-transformation { background: #F7F1E8 !important; color: #292629 !important; }
html body.solution-page .hero-copy :where(h1, h2, p, li, strong) { color: #292629 !important; }
html body.solution-page .hero-copy .tag,
html body.solution-page .section-name,
html body.solution-page .hero-copy h1 em,
html body.solution-page h2 em { color: #4A1942 !important; }
html body.solution-page .hero-image { background: #4A1942 !important; border-color: #241020 !important; }
html body.solution-page .hero-image::before { color: #F7F1E8 !important; }
html body.solution-page .estate-framework,
html body.solution-page .trust-pathways,
html body.solution-page .trust-benefits,
html body.solution-page .career-role,
html body.solution-page .career-steps,
html body.solution-page .steps,
html body.solution-page .cta,
html body.solution-page footer,
html body.solution-page .career-credibility { background: #241020 !important; color: #F7F1E8 !important; }
html body.solution-page .estate-framework > * > :where(h2, h3, p),
html body.solution-page .trust-pathways > * > :where(h2, h3, p),
html body.solution-page .trust-benefits > * > :where(h2, h3, p),
html body.solution-page .career-role > * > :where(h2, h3, p),
html body.solution-page .career-steps > * > :where(h2, h3, p),
html body.solution-page .steps > * > :where(h2, h3, p),
html body.solution-page .cta :where(h2, h3, p) { color: #F7F1E8 !important; }
html body.solution-page .estate-framework .section-name,
html body.solution-page .trust-pathways .section-name,
html body.solution-page .trust-benefits .section-name,
html body.solution-page .career-role .section-name,
html body.solution-page .career-steps .section-name,
html body.solution-page .steps .section-name,
html body.solution-page .cta .section-name { color: #C6A15B !important; }
html body.solution-page .navigation-cta,
html body.solution-page .button { background: #241020 !important; background-image: none !important; color: #F7F1E8 !important; border-color: #241020 !important; }
html body.solution-page .navigation-cta:hover,
html body.solution-page .navigation-cta:focus-visible,
html body.solution-page .button:hover,
html body.solution-page .button:focus-visible { background: #C6A15B !important; color: #241020 !important; border-color: #C6A15B !important; }
html body.solution-page .trust-option-head,
html body.solution-page .estate-process .step:nth-child(3),
html body.solution-page .trust-benefits .benefits-grid article:nth-child(3) { background: #4A1942 !important; }
html body.solution-page .text-link,
html body.solution-page .trust-option-link,
html body.solution-page .goal-grid a { color: #4A1942 !important; border-color: #4A1942 !important; }

/* Final responsive editorial geometry. */
html body.solution-page .topbar { min-height: 80px !important; box-shadow: 0 10px 30px rgba(36, 16, 32, .06) !important; }
html body.solution-page .hero { padding-top: 32px !important; }
html body.solution-page .hero-grid {
  width: min(1320px, calc(100% - 64px)) !important;
  min-height: min(710px, calc(100svh - 112px)) !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr) !important;
}
html body.solution-page .hero-copy { padding: clamp(54px, 7vw, 92px) clamp(28px, 5vw, 72px) clamp(50px, 6vw, 78px) 0 !important; }
html body.solution-page .hero-copy h1 {
  max-width: 760px !important;
  font-size: clamp(4rem, 6.5vw, 6rem) !important;
  line-height: .92 !important;
  letter-spacing: -.04em !important;
}
html body.solution-page .hero-copy > p:not(.tag) { max-width: 65ch; line-height: 1.72 !important; }
html body.solution-page .hero-image img { transform: scale(1.015); }
html body.solution-page .hero-image:hover img { transform: scale(1.045) !important; }
html body.solution-page .navigation-cta,
html body.solution-page .button { box-shadow: 0 16px 34px rgba(36, 16, 32, .16) !important; }
html body.solution-page :where(.trust-proofs, .estate-problem, .trust-intro, .trust-solutions, .trust-coverage, .trust-process, .trust-faq, .career-problem, .career-program, .career-fit, .career-faq, .estate-transformation, .estate-framework, .trust-pathways, .trust-benefits, .career-role, .career-steps, .steps, .cta) {
  padding-block: clamp(88px, 10vw, 136px) !important;
}
@media (max-width: 900px) {
  html body.solution-page .hero-grid { grid-template-columns: 1fr !important; }
  html body.solution-page .hero-copy { padding: 68px 0 64px !important; }
  html body.solution-page .hero-image { min-height: 460px !important; }
}
@media (max-width: 760px) {
  html body.solution-page .topbar {
    display: flex !important;
    min-height: 0 !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
    padding-block: 14px !important;
  }
  html body.solution-page .brand { flex: 0 0 auto !important; }
  html body.solution-page .navigation {
    order: 2 !important;
    display: flex !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    padding: 8px 2px 4px !important;
    overflow-x: auto !important;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    white-space: nowrap;
  }
  html body.solution-page .navigation a { flex: 0 0 auto !important; min-height: 40px; display: inline-flex; align-items: center; }
  html body.solution-page .navigation-cta { min-height: 40px !important; padding-inline: 14px !important; }
}
@media (max-width: 640px) {
  html body.solution-page .hero { padding-top: 18px !important; }
  html body.solution-page .hero-grid { width: calc(100% - 36px) !important; }
  html body.solution-page .hero-copy { padding: 48px 0 50px !important; }
  html body.solution-page .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.15rem) !important; }
  html body.solution-page .hero-image { min-height: 320px !important; }
  html body.solution-page :where(.trust-proofs, .estate-problem, .trust-intro, .trust-solutions, .trust-coverage, .trust-process, .trust-faq, .career-problem, .career-program, .career-fit, .career-faq, .estate-transformation, .estate-framework, .trust-pathways, .trust-benefits, .career-role, .career-steps, .steps, .cta) { padding-block: 76px !important; }
}

/* Final readability lock after all legacy layers. */
html body.solution-page .hero-copy .text-link {
  color: #4A1942 !important;
  border-color: #4A1942 !important;
}
html body.solution-page .career-image-caption span {
  display: inline-block;
  padding: 5px 8px;
  color: #F7F1E8 !important;
  background: rgba(36, 16, 32, .92) !important;
}
