:root {
  --font-heading: "bogart", "Bricolage Grotesque", "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-heading-weight: 500;
  --brand-ink: #231f20;
  --brand-blue: #0c96e4;
  --brand-blue-deep: #123268;
  --brand-red: #ff3334;
  --brand-red-deep: #b91f28;
  --brand-yellow: #f6bb00;
  --brand-green: #1eb742;
  --cream: #fff9f1;
  --cream-deep: #f8eddf;
  --paper: #fffdf9;
  --mist: #e9f5f8;
  --navy: #123268;
  --muted: #625d59;
  --line: #e5d9cc;
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --shadow-soft: 0 24px 70px rgba(35, 31, 32, 0.1);
  --shadow-card: 0 12px 36px rgba(35, 31, 32, 0.07);
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  color: var(--brand-ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-heading-weight) !important;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 5.8vw, 5.35rem);
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
}

h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
}

a {
  color: var(--brand-blue-deep);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 3px solid var(--brand-yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

.container {
  --bs-gutter-x: 2rem;
}

.section-pad {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

@media (min-width: 992px) {
  .services-section {
    padding-block: clamp(4rem, 6vw, 6rem);
  }
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--brand-blue-deep);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  border-width: 2px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.btn-lg {
  min-height: 54px;
  padding: 0.75rem 1.45rem;
  font-size: 0.98rem;
}

.btn-sm {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.nav-call {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  line-height: 1;
}

.btn i {
  margin-right: 0;
}

.btn-primary {
  --bs-btn-bg: var(--brand-blue-deep);
  --bs-btn-border-color: var(--brand-blue-deep);
  --bs-btn-hover-bg: var(--navy);
  --bs-btn-hover-border-color: var(--navy);
  --bs-btn-active-bg: var(--navy);
  --bs-btn-active-border-color: var(--navy);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-blue-deep);
  --bs-btn-border-color: var(--brand-blue-deep);
  --bs-btn-hover-bg: var(--brand-blue-deep);
  --bs-btn-hover-border-color: var(--brand-blue-deep);
}

.btn-client-portal {
  --bs-btn-color: var(--navy);
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #b9dff2;
  --bs-btn-hover-color: var(--navy);
  --bs-btn-hover-bg: #f3fafe;
  --bs-btn-hover-border-color: #8fcbe8;
  --bs-btn-active-color: var(--navy);
  --bs-btn-active-bg: #e8f5fb;
  --bs-btn-active-border-color: #8fcbe8;
  --bs-btn-focus-shadow-rgb: 18, 50, 104;
}

.site-header {
  border-bottom: 1px solid transparent;
  background: #fff;
  box-shadow: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(35, 31, 32, 0.08);
  background: rgba(255, 249, 241, 0.93);
  box-shadow: 0 5px 25px rgba(35, 31, 32, 0.035);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 86px;
  padding-block: 0.25rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 0;
}

.navbar-brand img {
  display: block;
  width: 126px;
  height: auto;
}

.navbar-toggler {
  min-width: 46px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.nav-link {
  position: relative;
  min-height: 44px;
  padding: 0.6rem 0.8rem !important;
  color: var(--brand-ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-blue-deep);
}

.home-intro-gradient {
  background: #fff;
}

.hero-stage {
  position: relative;
}

.hero {
  position: relative;
  overflow-x: hidden;
  padding-top: clamp(2.5rem, 4vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.services-section {
  padding: clamp(7rem, 9vw, 9rem) 0 clamp(2.5rem, 4vw, 4rem);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

@media (min-width: 992px) {
  .hero {
    padding-bottom: clamp(6rem, 10vw, 10rem);
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 38rem;
  margin-block: 1.6rem 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.service-area {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 38rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-area i {
  color: var(--brand-red-deep);
}

.hero-visual {
  position: relative;
  padding: 1rem 0 2rem 1rem;
}

.hero-slides {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1106 / 1422;
  overflow: hidden;
  border-radius: 48% 48% 2.5rem 2.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 5.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-rotation-toggle {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  z-index: 4;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(18, 50, 104, 0.12);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(18, 50, 104, 0.1);
}

.hero-rotation-toggle:hover,
.hero-rotation-toggle:focus-visible {
  color: #fff;
  background: var(--navy);
}

.hero-visual::before {
  position: absolute;
  inset: 0.1rem -1rem 1rem 0;
  border-radius: 50% 50% 3rem 3rem;
  background: rgba(12, 150, 228, 0.13);
  content: "";
}

.hero-orbit,
.portrait-orbit {
  position: absolute;
  z-index: 3;
  display: block;
  width: var(--orbit-size);
  height: var(--orbit-size);
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: translate(var(--orbit-x, 0), var(--orbit-y, 0)) scale(0.9);
  transition: opacity 360ms ease-in, transform 900ms cubic-bezier(0.33, 0, 0.2, 1), width 900ms ease, height 900ms ease;
  pointer-events: none;
}

.hero-orbit-1 {
  --orbit-delay: 280ms;
  --orbit-size: 0.4rem;
  top: 3%;
  left: 20%;
  color: var(--brand-red);
}

.hero-orbit-2 {
  --orbit-delay: 40ms;
  --orbit-size: 1.85rem;
  top: 24%;
  left: -1.1rem;
  color: var(--brand-yellow);
}

.hero-orbit-3 {
  --orbit-delay: 420ms;
  --orbit-size: 2.6rem;
  top: 44%;
  right: -1.6rem;
  color: var(--brand-green);
}

.hero-orbit-4 {
  --orbit-delay: 150ms;
  --orbit-size: 0.85rem;
  right: 7%;
  bottom: 7%;
  color: var(--brand-blue);
}

.hero-orbit-5 {
  --orbit-delay: 500ms;
  --orbit-size: 0.35rem;
  bottom: 2%;
  left: 17%;
  color: var(--brand-red);
}

.hero-orbit-6 {
  --orbit-delay: 220ms;
  --orbit-size: 1.45rem;
  top: 63%;
  left: -0.4rem;
  color: var(--brand-blue);
}

.hero-orbit-7 {
  --orbit-delay: 350ms;
  --orbit-size: 0.6rem;
  top: 14%;
  right: -1rem;
  color: var(--brand-yellow);
}

.hero-orbit-8 {
  --orbit-delay: 90ms;
  --orbit-size: 2.1rem;
  top: -2.8rem;
  left: 52%;
  color: var(--brand-green);
}

.hero-orbit-9 {
  --orbit-delay: 470ms;
  --orbit-size: 1.1rem;
  top: 35%;
  right: -4.8rem;
  color: var(--brand-red);
}

.hero-orbit-10 {
  --orbit-delay: 310ms;
  --orbit-size: 3rem;
  bottom: 18%;
  left: -4.5rem;
  color: var(--brand-yellow);
}

.hero-orbit-11 {
  --orbit-delay: 570ms;
  --orbit-size: 0.4rem;
  right: 25%;
  bottom: -2.6rem;
  color: var(--brand-blue);
}

.hero-orbit-12 {
  --orbit-delay: 190ms;
  --orbit-size: 1.65rem;
  top: 8%;
  left: -5.5rem;
  color: var(--brand-blue);
}

.hero-orbit-13 {
  --orbit-delay: 620ms;
  --orbit-size: 0.3rem;
  top: 61%;
  right: -5.8rem;
  color: var(--brand-green);
}

.hero-orbit-14 {
  --orbit-delay: 380ms;
  --orbit-size: 2.3rem;
  bottom: -3.4rem;
  left: 46%;
  color: var(--brand-red);
}

.hero-orbit-15 {
  --orbit-delay: 710ms;
  --orbit-size: 0.65rem;
  top: -4rem;
  right: 16%;
  color: var(--brand-yellow);
}

.hero-visual[data-slide="1"] .hero-orbit-1,
.hero-visual[data-slide="1"] .hero-orbit-3,
.hero-visual[data-slide="1"] .hero-orbit-5,
.hero-visual[data-slide="1"] .hero-orbit-7,
.hero-visual[data-slide="1"] .hero-orbit-9,
.hero-visual[data-slide="1"] .hero-orbit-11,
.hero-visual[data-slide="1"] .hero-orbit-13,
.hero-visual[data-slide="1"] .hero-orbit-15 {
  --orbit-x: 0.9rem;
  --orbit-y: -0.55rem;
}

.hero-visual[data-slide="1"] .hero-orbit-2,
.hero-visual[data-slide="1"] .hero-orbit-4,
.hero-visual[data-slide="1"] .hero-orbit-6,
.hero-visual[data-slide="1"] .hero-orbit-8,
.hero-visual[data-slide="1"] .hero-orbit-10,
.hero-visual[data-slide="1"] .hero-orbit-12,
.hero-visual[data-slide="1"] .hero-orbit-14 {
  --orbit-x: -0.65rem;
  --orbit-y: 0.4rem;
}

.hero-visual[data-slide="1"] .hero-orbit-3 {
  --orbit-size: 1.75rem;
}

.hero-visual[data-slide="1"] .hero-orbit-8 {
  --orbit-size: 2.75rem;
}

.hero-visual[data-slide="1"] .hero-orbit-11 {
  --orbit-size: 0.75rem;
}

.hero-visual[data-slide="2"] .hero-orbit-1,
.hero-visual[data-slide="2"] .hero-orbit-4,
.hero-visual[data-slide="2"] .hero-orbit-7,
.hero-visual[data-slide="2"] .hero-orbit-10,
.hero-visual[data-slide="2"] .hero-orbit-13 {
  --orbit-x: -1rem;
  --orbit-y: -0.2rem;
}

.hero-visual[data-slide="2"] .hero-orbit-2,
.hero-visual[data-slide="2"] .hero-orbit-5,
.hero-visual[data-slide="2"] .hero-orbit-8,
.hero-visual[data-slide="2"] .hero-orbit-11,
.hero-visual[data-slide="2"] .hero-orbit-14 {
  --orbit-x: 0.65rem;
  --orbit-y: 0.8rem;
}

.hero-visual[data-slide="2"] .hero-orbit-3,
.hero-visual[data-slide="2"] .hero-orbit-6,
.hero-visual[data-slide="2"] .hero-orbit-9,
.hero-visual[data-slide="2"] .hero-orbit-12,
.hero-visual[data-slide="2"] .hero-orbit-15 {
  --orbit-x: 0.25rem;
  --orbit-y: -0.85rem;
}

.hero-visual[data-slide="2"] .hero-orbit-2 {
  --orbit-size: 2.45rem;
}

.hero-visual[data-slide="2"] .hero-orbit-10 {
  --orbit-size: 2.15rem;
}

.hero-visual[data-slide="2"] .hero-orbit-14 {
  --orbit-size: 3rem;
}

@media (hover: hover) {
  .hero:hover .hero-orbit,
  .portrait-wrap:hover .portrait-orbit {
    opacity: 1;
    transform: translate(var(--orbit-x, 0), var(--orbit-y, 0)) scale(1.04);
    transition-delay: var(--orbit-delay);
  }
}

@media (hover: none), (pointer: coarse) {
  .hero-visual.is-orbit-active .hero-orbit,
  .portrait-wrap.is-orbit-active .portrait-orbit {
    opacity: 1;
    transform: translate(var(--orbit-x, 0), var(--orbit-y, 0)) scale(1.04);
    transition-delay: var(--orbit-delay);
  }
}

.trust-strip {
  --trust-divider: rgba(18, 50, 104, 0.12);
  width: min(calc(100% - 2rem), 1440px);
  margin-inline: auto;
  padding-block: 2.2rem;
  border: 1px solid rgba(18, 50, 104, 0.06);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 32px rgba(18, 50, 104, 0.08);
}

.hero-stage .trust-strip {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.trust-strip .container {
  width: 100%;
  max-width: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.5vw, 1.75rem);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1vw, 1.1rem);
  min-height: 70px;
  padding-inline: clamp(0.5rem, 0.8vw, 1rem);
  color: var(--navy);
  font-size: calc(0.78rem + 3px);
  font-weight: 800;
  line-height: 1.4;
}

.icon-disc {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  background: transparent;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.icon-disc .bi::before {
  font-weight: 400 !important;
}

.icon-red,
.icon-yellow,
.icon-green,
.icon-blue {
  color: var(--brand-green);
  background: transparent;
}

.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 5vw, 4.5rem);
  align-items: start;
}

.services-intro-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  max-width: none;
}

.services-intro-block .eyebrow {
  grid-column: 1 / -1;
}

.services-intro-block h2 {
  grid-column: 1;
  grid-row: 2;
  white-space: nowrap;
}

.services-intro-block h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
}

.services-intro-block .section-intro {
  grid-column: 2;
  grid-row: 2;
  max-width: 30rem;
  margin-top: 0.65rem !important;
}

.specialties-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.specialties-panel > .eyebrow {
  margin-bottom: 1.5rem;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7rem);
}

.specialty-area {
  min-width: 0;
  padding: 0;
}

.specialty-area + .specialty-area {
  margin-top: 0;
  padding-top: 0;
  padding-right: 0;
  padding-left: clamp(3rem, 7vw, 7rem);
  border-top: 0;
  border-left: 1px solid var(--line);
}

.specialty-area h4 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: clamp(1.525rem, calc(2.5vw - 2px), 2.175rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.card-kicker {
  margin-bottom: 0.4rem;
  color: var(--brand-blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specialty-checklist {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding-top: 0;
}

.checked-list {
  display: grid;
  gap: 0.4rem;
  padding-left: 0;
  list-style: none;
}

.checked-list li {
  display: flex;
  gap: 0.75rem;
}

.checked-list li::before {
  color: var(--brand-blue-deep);
  content: "✓";
  font-weight: 900;
}

.approaches-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(4rem, 6vw, 6rem);
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
  padding: clamp(2.2rem, 3vw, 3rem) clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(18, 50, 104, 0.06);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 32px rgba(18, 50, 104, 0.08);
}

.approaches-band h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.approaches-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding-left: 0;
  list-style: none;
}

.approaches-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.approaches-list i {
  flex: 0 0 auto;
  width: 1.55rem;
  color: var(--brand-blue-deep);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.step-up-section {
  display: grid;
  grid-template-columns: 13rem minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  margin-top: 0;
  padding-block: clamp(0.25rem, 0.5vw, 0.5rem);
}

.step-up-section img {
  width: 100%;
  height: auto;
}

.step-up-section h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.step-up-section p:last-child {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--muted);
}

.step-up-section .btn {
  padding-inline: 2rem;
  white-space: nowrap;
}

.about-section {
  overflow-x: hidden;
  background: #fff;
}

@supports (overflow: clip) {
  .hero,
  .about-section {
    overflow-x: clip;
  }
}

.section-pad.about-section {
  padding-top: clamp(3.5rem, 5vw, 5rem);
}

.portrait-wrap {
  position: relative;
  max-width: 29rem;
  padding: 1rem 0 1.5rem 1rem;
}

.portrait-wrap::before {
  position: absolute;
  inset: 0.1rem -1rem 0.5rem 0;
  border-radius: 50% 50% 2.5rem 2.5rem;
  background: rgba(255, 51, 52, 0.12);
  content: "";
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 1115;
  object-fit: cover;
  object-position: center;
  border-radius: 48% 48% 2rem 2rem;
}

.portrait-orbit-1 {
  --orbit-delay: 80ms;
  --orbit-size: 0.35rem;
  top: 5%;
  left: 18%;
  color: var(--brand-yellow);
}

.portrait-orbit-2 {
  --orbit-delay: 340ms;
  --orbit-size: 1.4rem;
  top: 21%;
  left: -3.2rem;
  color: var(--brand-red);
}

.portrait-orbit-3 {
  --orbit-delay: 170ms;
  --orbit-size: 2.35rem;
  top: 43%;
  right: -3.8rem;
  color: var(--brand-green);
}

.portrait-orbit-4 {
  --orbit-delay: 520ms;
  --orbit-size: 0.65rem;
  right: 8%;
  bottom: 4%;
  color: var(--brand-blue);
}

.portrait-orbit-5 {
  --orbit-delay: 260ms;
  --orbit-size: 1.85rem;
  bottom: 17%;
  left: -4rem;
  color: var(--brand-yellow);
}

.portrait-orbit-6 {
  --orbit-delay: 650ms;
  --orbit-size: 0.3rem;
  top: 65%;
  right: -5rem;
  color: var(--brand-red);
}

.portrait-orbit-7 {
  --orbit-delay: 410ms;
  --orbit-size: 1rem;
  top: -2.5rem;
  right: 22%;
  color: var(--brand-blue);
}

.portrait-orbit-8 {
  --orbit-delay: 120ms;
  --orbit-size: 2.7rem;
  bottom: -3.2rem;
  left: 35%;
  color: var(--brand-green);
}

.portrait-orbit-9 {
  --orbit-delay: 580ms;
  --orbit-size: 0.55rem;
  top: 34%;
  right: -1.2rem;
  color: var(--brand-yellow);
}

.portrait-orbit-10 {
  --orbit-delay: 220ms;
  --orbit-size: 1.2rem;
  top: 78%;
  left: -1rem;
  color: var(--brand-red);
}

.credential-card {
  position: absolute;
  right: calc(-1rem - 30px);
  bottom: -0.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 19rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 1rem;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  line-height: 1.35;
}

.credential-card strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.credential-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 3.2vw, 2.75rem);
}

.about-section p:not(.eyebrow) {
  color: var(--muted);
}

.about-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.about-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.about-highlights i {
  width: 1.2rem;
  color: var(--brand-blue-deep);
  font-size: 1.08rem;
}

.pricing-section {
  background: var(--navy);
}

.pricing-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.pricing-copy {
  grid-column: 1 / span 5;
}

.pricing-copy h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}

.fees-card {
  grid-column: 7 / span 6;
  width: 100%;
  max-width: 36rem;
  justify-self: end;
  padding: 0;
}

.fee-list {
  display: grid;
}

.fee-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.fee-list div:last-child {
  border-bottom: 0;
}

.fee-list dt {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.fee-list dd {
  margin-bottom: 0;
  color: #fff;
  font-weight: 800;
}

.reviews-section {
  padding-block: clamp(3.5rem, 5vw, 5rem);
  background: #f3fafe;
}

.reviews-section > .container {
  max-width: none;
  padding-inline: 0;
}

.section-heading {
  max-width: 45rem;
}

.reviews-section .section-heading {
  max-width: none;
  padding-inline: 1rem;
}

.reviews-section .section-heading h2 {
  font-size: clamp(1.65rem, 4.5vw, 4.25rem);
  white-space: nowrap;
}

.reviews-google-link {
  display: inline-block;
  min-height: 44px;
  margin-top: 0.85rem;
  padding-block: 0.6rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.testimonials-carousel {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  overflow: hidden;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-carousel.is-dragging {
  cursor: grabbing;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 2vw;
  padding-block: 1.5rem;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonials-carousel.is-dragging .testimonial-track,
.testimonials-carousel.is-dragging .testimonial-track * {
  user-select: none;
}

.testimonial-item {
  position: relative;
  flex: 0 0 min(64rem, 56vw);
  opacity: 0.32;
  transform: scale(0.96);
  filter: saturate(0.65);
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.testimonial-item.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 26rem;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(0.5rem, 2vw, 1.5rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-slide {
  height: auto;
}

.star-rating {
  margin: 0;
  color: var(--brand-yellow);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.testimonial-meta {
  display: flex;
  min-height: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-source {
  color: var(--brand-blue-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card blockquote {
  flex: 1 0 auto;
  overflow: visible;
  margin-bottom: 2rem;
  padding: 0;
  color: var(--navy);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.75;
  scrollbar-gutter: auto;
}

.review-card blockquote p {
  margin: 0 0 1rem;
}

.review-card blockquote p:last-child {
  margin-bottom: 0;
}

.review-card figcaption {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(18, 50, 104, 0.2);
}

.testimonial-author {
  color: var(--brand-ink);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: var(--font-heading-weight);
  letter-spacing: -0.01em;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 1rem;
}

.testimonial-consent-note {
    max-width: 42rem;
    margin: 0.75rem auto 0;
    padding-inline: 1rem;
    color: rgba(18, 52, 102, 0.68);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.testimonial-control {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #cbbfb3;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
}

.testimonial-control:hover {
  color: #fff;
  border-color: var(--brand-blue-deep);
  background: var(--brand-blue-deep);
}

.testimonial-indicators {
  position: static;
  display: flex;
  gap: 0.55rem;
  margin: 0;
}

.testimonial-indicators [data-testimonial-index] {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  min-width: 28px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
}

.testimonial-indicators [data-testimonial-index]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
  opacity: 1;
  transform: translate(-50%, -50%);
}

.testimonial-indicators [data-testimonial-index]:not(.active)::before {
  opacity: 0.38;
}

.site-footer {
  padding-block: 3rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--brand-ink);
  background: #fff;
}

.faq-page-main {
  background: linear-gradient(180deg, #fff 0%, #f3fafe 100%);
}

.legal-page-main {
  background: #fff;
}

.legal-intro {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.legal-intro h1 {
  max-width: 16ch;
  margin-bottom: 0;
}

.legal-content {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.legal-document {
  max-width: 58rem;
  margin-inline: auto;
}

.legal-document p,
.legal-document li {
  color: #45413e;
}

.legal-document p {
  margin-bottom: 1.15rem;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  padding-left: 1.4rem;
}

.legal-document ol ol {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.legal-document section + section {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.legal-document h2 {
  max-width: 26ch;
  margin-bottom: 1.35rem;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.legal-document h2 span {
  color: var(--brand-blue);
}

.legal-document h3 {
  margin: 2rem 0 0.75rem;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}

.legal-callout {
  margin: 2rem 0 3rem;
  padding: 1.5rem;
  border-left: 5px solid var(--brand-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy) !important;
  background: var(--mist);
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq-intro {
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
}

.faq-intro h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.faq-lede {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.faq-section {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 7vw, 7rem);
  width: 100%;
}

.faq-aside {
  align-self: start;
  padding-top: 1.25rem;
}

.faq-aside h2 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

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

.faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-accordion .accordion-button {
  padding: 1.45rem 3rem 1.45rem 0;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.65vw, 1.4rem);
  font-weight: 700;
  line-height: 1.25;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus-visible {
  outline: 3px solid rgba(0, 102, 153, 0.28);
  outline-offset: 4px;
}

.faq-accordion .accordion-body {
  padding: 0 0 1.6rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-accordion .accordion-body a {
  font-weight: 700;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.5rem;
  padding-left: 1.15rem;
}

.faq-fee-list {
  display: grid;
  gap: 0;
}

.faq-fee-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid rgba(18, 50, 104, 0.12);
}

.faq-fee-list div:last-child {
  border-bottom: 0;
}

.faq-fee-list dt {
  font-weight: 600;
}

.faq-fee-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-intro {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(12, 150, 228, 0.16), transparent 23rem),
    radial-gradient(circle at 94% 88%, rgba(246, 187, 0, 0.15), transparent 18rem),
    linear-gradient(135deg, var(--cream) 0%, #fffdf9 52%, #edf8fb 100%);
}

.contact-intro h1,
.contact-intro h2 {
  max-width: none;
  margin-bottom: 0;
}

.contact-intro h2 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}

.contact-lede {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (min-width: 992px) {
  .contact-intro .col-lg-10 {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "heading copy"
      ". action";
    column-gap: clamp(3rem, 5vw, 5rem);
    row-gap: 1.5rem;
    align-items: center;
  }

  .contact-intro h2 {
    grid-area: heading;
    align-self: end;
  }

  .contact-intro .contact-lede {
    grid-area: copy;
    width: 100%;
    justify-self: end;
    align-self: center;
    padding-left: 0;
    border-left: 0;
  }

  .contact-intro .contact-cta {
    grid-area: action;
    width: 100%;
    max-width: 36rem;
    justify-self: end;
    align-self: start;
    margin-top: 0;
    padding-left: 0;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  margin-bottom: 2rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-form-section {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  max-width: 68rem;
  margin-inline: auto;
}

.form-section-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.form-section-card-no-divider {
  border-bottom: 0;
}

.form-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.form-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.form-kicker {
  margin-bottom: 0.25rem;
  color: var(--brand-blue-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-step {
  display: inline-grid;
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-step-red { background: var(--brand-red-deep); }
.form-step-green { background: #0b7024; }
.form-step-yellow { color: var(--brand-ink); background: var(--brand-yellow); }

.required-note {
  position: absolute;
  top: clamp(1.8rem, 4vw, 3.5rem);
  right: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.required-note span,
.form-label span {
  color: var(--brand-red-deep);
}

.form-label {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-control,
.form-select {
  min-height: 54px;
  border: 1px solid #cbbfb3;
  border-radius: 0.75rem;
  color: var(--brand-ink);
  background-color: #fff;
  font-size: 0.95rem;
}

textarea.form-control {
  min-height: 8rem;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-blue-deep);
  box-shadow: 0 0 0 0.25rem rgba(7, 92, 137, 0.14);
}

.form-control:invalid:focus,
.form-select:invalid:focus {
  border-color: var(--brand-red-deep);
  box-shadow: 0 0 0 0.25rem rgba(185, 31, 40, 0.12);
}

.reason-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.reason-option {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  min-height: 76px;
  padding: 1rem;
  border: 1px solid #c9dde5;
  border-radius: 0.9rem;
  color: var(--navy);
  background: var(--mist);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.reason-option:hover {
  border-color: var(--brand-blue-deep);
}

.reason-option:has(input:checked) {
  border-color: var(--brand-blue-deep);
  background: #d9eff7;
  box-shadow: inset 0 0 0 1px var(--brand-blue-deep);
}

.reason-option input {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.reason-option small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.reason-option-wide {
  grid-column: 1 / -1;
  min-height: 58px;
}

.form-check-input:checked {
  border-color: var(--brand-blue-deep);
  background-color: var(--brand-blue-deep);
}

.field-help,
.character-limit {
  color: var(--muted);
  font-size: 0.74rem;
}

.field-help {
  margin: -0.25rem 0 0.65rem;
}

.character-limit {
  margin: 0.45rem 0 0;
  text-align: right;
}

.field-error {
  margin: 0.8rem 0 0;
  color: var(--brand-red-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.form-submit-panel {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.form-notices {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.form-notices p {
  max-width: 62rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.form-notices i {
  margin-right: 0.4rem;
  color: var(--brand-blue-deep);
}

.submit-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.submit-actions .btn {
  flex: 0 0 auto;
}

.submit-actions .btn i {
  margin-right: 0;
  margin-left: 0.45rem;
}

.contact-status {
  margin-bottom: 0;
  padding: 0.8rem 1rem;
  border: 1px solid #bed9e3;
  border-radius: 0.75rem;
  color: var(--brand-ink);
  background: var(--mist);
  font-size: 0.78rem;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  width: 106px;
  height: auto;
  margin-bottom: 0.25rem;
}

.footer-certification-logo {
  display: block;
  width: clamp(180px, 16vw, 230px);
  height: auto;
  margin-left: auto;
}

.footer-top p {
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  text-decoration: none;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--brand-blue-deep);
  background: var(--brand-blue-deep);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-block: 1.5rem;
}

.footer-links a {
  min-height: 44px;
  padding-block: 0.65rem;
  color: var(--navy);
  font-size: 0.77rem;
}

.footer-links .footer-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-left: auto;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #f3fafe;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-links .footer-back-to-top:hover {
  color: #fff;
  background: var(--navy);
  transform: translateY(-1px);
}

.footer-back-to-top i {
  font-size: 0.85rem;
}

.emergency-note {
  max-width: 70rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.6;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.legal-hero .hero-lede {
  max-width: 46rem;
}

.legal-source-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.legal-source-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 7.5rem;
}

.legal-nav p {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line);
  color: var(--brand-ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a[aria-current="page"] {
  color: var(--navy);
}

.legal-document {
  max-width: 52rem;
}

.legal-document h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-document h3 {
  margin-top: 2.75rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.legal-document p,
.legal-document li {
  color: var(--muted);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.legal-note {
  margin-block: 2rem;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 4px solid var(--brand-yellow);
}

.legal-note p {
  margin-bottom: 0;
}

.legal-resource-list {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.legal-resource {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-resource:last-child {
  border-bottom: 0;
}

.legal-resource h3 {
  margin-top: 0;
}

.pdf-viewer {
  width: 100%;
  min-height: 68rem;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

@media (max-width: 1199.98px) {
  .trust-item {
    flex-direction: column;
    gap: 0.55rem;
    text-align: center;
  }

}

@media (max-width: 991.98px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-aside {
    padding-top: 0;
  }

  .faq-aside h2 {
    max-width: 18ch;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portrait-orbit-6,
  .portrait-orbit-7,
  .portrait-orbit-8,
  .portrait-orbit-9,
  .portrait-orbit-10 {
    display: none;
  }

  .hero-stage .trust-strip {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .testimonial-track {
    gap: 3vw;
  }

  .testimonial-item {
    flex-basis: 78vw;
  }

  .navbar-collapse {
    padding: 1rem 0 1.25rem;
  }

  .nav-link {
    padding-inline: 0 !important;
  }

  .nav-call {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-visual {
    max-width: 45rem;
    margin-inline: auto;
  }

  .hero-slides {
    aspect-ratio: 1106 / 1422;
  }

  .hero-orbit-8,
  .hero-orbit-9,
  .hero-orbit-10,
  .hero-orbit-11,
  .hero-orbit-12,
  .hero-orbit-13,
  .hero-orbit-14,
  .hero-orbit-15 {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
  }

  .approaches-band {
    grid-template-columns: 1fr;
  }

  .pricing-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-copy,
  .fees-card {
    grid-column: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.5rem;
  }

  .legal-nav p {
    grid-column: 1 / -1;
  }

}

@media (max-width: 767.98px) {
  .section-pad {
    padding-block: 5rem;
  }

  .services-intro-block {
    display: block;
  }

  .services-intro-block .section-intro {
    max-width: 36rem;
    margin-top: 1rem !important;
  }

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

  .step-up-section img {
    width: 11.7rem;
  }

  .step-up-section .btn {
    width: fit-content;
    white-space: normal;
  }

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

  .trust-item:last-child {
    grid-column: 1 / -1;
  }

  .portrait-wrap {
    margin-inline: auto;
  }

  .credential-card {
    right: 0.75rem;
    bottom: -0.5rem;
  }

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

  .footer-top {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .footer-links .footer-back-to-top {
    margin-left: 0;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-fee-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .reviews-section .section-heading h2 {
    white-space: normal;
  }

  .container {
    --bs-gutter-x: 1.35rem;
  }

  .row.g-5 {
    --bs-gutter-x: 1.35rem;
  }

  .navbar-brand img {
    width: 146px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, calc(8.2vw + 0.7rem), 2.625rem);
  }

  .hero-actions {
    width: 100%;
    max-width: 20rem;
    flex-direction: row !important;
    gap: 0.65rem !important;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 0.7rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero-visual {
    width: 77vw;
    max-width: 19rem;
    margin-inline: auto;
    padding: 0;
  }

  .hero-visual::before {
    inset: 0.45rem -0.45rem -0.45rem 0.45rem;
    border-radius: 48% 48% 2.5rem 2.5rem;
  }

  .hero-rotation-toggle {
    bottom: 1rem;
    left: 1rem;
  }

  .portrait-wrap {
    width: 77vw;
    max-width: 19rem;
    padding: 0;
  }

  .portrait-wrap::before {
    inset: 0.45rem -0.45rem -0.45rem 0.45rem;
    border-radius: 48% 48% 2rem 2rem;
  }

  .hero-orbit-2 {
    --orbit-size: 1.5rem;
    left: -0.35rem;
  }

  .hero-orbit-3 {
    --orbit-size: 2rem;
    right: -0.35rem;
  }

  .hero-orbit-6 {
    --orbit-size: 1.2rem;
    left: -0.25rem;
  }

  .hero-orbit-7 {
    right: -0.25rem;
  }

  .portrait-orbit-2 {
    --orbit-size: 1.15rem;
    left: -0.35rem;
  }

  .portrait-orbit-3 {
    --orbit-size: 1.8rem;
    right: -0.35rem;
  }

  .portrait-orbit-5 {
    --orbit-size: 1.45rem;
    left: -0.35rem;
  }

  .credential-card {
    right: 50%;
    width: min(19rem, calc(100vw - 2rem));
    min-width: 0;
    transform: translateX(50%);
  }

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

  .specialty-area {
    padding-right: 0;
  }

  .specialty-area + .specialty-area {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .approaches-list {
    grid-template-columns: 1fr;
  }

  .fee-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .pdf-viewer {
    min-height: 42rem;
  }

  .review-card blockquote {
    font-size: 0.95rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-certification-logo {
    width: min(230px, 100%);
    margin-left: 0;
  }

  .required-note {
    position: static;
    margin: -1.2rem 0 1.5rem;
  }

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

  .reason-option-wide {
    grid-column: auto;
  }

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

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

.faq-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: end;
}

.faq-intro h1 {
  max-width: none;
}

.faq-tools {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: #fff;
  border: 1px solid rgba(13, 48, 101, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 14px 32px rgba(13, 48, 101, 0.08);
}

.faq-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
}

.faq-search-field {
  position: relative;
}

.faq-search-field i {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1;
  color: var(--navy);
  transform: translateY(-50%);
  pointer-events: none;
}

.faq-search-field .form-control {
  min-height: 3.25rem;
  padding-left: 2.75rem;
  border-color: var(--line);
  border-radius: 999px;
}

.faq-search-form .btn {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.faq-filter {
  padding: 0.65rem 1rem;
  color: var(--navy);
  font-weight: 800;
  background: #f3fafe;
  border: 1px solid #c8dae6;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.faq-filter:hover,
.faq-filter:focus-visible,
.faq-filter.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.faq-results-summary {
  margin: 0 0 2rem;
  color: var(--muted);
  font-weight: 700;
}

.faq-category-group {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  scroll-margin-top: 7rem;
}

.faq-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-category-heading .eyebrow {
  margin-bottom: 0.5rem;
}

.faq-category-heading h2 {
  margin: 0;
}

.faq-category-count {
  flex: 0 0 auto;
  padding: 0.4rem 0.75rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  background: #e9f5fb;
  border-radius: 999px;
}

.faq-no-results {
  padding: 4rem 1rem;
  text-align: center;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 14px 30px rgba(13, 48, 101, 0.07);
}

.faq-no-results i {
  color: var(--navy);
  font-size: 2rem;
}

.faq-no-results h2 {
  margin: 1rem 0 0.5rem;
}

.faq-no-results p {
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .faq-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .faq-search-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .faq-search-form {
    grid-template-columns: 1fr;
  }

  .faq-search-field {
    grid-column: auto;
  }

  .faq-category-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-orbit,
  .portrait-orbit {
    transition: none !important;
  }
}
.contact-intro .spwidget-button-wrapper {
  margin-top: 1.75rem;
  text-align: left;
}

.contact-intro .spwidget-button {
  min-width: 10rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border: 2px solid var(--brand-blue-deep);
  border-radius: 999px;
  color: #fff !important;
  background: var(--brand-blue-deep);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.contact-intro .spwidget-button:hover,
.contact-intro .spwidget-button:focus {
  border-color: var(--navy);
  color: #fff !important;
  background: var(--navy);
}
