:root {
  --navy-950: #061126;
  --navy-900: #081830;
  --navy-800: #0d2447;
  --navy-700: #183b6d;
  --blue-500: #5ba9f6;
  --blue-300: #96caff;
  --blue-100: #dbeeff;
  --ice: #f4f8fc;
  --white: #ffffff;
  --ink: #101827;
  --muted: #57677c;
  --line: #d9e3ef;
  --shadow: 0 24px 70px rgba(3, 18, 41, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-160%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.eyebrow.light {
  color: var(--blue-300);
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 790;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.section-intro {
  max-width: 700px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--blue-500);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(91, 169, 246, 0.26);
}

.button-primary:hover {
  background: #79baff;
}

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

.button-dark:hover {
  background: var(--navy-800);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.11);
}

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

.button-light:hover {
  background: var(--blue-100);
}

.button-arrow::after {
  content: "→";
  font-size: 1.18em;
  transition: transform 180ms ease;
}

.button-arrow:hover::after {
  transform: translateX(3px);
}

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

.topline {
  background: var(--navy-950);
  color: #d5e4f7;
  font-size: 0.79rem;
  letter-spacing: 0.02em;
}

.topline .container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topline p {
  margin: 0;
}

.topline p:first-child {
  min-width: 0;
}

.topline p:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.topline a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 227, 239, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 1.5vw, 22px);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

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

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.015em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(12px, 1.45vw, 20px);
}

.nav-links > a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #26364c;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links > a:not(.button):hover {
  color: var(--navy-700);
}

.nav-links > a.nav-recruit:not(.button) {
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 59, 109, 0.16);
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--navy-950);
}

.nav-links > a.nav-recruit:not(.button):hover {
  border-color: var(--blue-500);
  background: #c9e5ff;
}

.nav-links .button {
  display: none;
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-950);
}

.nav-toggle svg {
  width: 23px;
}

.hero {
  position: relative;
  overflow: visible;
  padding: 66px 0 44px;
  background:
    radial-gradient(circle at 88% 16%, rgba(91, 169, 246, 0.2), transparent 26%),
    linear-gradient(115deg, rgba(219, 238, 255, 0.66), transparent 46%),
    var(--ice);
}

.hero::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(24, 59, 109, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 52px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.hero-copy {
  padding: 18px 0 32px;
}

.hero-copy h1 span {
  color: var(--navy-700);
}

.hero-cta-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  margin: 25px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.hero-services li {
  padding: 8px 12px;
  border: 1px solid rgba(24, 59, 109, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.trust-row {
  display: grid;
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 18px auto -80px;
  overflow: hidden;
  border: 1px solid rgba(217, 227, 239, 0.86);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(6, 17, 38, 0.11);
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-width: 0;
  min-height: 138px;
  height: auto;
  overflow: visible;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

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

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  overflow-wrap: break-word;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.trust-item small {
  display: block;
  margin-top: 7px;
  color: #77879a;
  font-size: 0.72rem;
}

main section {
  padding: 110px 0;
}

.path-section {
  padding-top: 160px;
}

.path-layout {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
}

.path-layout .section-copy {
  position: sticky;
  top: 126px;
}

.path-switcher {
  display: grid;
  gap: 14px;
}

.path-button {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy-950);
  cursor: pointer;
  grid-template-columns: 44px 1fr auto;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.path-button:hover,
.path-button[aria-pressed="true"] {
  border-color: var(--blue-500);
  box-shadow: 0 12px 30px rgba(6, 17, 38, 0.08);
  transform: translateY(-1px);
}

.path-button[aria-pressed="true"] {
  background: var(--blue-100);
}

.path-number {
  color: var(--navy-700);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.path-button strong {
  font-size: 1rem;
}

.path-button .arrow {
  color: var(--navy-700);
  font-size: 1.3rem;
}

.path-result {
  position: relative;
  min-height: 274px;
  margin-top: 16px;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
}

.path-result::after {
  position: absolute;
  right: -10px;
  bottom: -82px;
  color: rgba(143, 197, 255, 0.08);
  content: "→";
  font-size: 16rem;
  font-weight: 300;
  line-height: 1;
}

.path-result > * {
  position: relative;
  z-index: 1;
}

.path-result .result-label {
  margin-bottom: 12px;
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-result h3 {
  max-width: 570px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.path-result p {
  max-width: 580px;
  color: #c7d7eb;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(143, 197, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 197, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-intro {
  color: #b8c9dd;
}

.expertise-head {
  display: grid;
  align-items: end;
  gap: 56px;
  margin-bottom: 44px;
  grid-template-columns: 1.15fr 0.85fr;
}

.expertise-head h2 {
  margin-bottom: 0;
}

.expertise-head > p {
  margin-bottom: 3px;
  color: #c0d1e5;
  font-size: 1.05rem;
}

.specialty-grid {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.specialty-card {
  min-height: 390px;
  padding: 32px;
  border: 1px solid rgba(150, 202, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.specialty-card:first-child {
  border-color: rgba(91, 169, 246, 0.52);
  background: rgba(91, 169, 246, 0.1);
}

.specialty-number {
  display: block;
  margin-bottom: 46px;
  color: var(--blue-300);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.specialty-card h3 {
  font-size: 1.55rem;
}

.specialty-card p {
  color: #c6d6e9;
}

.specialty-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.specialty-list li {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #edf5ff;
  font-size: 0.88rem;
}

.specialty-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.specialty-footer p {
  max-width: 520px;
  margin: 0;
  color: #c6d6e9;
}

.options-section {
  background: var(--ice);
}

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

.option-card {
  display: flex;
  min-width: 0;
  min-height: 286px;
  height: auto;
  overflow: visible;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.option-card:hover {
  border-color: #bad9f8;
  box-shadow: 0 18px 45px rgba(6, 17, 38, 0.08);
  transform: translateY(-4px);
}

.option-card .card-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--navy-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.option-card p {
  flex: 1;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.option-card a {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-700);
  font-weight: 800;
  text-decoration: none;
}

.option-card a::after {
  content: "→";
}

.process-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.85fr 1.15fr;
}

.process-steps {
  counter-reset: steps;
}

.process-step {
  position: relative;
  display: grid;
  min-height: 140px;
  padding: 12px 0 34px 84px;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.process-step + .process-step {
  padding-top: 34px;
}

.process-step::before {
  position: absolute;
  top: 12px;
  left: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--white);
  content: "0" counter(steps);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-step + .process-step::before {
  top: 34px;
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.broker-card {
  position: sticky;
  top: 128px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  color: var(--white);
}

.broker-card h3 {
  color: var(--white);
  font-size: 1.65rem;
}

.broker-card p {
  color: #c6d6e9;
}

.broker-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.broker-card li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #eef5fd;
}

.reviews-section {
  background: var(--navy-800);
  color: var(--white);
}

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

.reviews-section h2 {
  margin-bottom: 0;
  color: var(--white);
}

.rating-block {
  min-width: 170px;
  text-align: right;
}

.rating-block strong {
  display: block;
  color: var(--white);
  font-size: 3.5rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.rating-block span {
  color: var(--blue-300);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.review-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.review-stars {
  margin-bottom: 24px;
  color: var(--blue-300);
  letter-spacing: 0.14em;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 28px;
  color: var(--white);
  font-size: 1.27rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.42;
}

.review-card cite {
  color: #b9cbe0;
  font-size: 0.84rem;
  font-style: normal;
}

.review-source {
  margin: 28px 0 0;
  text-align: right;
}

.review-source a {
  color: var(--blue-300);
  font-weight: 750;
}

.about-layout {
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: 0.95fr 1.05fr;
}

.about-gallery {
  display: grid;
  align-items: start;
  gap: 14px;
  grid-template-columns: 1.18fr 0.82fr;
}

.social-photo {
  margin: 0;
}

.social-photo a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy-950);
  box-shadow: 0 16px 38px rgba(6, 17, 38, 0.14);
}

.social-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.social-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.social-photo-stack {
  display: grid;
  gap: 16px;
}

.social-photo-tall img {
  aspect-ratio: 525 / 928;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-700);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--blue-500);
  background: var(--blue-100);
}

.recruiting-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(91, 169, 246, 0.2), transparent 30%),
    var(--navy-700);
  color: var(--white);
}

.recruiting-section::after {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 80px solid rgba(150, 202, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.recruiting-shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 76px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
}

.recruiting-copy h2 {
  color: var(--white);
}

.recruiting-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: #c9d9eb;
  font-size: 1.08rem;
}

.recruiting-points {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.recruiting-points li {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  gap: 6px;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 0.58fr);
}

.recruiting-points strong {
  color: var(--white);
}

.recruiting-points span {
  color: #c6d7ea;
}

.recruiting-cta {
  padding: 38px;
  border: 1px solid rgba(150, 202, 255, 0.25);
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.recruiting-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--blue-300);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.recruiting-cta h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.recruiting-cta p {
  color: #c4d5e8;
}

.recruiting-cta .button {
  width: 100%;
  margin-top: 10px;
}

.recruiting-cta small {
  display: block;
  margin-top: 20px;
  color: #aebfd3;
  font-size: 0.78rem;
  text-align: center;
}

.recruiting-cta small a {
  color: var(--white);
  font-weight: 750;
}

.license-list {
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.license-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.license-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  background: var(--ice);
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-copy {
  position: sticky;
  top: 126px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--navy-950);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 31px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 58px 24px 0;
  color: var(--muted);
}

.contact-section {
  padding: 92px 0;
  background: var(--navy-950);
}

.contact-shell {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border: 1px solid rgba(150, 202, 255, 0.2);
  border-radius: 32px;
  background: var(--navy-800);
  color: var(--white);
}

.contact-shell::after {
  position: absolute;
  top: -90px;
  right: -50px;
  width: 360px;
  height: 360px;
  border: 80px solid rgba(91, 169, 246, 0.09);
  border-radius: 50%;
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 55px;
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-shell h2 {
  color: var(--white);
}

.contact-shell p {
  max-width: 650px;
  color: #c2d2e5;
}

.contact-options {
  display: grid;
  gap: 13px;
}

.contact-option {
  display: grid;
  min-height: 92px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  grid-template-columns: 46px 1fr auto;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-option:hover {
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.1);
}

.contact-option .contact-icon {
  color: var(--blue-300);
  font-size: 1.4rem;
}

.contact-option strong {
  display: block;
}

.contact-option span {
  display: block;
  color: #afc3db;
  font-size: 0.78rem;
}

.contact-option .contact-arrow {
  font-size: 1.3rem;
}

.site-footer {
  padding: 50px 0 86px;
  background: #040d1d;
  color: #aebed2;
}

.footer-main {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 0.8fr;
}

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

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: var(--white);
}

.footer-brand span {
  display: block;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: #d6e1ef;
  font-size: 0.86rem;
}

.compliance {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa2ba;
  font-size: 0.76rem;
  line-height: 1.62;
}

.compliance p {
  margin-bottom: 10px;
}

.equal-housing {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(217, 227, 239, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 50px rgba(6, 17, 38, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-cta .button {
  flex: 1;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 0.87rem;
}

@media (max-width: 1040px) {
  .nav-links {
    gap: 16px;
  }

  .nav-links > a:not(.button):nth-child(4),
  .nav-links > a:not(.button):nth-child(5) {
    display: none;
  }

  .hero-grid {
    gap: 34px;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .trust-item {
    padding-inline: 22px;
  }
}

@media (max-width: 860px) {
  .topline .container {
    justify-content: center;
  }

  .topline p:last-child {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    z-index: 120;
    top: 108px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    gap: 0;
    flex-direction: column;
  }

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

  .nav-links > a:not(.button),
  .nav-links > a:not(.button):nth-child(4),
  .nav-links > a:not(.button):nth-child(5) {
    display: block;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links > a.nav-recruit:not(.button) {
    margin: 8px 0 2px;
    padding: 12px 14px;
    border: 1px solid rgba(24, 59, 109, 0.16);
    border-radius: 12px;
    text-align: center;
  }

  .nav-links .button {
    display: inline-flex;
    margin-top: 14px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid,
  .path-layout,
  .process-layout,
  .about-layout,
  .faq-layout,
  .contact-grid,
  .recruiting-shell {
    grid-template-columns: 1fr;
  }

  .recruiting-shell {
    gap: 44px;
  }

  .expertise-head {
    gap: 20px;
    grid-template-columns: 1fr;
  }

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

  .specialty-card:last-child {
    grid-column: 1 / -1;
  }

  .specialty-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-card {
    width: min(100%, 640px);
  }

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

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

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

  .path-layout .section-copy,
  .broker-card,
  .faq-copy {
    position: static;
  }

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

  .reviews-grid .review-card:last-child {
    grid-column: 1 / -1;
  }

  .about-layout {
    gap: 54px;
  }

  .about-gallery {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topline {
    font-size: 0.7rem;
    text-align: center;
  }

  .topline .container {
    min-height: 40px;
  }

  .nav {
    min-height: 68px;
  }

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

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

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

  .nav-actions .button {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .button-row .button {
    width: 100%;
  }

  .hero-cta-note {
    text-align: center;
  }

  .trust-row {
    width: calc(100% - 28px);
    margin-bottom: -60px;
  }

  .trust-item {
    min-height: 124px;
    padding: 22px 18px;
  }

  .trust-item strong {
    font-size: 1.72rem;
  }

  main section {
    padding: 82px 0;
  }

  .path-section {
    padding-top: 132px;
  }

  .path-button {
    grid-template-columns: 34px 1fr auto;
    padding-inline: 16px;
  }

  .path-result,
  .broker-card,
  .option-card,
  .review-card,
  .specialty-card {
    padding: 24px;
  }

  .specialty-grid,
  .options-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card,
  .specialty-card:last-child,
  .option-card {
    min-height: auto;
    grid-column: auto;
  }

  .recruiting-points li {
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .recruiting-cta {
    padding: 28px 22px;
  }

  .reviews-grid .review-card:last-child {
    grid-column: auto;
  }

  .reviews-head {
    align-items: start;
    flex-direction: column;
  }

  .rating-block {
    text-align: left;
  }

  .about-gallery {
    width: min(100%, 440px);
    margin-inline: auto;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .social-photo-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-photo figcaption {
    font-size: 0.72rem;
  }

  .process-step {
    padding-left: 68px;
  }

  .contact-shell {
    padding: 34px 22px;
  }

  .contact-option {
    grid-template-columns: 38px 1fr auto;
    padding-inline: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

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

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