:root {
  --navy-950: #030b19;
  --navy-900: #07152b;
  --navy-800: #0c2342;
  --navy-700: #183b65;
  --blue-500: #2b70a9;
  --gold-500: #c4a56a;
  --gold-300: #dbc89d;
  --cream: #f4f0e8;
  --paper: #faf9f6;
  --white: #ffffff;
  --ink: #101722;
  --muted: #66717e;
  --line: #dbe0e5;
  --green: #21b66f;
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --shadow: 0 30px 80px rgba(3, 11, 25, 0.14);
  --radius: 3px;
  --content-width: 1160px;
  --header-height: 86px;
  --header-height-compact: 74px;
  --section-space: clamp(78px, 8vw, 116px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

iframe {
  max-width: 100%;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

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

section[id] {
  scroll-margin-top: calc(var(--header-height-compact) + 20px);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 2px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.arrow-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: rgba(3, 11, 25, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  height: var(--header-height-compact);
  background: rgba(3, 11, 25, 0.96);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 218px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-300);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.primary-button,
.outline-button,
.location-button,
.modal-primary,
.mobile-conversion-button {
  border: 0;
  cursor: pointer;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  color: var(--white);
  background: transparent;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 14px 24px 24px;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-130%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.navbar.scrolled .mobile-menu {
  top: var(--header-height-compact);
}

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

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
}

.mobile-menu .nav-cta {
  margin-top: 18px;
}

.hero {
  position: relative;
  min-height: 810px;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(43, 112, 169, 0.28), transparent 30%),
    linear-gradient(118deg, #061123 0%, #0b2444 54%, #0a1a31 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.72fr);
  gap: 76px;
  align-items: center;
  min-height: 656px;
  padding-block: 62px 58px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(219, 200, 157, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 680px;
  height: 680px;
  right: -270px;
  top: 20px;
}

.hero-orbit-two {
  width: 430px;
  height: 430px;
  right: -110px;
  top: 145px;
}

.hero-monogram {
  position: absolute;
  right: 11%;
  bottom: -104px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: clamp(20rem, 34vw, 35rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  user-select: none;
}

.eyebrow,
.section-kicker,
.light-kicker,
.feature-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow {
  display: block;
  margin-bottom: 23px;
  color: var(--gold-300);
  text-transform: uppercase;
}

.eyebrow > span {
  display: none;
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(3.25rem, 5.2vw, 5.2rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.025em;
}

.hero h1 em {
  color: var(--gold-300);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.pension-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  max-width: 660px;
  padding: 17px 19px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(219, 200, 157, 0.28);
  border-left: 3px solid var(--gold-300);
  backdrop-filter: blur(8px);
}

.pension-alert .alert-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.pension-alert strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.pension-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 31px;
}

.primary-button,
.outline-button,
.location-button,
.modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.primary-button:hover {
  background: var(--gold-300);
  transform: translateY(-2px);
}

.text-button {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font-size: 0.82rem;
}

.text-button:hover {
  color: var(--white);
  border-color: var(--gold-300);
}

.hero-facts {
  display: flex;
  gap: 0;
  max-width: 680px;
  margin: 0;
}

.hero-facts div {
  padding-right: 23px;
  margin-right: 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts div:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.hero-facts dt,
.hero-facts dd {
  display: block;
}

.hero-facts dt {
  margin-bottom: 2px;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
}

.hero-card {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border-top: 4px solid var(--gold-500);
  box-shadow: var(--shadow);
}

.hero-card-head {
  padding: 25px 27px 20px;
  border-bottom: 1px solid var(--line);
}

.hero-card-head span,
.hero-card-head small {
  display: block;
}

.hero-card-head span {
  color: var(--navy-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-card-head small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-option {
  width: 100%;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 13px;
  align-items: center;
  min-height: 78px;
  padding: 15px 23px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.hero-option > span:nth-child(2),
.wa-option > div,
.footer-grid > * {
  min-width: 0;
}

.hero-option:hover {
  padding-left: 28px;
  background: #f6f8fa;
}

.hero-option.featured {
  background: #f2f5f8;
}

.hero-option .option-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--navy-700);
  border: 1px solid #c9d1da;
  border-radius: 50%;
  font-size: 0.64rem;
  font-weight: 700;
}

.hero-option.featured .option-number {
  color: var(--white);
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.hero-option strong,
.hero-option small {
  display: block;
}

.hero-option strong {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.1;
}

.hero-option small {
  color: var(--muted);
  font-size: 0.68rem;
}

.hero-option .arrow-icon {
  color: var(--navy-700);
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  padding: 16px 23px;
  color: var(--muted);
  background: #f7f7f5;
  font-size: 0.63rem;
}

.hero-card-foot strong {
  color: var(--navy-700);
}

.trust-band {
  position: relative;
  z-index: 3;
  color: var(--navy-900);
  background: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-band-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0;
  margin-block: 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  list-style: none;
  white-space: nowrap;
}

.trust-band-inner li {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-band-inner li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--gold-500);
  border-radius: 50%;
}

.practice {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 52px;
}

.section-kicker {
  margin-bottom: 13px;
  color: var(--blue-500);
}

.section-heading h2,
.faq-intro h2,
.location h2,
.about h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.6vw, 4.45rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.88fr) 1.5fr;
  gap: 18px;
}

.pension-feature {
  position: relative;
  min-height: 585px;
  padding: 46px 42px 38px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(7, 21, 43, 0.96), rgba(12, 35, 66, 0.9)),
    radial-gradient(circle at 80% 20%, #2b70a9, transparent 45%);
}

.pension-feature::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: -120px;
  border: 1px solid rgba(219, 200, 157, 0.28);
  border-radius: 50%;
}

.feature-index {
  margin-bottom: 78px;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.feature-tag {
  margin-bottom: 15px;
  color: var(--gold-300);
}

.feature-content h3 {
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 0.98;
}

.feature-content > p {
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.feature-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.feature-content li {
  position: relative;
  padding-left: 14px;
  font-size: 0.73rem;
}

.feature-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 1px;
  background: var(--gold-300);
}

.feature-link,
.card-link,
.dark-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.feature-link {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.practice-card {
  min-height: 283px;
  display: flex;
  flex-direction: column;
  padding: 29px 30px 25px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.practice-card:hover {
  border-color: #aebdcb;
  box-shadow: 0 18px 42px rgba(7, 21, 43, 0.07);
  transform: translateY(-3px);
}

.practice-card > span {
  margin-bottom: auto;
  color: var(--blue-500);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.practice-card h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.practice-card p {
  min-height: 60px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
}

.card-link,
.dark-link {
  align-self: flex-start;
  color: var(--navy-700);
}

.about {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(43, 112, 169, 0.22), transparent 33%);
}

.about-mark {
  position: absolute;
  right: 2%;
  bottom: -105px;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--serif);
  font-size: 31rem;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 95px;
  align-items: center;
}

.light-kicker {
  margin-bottom: 17px;
  color: var(--gold-300);
}

.about-copy h2 {
  max-width: 690px;
}

.about-copy > p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.91rem;
}

.outline-button {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.outline-button:hover {
  color: var(--navy-950);
  background: var(--white);
  transform: translateY(-2px);
}

.process-card {
  padding: 6px 36px;
  margin: 0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  list-style: none;
}

.process-card > li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 15px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-card > li:last-child {
  border-bottom: 0;
}

.process-card span {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.process-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.1;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
}

.faq {
  padding: var(--section-space) 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr;
  gap: 112px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 116px;
}

.faq-intro h2 {
  margin-bottom: 21px;
  font-size: clamp(2.65rem, 4.2vw, 4rem);
}

.faq-intro > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 600;
}

.faq-question b {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--blue-500);
  border: 1px solid #cfd6dd;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.faq-item.open .faq-question b {
  color: var(--white);
  background: var(--navy-700);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  color: var(--muted);
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  padding: 0 50px 24px 0;
  margin: 0;
  font-size: 0.85rem;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.location {
  padding: var(--section-space) 0;
  color: var(--white);
  background: linear-gradient(125deg, #08172d, #102f54);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.location h2 {
  margin-bottom: 22px;
}

.location-copy > p {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.89rem;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 31px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.location-details div {
  padding: 18px 0;
}

.location-details div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.location-details dt,
.location-details dd {
  display: block;
}

.location-details dt {
  margin-bottom: 3px;
  color: var(--gold-300);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.location-details dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

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

.location-button:hover {
  background: var(--gold-300);
  transform: translateY(-2px);
}

.map-card {
  overflow: hidden;
  background: var(--white);
  border: 7px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.map-card iframe {
  width: 100%;
  height: 410px;
  display: block;
  border: 0;
  filter: saturate(0.25) contrast(1.05);
}

.map-caption {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--white);
}

.map-pin {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  background: var(--navy-700);
  border: 4px solid #cfdae4;
  border-radius: 50%;
}

.map-caption strong,
.map-caption small {
  display: block;
}

.map-caption strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.1;
}

.map-caption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

.footer {
  padding: 55px 0 30px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 35px;
}

.footer-brand img {
  width: min(220px, 100%);
  object-fit: contain;
}

.footer-copy {
  font-style: normal;
}

.footer-copy p {
  max-width: 390px;
  margin-bottom: 5px;
  font-size: 0.76rem;
}

.footer-copy span {
  color: var(--gold-300);
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-contact {
  display: block;
  width: fit-content;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  transition: color 0.2s ease;
}

.footer-contact:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 7px;
  text-align: right;
  font-size: 0.73rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.61rem;
}

.footer-bottom p {
  max-width: 720px;
  margin: 0;
}

.footer-bottom span {
  flex: 0 0 auto;
}

.wa-widget {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
}

.wa-fab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: var(--white);
  background: #188958;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(8, 73, 44, 0.28);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.wa-pulse {
  width: 9px;
  height: 9px;
  background: #7df2b7;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(125, 242, 183, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(125, 242, 183, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 242, 183, 0); }
}

.wa-popup {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 340px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.wa-widget.open .wa-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-popup-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
  padding: 18px 19px;
  color: var(--white);
  background: var(--navy-900);
}

.wa-popup-head small,
.wa-popup-head strong {
  display: block;
}

.wa-popup-head small {
  color: var(--gold-300);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.wa-popup-head strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.wa-popup-head button {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.3rem;
}

.wa-option {
  width: 100%;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 15px 17px;
  text-align: left;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.wa-option:hover {
  background: #f5f7f9;
}

.wa-option > span {
  color: var(--blue-500);
  font-family: var(--serif);
  font-size: 1rem;
}

.wa-option strong,
.wa-option small {
  display: block;
}

.wa-option strong {
  font-family: var(--serif);
  font-size: 1rem;
}

.wa-option small {
  color: var(--muted);
  font-size: 0.63rem;
}

.wa-option .arrow-icon {
  width: 16px;
  color: var(--navy-700);
}

.mobile-conversion-bar {
  display: none;
}

.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 16, 0.82);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 32px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.25s ease;
}

.modal.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 19px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: #f1f3f5;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.modal-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 44px;
  margin-bottom: 24px;
}

.modal-monogram {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy-900);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.modal-brand strong,
.modal-brand small {
  display: block;
}

.modal-brand strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.1;
}

.modal-brand small {
  color: var(--muted);
  font-size: 0.67rem;
}

.triage-progress {
  height: 3px;
  margin-bottom: 28px;
  overflow: hidden;
  background: #e8ebee;
}

.triage-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--blue-500);
  transition: width 0.25s ease;
}

.triage-step {
  display: none;
}

.triage-step.active {
  display: block;
  animation: stepIn 0.22s ease both;
}

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

.step-label {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-500);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-label.done {
  color: #168554;
}

.triage-step h2 {
  margin-bottom: 21px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.02;
}

.option-list {
  display: grid;
  gap: 8px;
}

.option {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  text-align: left;
  background: #f7f8f9;
  border: 1px solid #dce1e6;
  cursor: pointer;
  overflow-wrap: anywhere;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.option:hover,
.option.selected {
  background: #edf3f8;
  border-color: var(--blue-500);
  transform: translateX(3px);
}

.option span,
.option small {
  display: block;
}

.option span {
  font-weight: 700;
  font-size: 0.82rem;
}

.option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.66rem;
}

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

.option.simple {
  text-align: center;
}

.back-button {
  padding: 10px 0;
  margin-top: 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.72rem;
}

.triage-summary {
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.triage-summary > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
}

.triage-summary > div:last-child {
  border-bottom: 0;
}

.triage-summary span {
  color: var(--muted);
}

.modal-primary {
  width: 100%;
  color: var(--white);
  background: var(--navy-700);
}

.modal-primary:hover {
  background: var(--navy-900);
}

.privacy-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.6rem;
  text-align: center;
}

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

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.18s; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-inner > .nav-cta { margin-left: auto; }
  .menu-button { display: block; margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 38px; }
  .hero h1 { font-size: 4.2rem; }
  .practice-grid { grid-template-columns: 0.88fr 1.12fr; }
  .family-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 220px; }
  .pension-feature { min-height: 100%; }
  .faq-grid { gap: 70px; }
  .location-grid { gap: 45px; }
}

@media (max-width: 940px) {
  :root { --section-space: 84px; }
  html { scroll-padding-top: var(--header-height-compact); }
  .container { width: min(100% - 34px, 680px); }
  .navbar { height: var(--header-height-compact); background: rgba(3, 11, 25, 0.95); }
  .brand { width: 186px; }
  .nav-inner > .nav-cta { display: none; }
  .menu-button { margin-left: auto; }
  .mobile-menu { top: var(--header-height-compact); }
  .hero { padding-top: var(--header-height-compact); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding-block: 56px 45px; }
  .hero h1 { max-width: 620px; font-size: clamp(3.3rem, 10vw, 4.7rem); }
  .hero-card { width: min(100%, 560px); }
  .hero-orbit-one { right: -430px; }
  .hero-orbit-two { right: -290px; }
  .trust-band-inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .trust-band-inner::-webkit-scrollbar { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-heading p { max-width: 620px; }
  .practice-grid { grid-template-columns: 1fr; }
  .pension-feature { min-height: auto; }
  .feature-index { margin-bottom: 48px; }
  .family-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-card { max-width: 620px; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-intro { position: static; }
  .faq-intro > p { max-width: 570px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { max-width: 620px; }
  .footer-grid { grid-template-columns: 210px 1fr; gap: 34px; }
  .footer-links { grid-column: 1 / -1; grid-template-columns: repeat(4, auto); justify-content: start; gap: 22px; text-align: left; }
  .mobile-conversion-bar { display: none; }
}

@media (max-width: 580px) {
  :root { --section-space: 70px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .container { width: calc(100% - 28px); }
  .brand { width: 170px; }
  .hero-grid { padding-top: 43px; }
  .eyebrow { font-size: 0.6rem; line-height: 1.4; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4rem); }
  .hero-lead { font-size: 0.89rem; }
  .pension-alert { padding: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .primary-button { width: 100%; }
  .text-button { align-self: center; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .hero-facts div { padding-right: 14px; margin-right: 14px; }
  .hero-facts div:nth-child(2) { padding-right: 0; margin-right: 0; border-right: 0; }
  .hero-facts div:last-child { grid-column: 1 / -1; }
  .hero-card-head { padding: 22px 20px 17px; }
  .hero-option { grid-template-columns: 29px 1fr auto; min-height: 73px; padding: 13px 18px; }
  .hero-option:hover { padding-left: 18px; }
  .hero-option strong { font-size: 1.05rem; }
  .hero-card-foot { gap: 8px; padding-inline: 18px; flex-wrap: wrap; }
  .trust-band-inner { min-height: 58px; gap: 20px; font-size: 0.9rem; }
  .trust-band-inner li { gap: 20px; }
  .section-heading h2, .faq-intro h2, .location h2, .about h2 { font-size: clamp(2.6rem, 12vw, 3.45rem); }
  .pension-feature { padding: 34px 27px 31px; }
  .feature-index { margin-bottom: 40px; }
  .feature-content h3 { font-size: 2.8rem; }
  .feature-content ul { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: 0; padding: 26px; }
  .practice-card p { min-height: 0; }
  .process-card { padding-inline: 24px; }
  .process-card > li { grid-template-columns: 35px 1fr; }
  .faq-question { padding: 21px 0; font-size: 1.27rem; }
  .faq-answer p { padding-right: 10px; }
  .location-details { grid-template-columns: 1fr; }
  .location-details div + div { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
  .map-card iframe { height: 330px; }
  .footer { padding-top: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-copy { max-width: 420px; }
  .footer-links { grid-column: auto; grid-template-columns: 1fr 1fr; gap: 9px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .wa-widget { display: none; }
  .mobile-conversion-bar { position: fixed; z-index: 850; right: 0; bottom: 0; left: 0; display: block; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(3, 11, 25, 0.96); box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2); }
  .mobile-conversion-button { width: 100%; min-height: 48px; color: var(--navy-950); background: var(--white); border-radius: 999px; font-size: 0.8rem; font-weight: 800; }
  .modal { padding: 0; align-items: end; }
  .modal-card { width: 100%; max-height: 92vh; max-height: 92dvh; padding: 26px 20px calc(22px + env(safe-area-inset-bottom)); border-radius: 16px 16px 0 0; }
  .triage-step h2 { font-size: 1.72rem; }
  .compact-options { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
