:root {
  color-scheme: light;
  --bg: #edf4fb;
  --surface: #ffffff;
  --text: #12253a;
  --muted: #5f7184;
  --accent: #1357c5;
  --accent-dark: #0d4296;
  --accent-soft: #dce8ff;
  --hero-dark: #041133;
  --cta-mint: #32bc9a;
  --border: rgba(18, 37, 58, 0.08);
  --shadow: 0 24px 60px rgba(10, 23, 41, 0.08);
  --container: 1180px;
  --page-gutter: clamp(64px, 8vw, 150px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow-x: clip;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top, rgba(19, 87, 197, 0.16), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: var(--text);
}

body.is-loading {
  overflow: hidden;
}

main {
  display: block;
  min-height: 0;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  gap: 26px;
  align-content: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(50, 188, 154, 0.18), transparent 28%),
    linear-gradient(135deg, #03102f 0%, #092a6a 52%, #1357c5 100%);
  color: #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0s linear 0.7s;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
}

.loader-mark img {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
  animation: loaderLogo 1.55s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: loaderRing 1.8s ease-in-out infinite;
}

.loader-ring-two {
  inset: 18px;
  border-color: rgba(50, 188, 154, 0.48);
  animation-delay: -0.55s;
}

.loader-line {
  width: min(220px, 58vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #32bc9a;
  animation: loaderLine 1.15s ease-in-out infinite;
}

@keyframes loaderLogo {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(5deg);
  }
}

@keyframes loaderRing {
  0% {
    opacity: 0;
    transform: scale(0.68) rotate(0deg);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.18) rotate(180deg);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(260%);
  }
}

.pointer-glow,
.pointer-dot {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-200px, -200px, 0);
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}

.pointer-glow {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 87, 197, 0.3) 0%, rgba(19, 87, 197, 0.16) 38%, rgba(19, 87, 197, 0) 72%);
  filter: blur(10px);
  z-index: 9998;
}

.pointer-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1357c5;
  box-shadow: 0 0 0 8px rgba(19, 87, 197, 0.12);
  z-index: 9999;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.container {
  width: min(calc(100% - var(--page-gutter)), var(--container));
  max-width: none;
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.site-header {
  position: relative;
  z-index: 2;
}

.contact-bar {
  background: linear-gradient(135deg, var(--hero-dark) 0%, #0d2356 100%);
  color: #ffffff;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.2;
  min-width: 0;
}

.contact-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 6px;
  border-radius: 999px;
  color: var(--accent);
  background: #ffffff;
}

.contact-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.contact-label {
  font-weight: 700;
}

.contact-detail {
  min-width: 0;
}

.nav-wrap {
  position: relative;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.site-nav {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: clamp(36px, 4.5vw, 70px);
  padding: 12px 0;
}

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

.brand img {
  display: block;
  width: auto;
  height: 88px;
  max-width: min(380px, 32vw);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.3rem;
  font-weight: 400;
}

.nav-list li {
  display: block;
  min-width: 0;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  color: var(--text);
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  background: var(--accent);
}

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

.nav-dropdown {
  position: relative;
}

.nav-link-dropdown {
  cursor: pointer;
}

.nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: currentColor;
  transition: transform 0.24s ease;
}

.nav-arrow svg {
  width: 13px;
  height: 13px;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  width: max-content;
  min-width: 250px;
  max-width: min(320px, 82vw);
  margin: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 54px rgba(10, 23, 41, 0.14);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav-submenu a {
  display: flex;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.25;
  white-space: normal;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(19, 87, 197, 0.08);
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;

  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-carousel {
  position: relative;
  height: clamp(660px, calc(100svh - 128px), 860px);
  min-height: 660px;
  margin-bottom: clamp(28px, 4vw, 58px);
  padding: 0;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(50, 188, 154, 0.18), transparent 24%);
  pointer-events: none;
}

.hero-slides {
  position: relative;
  height: 100%;
  min-height: 0;
}

.hero-slide > .container {
  width: 100%;
  max-width: none;
  height: 100%;
  padding-right: 0;
  padding-left: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(34px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0s linear 0.65s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.hero-slide-surface {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
}

.hero-slide-surface::before,
.hero-slide-surface::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-slide-surface::before {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -90px;
  background: rgba(50, 188, 154, 0.14);
}

.hero-slide-surface::after {
  width: 250px;
  height: 250px;
  bottom: -90px;
  left: -60px;
  background: rgba(19, 87, 197, 0.12);
}

.hero-slide-dark .hero-slide-surface {
  background: linear-gradient(135deg, var(--hero-dark) 0%, #0d2356 100%);
  color: #ffffff;
}

.hero-slide-light .hero-slide-surface {
  background: linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
  color: var(--text);
  border: 1px solid rgba(18, 37, 58, 0.08);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 3.4vw, 52px);
  width: min(calc(100% - var(--page-gutter)), var(--container));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(24px, 3svh, 38px) 0;
}

.hero-copy {
  max-width: 560px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-dark .hero-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #dce8ff;
}

.hero-slide-light .hero-kicker {
  background: rgba(19, 87, 197, 0.08);
  border-color: rgba(19, 87, 197, 0.12);
  color: var(--accent-dark);
}

.hero-title {
  margin: 18px 0 0;
  font-size: clamp(2.15rem, 3.35vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-summary {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-slide-dark .hero-summary {
  color: rgba(255, 255, 255, 0.78);
}

.hero-slide-light .hero-summary {
  color: var(--muted);
}

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

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--cta-mint);
  color: var(--hero-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.24s ease;
}

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

.hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-slide-light .hero-cta-secondary {
  border-color: rgba(19, 87, 197, 0.22);
  background: rgba(19, 87, 197, 0.08);
  color: var(--accent-dark);
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-frame {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: clamp(430px, calc(100svh - 220px), 680px);
  overflow: visible;
  background: transparent;
}

.hero-slide-light .hero-media-frame {
  background: transparent;
}

.hero-media-frame picture,
.hero-media-frame img {
  display: block;
}

.hero-media-frame picture {
  height: 100%;
}

.hero-media-frame img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.hero-control,
.hero-dot {
  border: 0;
  cursor: pointer;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(4, 17, 51, 0.86);
  color: #ffffff;
  font-size: 0.84rem;
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(10px);
}

.hero-control:hover {
  background: var(--hero-dark);
  transform: translateY(-50%) scale(1.04);
}

.hero-control-prev {
  left: clamp(12px, 2.2vw, 34px);
}

.hero-control-next {
  right: clamp(12px, 2.2vw, 34px);
}

.hero-pagination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(4, 17, 51, 0.2);
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-dot.is-active {
  width: 18px;
  background: var(--cta-mint);
}

.about-section {
  position: relative;
  padding: clamp(76px, 8vw, 112px) 0 clamp(104px, 10vw, 148px);
  background: #ffffff;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.about-media {
  position: relative;
  min-height: 0;
  height: clamp(390px, 42vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 51, 0) 55%, rgba(4, 17, 51, 0.16) 100%);
  pointer-events: none;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  max-width: 650px;
}

.about-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.2rem, 3.8vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(19, 87, 197, 0.2);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.about-button:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(19, 87, 197, 0.25);
  transform: translateY(-2px);
}

.about-section + .why-section {
  margin-top: clamp(44px, 6vw, 96px);
}

.about-button:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.55);
  outline-offset: 4px;
}

.about-page-hero {
  position: relative;
  isolation: isolate;
  z-index: 1;
  min-height: clamp(470px, 56svh, 650px);
  display: grid;
  align-items: center;
  margin-bottom: clamp(110px, 11vw, 152px);
  overflow: visible;
  color: #ffffff;
  background: var(--hero-dark);
}

.about-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("images/optimized/site/repl-about-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 17, 51, 0.92) 0%, rgba(7, 26, 74, 0.74) 48%, rgba(7, 26, 74, 0.36) 100%),
    radial-gradient(circle at 18% 24%, rgba(50, 188, 154, 0.22), transparent 30%);
}

.about-page-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(86px, 10vw, 130px) 0 clamp(118px, 12vw, 164px);
}

.about-page-eyebrow,
.about-page-section-eyebrow {
  margin: 0;
  color: var(--cta-mint);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-page-section-eyebrow {
  color: var(--accent);
}

.about-page-title {
  margin: 14px 0 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-page-summary {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.72;
}

.about-page-proof-grid {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100% - var(--page-gutter)), 1000px);
  transform: translate(-50%, 50%);
}

.about-page-proof-card {
  min-height: 142px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(50, 188, 154, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cta-mint) 0%, #25a985 100%);
  box-shadow: 0 22px 50px rgba(37, 169, 133, 0.24);
  text-align: center;
}

.about-page-proof-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.about-page-proof-icon svg {
  width: 24px;
  height: 24px;
}

.about-page-proof-card strong {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.about-page-section {
  position: relative;
  z-index: 0;
  padding: clamp(76px, 8vw, 118px) 0 clamp(82px, 8vw, 126px);
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: 44px 44px, 44px 44px, auto;
  overflow: hidden;
}

.about-page-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.about-page-story-copy {
  max-width: 670px;
}

.about-page-story-title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-page-story-copy p:not(.about-page-section-eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.about-page-story-gallery {
  position: relative;
  display: grid;
  justify-items: end;
  min-height: clamp(430px, 43vw, 600px);
}

.about-page-main-photo {
  width: min(100%, 520px);
  height: clamp(430px, 42vw, 590px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.12);
}

.about-page-main-photo img,
.about-page-thumb img,
.about-page-belief-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-main-photo img {
  object-position: center top;
}

.about-page-story-thumbs {
  position: absolute;
  left: -36px;
  bottom: 36px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(370px, 76%);
}

.about-page-thumb {
  height: clamp(132px, 14vw, 186px);
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 18px 42px rgba(10, 23, 41, 0.16);
}

.about-page-beliefs {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  margin-top: clamp(70px, 8vw, 118px);
}

.about-page-belief-media {
  position: relative;
  height: clamp(360px, 32vw, 520px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.about-page-belief-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 17, 51, 0) 58%, rgba(4, 17, 51, 0.18) 100%);
  pointer-events: none;
}

.about-page-belief-list {
  display: grid;
  gap: 16px;
}

.about-page-belief-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cta-mint);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10, 23, 41, 0.07);
}

.about-page-belief-card span {
  display: block;
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-page-belief-card h2,
.about-page-belief-card h3 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.about-page-belief-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-page-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 70px);
}

.about-page-counter-card {
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(50, 188, 154, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cta-mint) 0%, #25a985 100%);
  box-shadow: 0 22px 50px rgba(37, 169, 133, 0.2);
  text-align: center;
}

.about-page-counter-value {
  color: #ffffff;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.about-page-counter-card span {
  max-width: 190px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.why-section {
  position: relative;
  margin-bottom: clamp(180px, 17vw, 260px);
  padding: clamp(48px, 5.5vw, 78px) 0 clamp(104px, 8vw, 132px);
  background: linear-gradient(90deg, var(--hero-dark) 0%, #0d2356 50%, #ffffff 50%, #ffffff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.why-page-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.why-page-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.why-page-intro-media {
  min-height: 0;
  height: clamp(380px, 38vw, 540px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.why-page-intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-page-intro-copy {
  max-width: 710px;
}

.why-page-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-page-title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.why-page-intro-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.76;
}

.why-page-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(44px, 6vw, 78px);
}

.why-page-reason-card {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10, 23, 41, 0.07);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.why-page-reason-card:hover {
  border-color: rgba(19, 87, 197, 0.22);
  box-shadow: 0 24px 56px rgba(10, 23, 41, 0.11);
  transform: translateY(-4px);
}

.why-page-reason-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(50, 188, 154, 0.14);
  color: var(--accent);
}

.why-page-reason-icon svg {
  width: 24px;
  height: 24px;
}

.why-page-reason-card h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.why-page-reason-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.why-page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 70px);
}

.why-page-stat-card {
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(50, 188, 154, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cta-mint) 0%, #25a985 100%);
  box-shadow: 0 22px 50px rgba(37, 169, 133, 0.2);
  text-align: center;
}

.why-page-stat-value {
  color: #ffffff;
  font-size: clamp(2.8rem, 4.2vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.why-page-stat-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: start;
  gap: clamp(42px, 5vw, 78px);
}

.why-content {
  max-width: 560px;
  padding: 0;
  color: #ffffff;
}

.why-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-title {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(1.95rem, 2.7vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: stretch;
  gap: 12px;
  margin-top: 32px;
}

.why-item {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  height: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.why-item:hover {
  border-color: rgba(50, 188, 154, 0.34);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-icon {
  align-self: start;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(50, 188, 154, 0.15);
  color: var(--cta-mint);
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-item:hover .why-icon {
  background: var(--cta-mint);
  color: var(--hero-dark);
  transform: scale(1.1) rotate(-6deg);
}

.why-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.why-item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
}

.why-media {
  min-height: 0;
  height: clamp(460px, 46vw, 620px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.why-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100% - var(--page-gutter)), 1000px);
  transform: translate(-50%, 58%);
}

.why-stat-card {
  min-height: 150px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(50, 188, 154, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cta-mint) 0%, #25a985 100%);
  box-shadow: 0 22px 50px rgba(37, 169, 133, 0.22);
  text-align: center;
}

.why-stat-value {
  color: #ffffff;
  font-size: clamp(2.7rem, 4.4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
}

.why-stat-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.35;
}

.service-areas-section {
  position: relative;
  padding: clamp(82px, 8vw, 124px) 0 clamp(76px, 7vw, 112px);
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.service-areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  margin-bottom: 38px;
}

.service-areas-copy {
  max-width: 680px;
}

.service-areas-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-areas-title {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-areas-intro {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-areas-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-areas-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid rgba(19, 87, 197, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  box-shadow: 0 12px 28px rgba(10, 23, 41, 0.05);
}

.service-areas-meta strong {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.service-areas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(19, 87, 197, 0.2);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.service-areas-button:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px rgba(19, 87, 197, 0.26);
  transform: translateY(-2px);
}

.service-areas-button:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.55);
  outline-offset: 4px;
}

.service-areas-visual {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #071a4a 0%, #1357c5 64%, #32bc9a 100%);
  background-size: 38px 38px, 38px 38px, auto;
  box-shadow: 0 28px 68px rgba(10, 23, 41, 0.16);
}

.service-areas-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.service-areas-rings {
  position: absolute;
  top: 50%;
  left: 48%;
  width: min(300px, 72%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.service-areas-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.service-areas-rings span:nth-child(2) {
  inset: 18%;
  border-color: rgba(50, 188, 154, 0.45);
}

.service-areas-rings span:nth-child(3) {
  inset: 36%;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(50, 188, 154, 0.16);
}

.service-area-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 170px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(3, 16, 47, 0.18);
}

.service-area-pin::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(19, 87, 197, 0.12);
}

.service-area-pin.pin-main {
  top: 50%;
  left: 46%;
  background: var(--cta-mint);
  color: var(--hero-dark);
  transform: translate(-50%, -50%);
}

.service-area-pin.pin-main::before {
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.28);
}

.pin-north {
  top: 20%;
  left: 60%;
}

.pin-central {
  top: 29%;
  left: 33%;
}

.pin-west {
  top: 46%;
  left: 14%;
}

.pin-east {
  top: 56%;
  right: 12%;
}

.pin-south {
  bottom: 19%;
  left: 34%;
}

.service-areas-visual-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 17, 51, 0.44);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.service-areas-visual-copy span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-areas-visual-copy strong {
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 14px 34px rgba(10, 23, 41, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.service-area-card::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cta-mint);
  box-shadow: 0 0 0 6px rgba(50, 188, 154, 0.13);
}

.service-area-card:hover,
.service-area-card.is-primary {
  border-color: rgba(19, 87, 197, 0.22);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(10, 23, 41, 0.1);
}

.service-area-card:hover {
  transform: translateY(-4px);
}

.service-area-card.is-primary::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(19, 87, 197, 0.12);
}

.service-areas-section + .consultation-section {
  margin-top: 0;
}

.why-page-section + .consultation-section,
.why-section + .consultation-section,
.faq-section + .consultation-section {
  margin-top: 0;
}

.insurance-section {
  position: relative;
  padding: clamp(70px, 7vw, 104px) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% 12%, rgba(50, 188, 154, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.insurance-header {
  max-width: 790px;
  margin-bottom: 34px;
  text-align: center;
}

.insurance-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.insurance-title {
  margin: 12px auto 0;
  max-width: 780px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.insurance-intro {
  margin: 18px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.insurance-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.insurance-carousel::before,
.insurance-carousel::after {
  display: none;
}

.insurance-track {
  display: flex;
  width: max-content;
  animation: insuranceScroll 34s linear infinite;
  will-change: transform;
}

.insurance-carousel:hover .insurance-track {
  animation-play-state: paused;
}

.insurance-logo-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 20px;
  margin: 0;
  padding: 8px 0 18px;
  list-style: none;
}

.insurance-logo-card {
  display: grid;
  place-items: center;
  width: clamp(170px, 14vw, 230px);
  height: 112px;
  padding: 20px 24px;
  border: 1px solid rgba(18, 37, 58, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(10, 23, 41, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insurance-logo-card:hover {
  border-color: rgba(19, 87, 197, 0.18);
  box-shadow: 0 22px 52px rgba(10, 23, 41, 0.11);
  transform: translateY(-4px);
}

.insurance-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.insurance-section + .consultation-section {
  margin-top: 0;
}

@keyframes insuranceScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-section {
  position: relative;
  padding: clamp(76px, 8vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.services-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-title {
  margin: 12px auto 0;
  max-width: 740px;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.services-intro {
  margin: 18px auto 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: 265px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: var(--cta-mint);
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: rgba(19, 87, 197, 0.22);
  transform: translateY(-10px);
}

.service-card:focus-visible,
.service-detail-card:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.55);
  outline-offset: 5px;
}

.service-card.is-revealing {
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-thumbnail {
  min-height: 0;
  overflow: hidden;
  background: #dfe8f4;
}

.service-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.35s ease;
}

.service-card:hover .service-thumbnail img {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.service-content {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px;
}

.service-number {
  color: var(--cta-mint);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.service-content h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.service-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.services-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.services-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(19, 87, 197, 0.18);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.services-button:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 34px rgba(19, 87, 197, 0.24);
  transform: translateY(-2px);
}

.services-button:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.55);
  outline-offset: 4px;
}

.services-page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(480px, 58svh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--hero-dark);
}

.services-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("images/optimized/site/services-female-nurse-doing-physiotherapy-with-senior-man-nursing-home-using-dumbbells.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.why-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/repl-service-hero-companionship.jpg");
}

.faq-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/faq-two-health-care-personel-and-a-patient.jpg");
}

.contact-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/repl-get-in-touch-form.jpg");
  background-position: center 34%;
}

.get-in-touch-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/repl-get-in-touch-form.jpg");
  background-position: center 34%;
}

.careers-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/repl-get-in-touch-form.jpg");
  background-position: center 36%;
}

.appointment-page-hero .services-page-hero-bg {
  background-image: url("images/optimized/site/repl-get-in-touch-form.jpg");
  background-position: center 32%;
}

.why-page-hero .services-page-hero-inner {
  display: grid;
  place-items: center;
  text-align: center;
}

.why-page-hero .services-page-title {
  max-width: 900px;
  margin: 0;
}

.services-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 17, 51, 0.9) 0%, rgba(7, 26, 74, 0.72) 48%, rgba(7, 26, 74, 0.34) 100%),
    radial-gradient(circle at 18% 24%, rgba(50, 188, 154, 0.22), transparent 30%);
}

.services-page-hero-inner {
  padding: clamp(86px, 10vw, 130px) 0;
}

.services-page-eyebrow,
.services-message-eyebrow,
.service-list-eyebrow {
  margin: 0;
  color: var(--cta-mint);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-page-title {
  margin: 14px 0 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.services-page-summary {
  margin: 22px 0 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.72;
}

.appointment-section {
  padding: clamp(58px, 8vw, 98px) 0;
  background:
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 58%),
    radial-gradient(circle at 88% 12%, rgba(50, 188, 154, 0.13), transparent 30%);
}

.appointment-layout {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

.appointment-intro {
  max-width: 800px;
}

.appointment-intro h2 {
  margin: 12px 0 0;
  color: var(--hero-dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.appointment-intro p:last-child {
  margin: 18px 0 0;
  color: var(--body-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.appointment-frame-shell {
  overflow: hidden;
  border: 1px solid rgba(4, 17, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(4, 17, 51, 0.12);
}

.appointment-form-frame {
  display: block;
  width: 100%;
  min-height: 900px;
  height: 1580px;
  border: 0;
}

.contact-page-section {
  padding: clamp(64px, 8vw, 108px) 0;
  background:
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 52%),
    radial-gradient(circle at 88% 10%, rgba(50, 188, 154, 0.13), transparent 30%);
}

.contact-page-layout {
  display: grid;
  gap: clamp(34px, 5vw, 68px);
}

.contact-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
}

.contact-page-intro h2 {
  margin: 12px 0 0;
  color: var(--hero-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-page-intro p:last-child {
  margin: 0;
  color: var(--body-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-page-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-page-detail {
  display: grid;
  gap: 5px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(4, 17, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 17, 51, 0.08);
}

.contact-page-detail span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-page-detail strong,
.contact-page-detail a {
  color: var(--hero-dark);
  font-size: 0.98rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-page-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.contact-page-forms-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
}

.contact-form-card {
  overflow: hidden;
  border: 1px solid rgba(4, 17, 51, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 66px rgba(4, 17, 51, 0.12);
}

.contact-form-card-header {
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3vw, 34px) 0;
}

.contact-form-card-header p {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form-card-header h3 {
  margin: 10px 0 0;
  color: var(--hero-dark);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.contact-page-frame-shell {
  padding: 12px;
}

.contact-page-form-frame {
  min-height: 760px;
  height: 980px;
}

.contact-page-booking-frame {
  min-height: 900px;
  height: 1580px;
}

.careers-page-layout {
  display: grid;
  gap: clamp(30px, 5vw, 54px);
}

.careers-page-intro {
  max-width: 840px;
}

.careers-page-intro h2 {
  margin: 12px 0 0;
  color: var(--hero-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.careers-page-intro p:last-child {
  margin: 18px 0 0;
  color: var(--body-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.careers-form-card {
  max-width: 980px;
}

.careers-form-frame {
  min-height: 900px;
  height: 1420px;
}

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

.services-page-cta,
.service-more summary,
.service-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--cta-mint);
  color: var(--hero-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.services-page-cta:hover,
.service-more summary:hover,
.service-more-link:hover {
  background: #42d0ac;
  transform: translateY(-2px);
}

.services-page-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.services-page-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.services-message-section {
  padding: clamp(76px, 8vw, 118px) 0;
  background: #ffffff;
}

.services-message-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.services-message-media {
  min-height: 0;
  height: clamp(380px, 42vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.services-message-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-message-copy {
  max-width: 680px;
}

.services-message-title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.services-message-copy p:not(.services-message-eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.service-list-section {
  padding: clamp(76px, 8vw, 118px) 0;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.service-list-header {
  max-width: 780px;
  margin-bottom: 38px;
  text-align: center;
}

.service-list-eyebrow {
  color: var(--accent);
}

.service-list-title {
  margin: 12px auto 0;
  color: var(--text);
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.service-detail-card:hover {
  border-color: rgba(19, 87, 197, 0.24);
  background: #ffffff;
  transform: translateY(-4px);
}

.service-detail-card:hover .service-more-link {
  background: #42d0ac;
  transform: translateY(-2px);
}

.service-detail-number {
  color: var(--cta-mint);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-detail-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.service-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-card li {
  position: relative;
  min-width: 0;
  padding-left: 24px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}

.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta-mint);
  box-shadow: 0 0 0 4px rgba(50, 188, 154, 0.14);
}

.service-more {
  margin-top: 10px;
}

.service-more summary {
  width: fit-content;
  list-style: none;
  text-transform: none;
}

.service-more-link {
  width: fit-content;
  margin-top: 10px;
  text-transform: none;
}

.service-more summary::-webkit-details-marker {
  display: none;
}

.service-more p {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.service-page {
  background: #ffffff;
}

.service-page-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(500px, 58svh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--hero-dark);
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--service-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 17, 51, 0.92) 0%, rgba(7, 26, 74, 0.76) 52%, rgba(7, 26, 74, 0.38) 100%),
    radial-gradient(circle at 18% 28%, rgba(50, 188, 154, 0.24), transparent 32%);
}

.service-page-hero-inner {
  padding: clamp(86px, 10vw, 132px) 0;
}

.service-page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--cta-mint);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-page-breadcrumb a {
  color: inherit;
}

.service-page-title {
  margin: 16px 0 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(2.55rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-page-summary {
  margin: 22px 0 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 1.72;
}

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

.service-page-story {
  padding: clamp(78px, 8vw, 118px) 0;
}

.service-page-story + .service-page-story {
  padding-top: 0;
}

.service-feature-row {
  display: grid;
  grid-template-columns: minmax(310px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}

.service-feature-row + .service-feature-row {
  margin-top: clamp(68px, 7vw, 104px);
}

.service-feature-row-reverse .service-feature-media {
  order: 2;
}

.service-feature-media {
  min-height: clamp(360px, 42vw, 540px);
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8f4;
}

.service-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-feature-copy {
  max-width: 680px;
}

.service-page-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-feature-copy h2,
.service-page-highlights h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.05rem, 3.3vw, 3.18rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-feature-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.service-feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cta-mint);
  box-shadow: 0 0 0 5px rgba(50, 188, 154, 0.13);
}

.service-page-highlights {
  padding: clamp(72px, 8vw, 112px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.service-page-highlights-header {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.service-page-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-page-highlight-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.service-page-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(19, 87, 197, 0.09);
  color: var(--accent);
}

.service-page-icon svg {
  width: 26px;
  height: 26px;
}

.service-page-highlight-card h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-page-highlight-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.64;
}

.consultation-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 42vw, 560px);
  margin-top: clamp(144px, 14vw, 224px);
  overflow: clip;
  background: #0d2356;
  color: #ffffff;
  --consultation-bg-y: 0px;
}

.consultation-bg {
  position: absolute;
  inset: -92px 0;
  z-index: 0;
  background-image: url("images/optimized/site/consultation-center-hospital-room-with-modern-equipment-wellorganized-spaces-patient-care-health.jpg");
  background-position: center right;
  background-size: cover;
  transform: translate3d(0, var(--consultation-bg-y), 0) scale(1.08);
  will-change: transform;
}

.consultation-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 19, 47, 0.78) 0%, rgba(15, 40, 82, 0.7) 48%, rgba(18, 39, 81, 0.48) 100%),
    radial-gradient(circle at 70% 50%, rgba(19, 87, 197, 0.26), transparent 34%);
}

.consultation-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "copy call";
  align-items: center;
  gap: clamp(20px, 3.5vw, 54px);
  min-height: inherit;
  padding-right: clamp(270px, 31vw, 430px);
}

.consultation-copy {
  grid-area: copy;
  max-width: 900px;
  padding: clamp(72px, 7vw, 104px) 0;
}

.consultation-eyebrow {
  margin: 0;
  color: var(--cta-mint);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.consultation-title {
  margin: 12px 0 0;
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.35rem, 3.75vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.consultation-title span {
  display: block;
  white-space: nowrap;
}

.consultation-intro {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.consultation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  margin-top: 32px;
  padding: 0 32px;
  border-radius: 999px;
  background: #2947e8;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 18px 38px rgba(20, 48, 184, 0.34);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.consultation-cta:hover {
  background: #1f3bd4;
  box-shadow: 0 22px 44px rgba(20, 48, 184, 0.4);
  transform: translateY(-2px);
}

.consultation-cta:focus-visible,
.consultation-phone:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.58);
  outline-offset: 5px;
}

.consultation-call {
  grid-area: call;
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  min-height: 230px;
  transform: translateX(clamp(8px, 2vw, 36px));
}

.consultation-sketch {
  position: absolute;
  top: 52%;
  left: 50%;
  width: clamp(190px, 20vw, 300px);
  height: auto;
  color: #ffffff;
  fill: none;
  opacity: 0.96;
  pointer-events: none;
  transform: translate(-88%, -18%);
}

.consultation-sketch-path,
.consultation-plane,
.consultation-plane-detail {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-sketch-path {
  stroke-width: 5;
  stroke-dasharray: 9 13;
}

.consultation-plane,
.consultation-plane-detail {
  stroke-width: 6;
}

.consultation-phone {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #2947e8;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 38, 151, 0.38);
}

.consultation-phone svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
}

.consultation-phone-ripple {
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  animation: consultationRipple 3.2s linear infinite;
}

.consultation-phone-ripple-two {
  animation-delay: 0.8s;
}

.consultation-phone-ripple-three {
  animation-delay: 1.6s;
}

.consultation-phone-ripple-four {
  animation-delay: 2.4s;
}

.consultation-media {
  position: absolute;
  right: min(-24px, calc((100% - 100vw) / 2));
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: clamp(350px, 33vw, 540px);
  height: 100%;
  pointer-events: none;
}

.consultation-media img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(5, 19, 47, 0.22));
  transform: translateX(clamp(22px, 3vw, 58px));
}

.faq-section {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 87, 197, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  background-size: 46px 46px, 46px 46px, auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(32px, 4.3vw, 58px);
}

.faq-media {
  position: relative;
  min-height: 0;
  overflow: visible;
}

.faq-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.faq-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-media-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(19, 87, 197, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(10, 23, 41, 0.07);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.faq-media-button-primary {
  border-color: transparent;
  background: var(--accent);
  color: #ffffff;
}

.faq-media-button:hover {
  box-shadow: 0 16px 34px rgba(10, 23, 41, 0.12);
  transform: translateY(-2px);
}

.faq-content {
  min-width: 0;
}

.faq-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-title {
  margin: 12px 0 0;
  max-width: 680px;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-intro {
  margin: 18px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 8px;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: #ffffff;
  --bs-accordion-active-color: var(--text);
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(18, 37, 58, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 15px 36px rgba(10, 23, 41, 0.06);
}

.faq-item:has(.faq-question:not(.collapsed)) {
  border-color: rgba(19, 87, 197, 0.2);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(10, 23, 41, 0.1);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.faq-question:not(.collapsed) {
  background: #ffffff;
  color: var(--text);
  box-shadow: none;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(50, 188, 154, 0.55);
  outline-offset: -3px;
}

.faq-question::after {
  flex: 0 0 auto;
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: var(--bs-accordion-btn-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
}

.faq-question:not(.collapsed)::after {
  background-color: var(--cta-mint);
  background-image: var(--bs-accordion-btn-active-icon);
}

.faq-list .collapsing {
  height: auto !important;
  overflow: visible;
  transition: none;
}

.faq-answer-inner {
  padding: 0 16px 18px;
}

.faq-answer-inner p {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.get-in-touch-section {
  position: relative;
  padding: clamp(78px, 8vw, 124px) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

.get-in-touch-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.get-in-touch-content {
  max-width: 560px;
}

.get-in-touch-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.get-in-touch-title {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.get-in-touch-intro {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.get-in-touch-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.get-in-touch-details a,
.get-in-touch-details > span {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(10, 23, 41, 0.05);
}

.get-in-touch-details span span,
.get-in-touch-details a span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.get-in-touch-details strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.get-in-touch-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.58fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(10, 23, 41, 0.1);
}

.get-in-touch-media {
  min-height: 100%;
  background: #dfe8f4;
}

.get-in-touch-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
}

.get-in-touch-form-shell {
  display: grid;
  align-content: center;
  min-height: 570px;
  padding: clamp(16px, 2.4vw, 28px);
  background: #ffffff;
}

.jotform-frame {
  display: block;
  width: 100%;
  border: 0;
  background: #ffffff;
}

.get-in-touch-form-frame {
  min-height: 700px;
  height: 980px;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 37, 58, 0.12);
  border-radius: 8px;
  background: #f8fbff;
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-field textarea {
  min-height: 112px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(19, 87, 197, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(19, 87, 197, 0.1);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(19, 87, 197, 0.2);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.contact-submit:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px rgba(19, 87, 197, 0.28);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 7vw, 104px) 0 28px;
  color: #ffffff;
  background: var(--hero-dark);
}

.site-footer-bg,
.site-footer-shade {
  position: absolute;
  inset: 0;
}

.site-footer-bg {
  z-index: -2;
  background-image: url("images/optimized/site/footer-serious-african-american-female-doctor-walking-with-patient-s-test-results-before-meeting.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.site-footer-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 17, 51, 0.94) 0%, rgba(7, 26, 74, 0.88) 56%, rgba(7, 26, 74, 0.72) 100%),
    radial-gradient(circle at 82% 16%, rgba(50, 188, 154, 0.2), transparent 30%);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(150px, 0.7fr) minmax(190px, 0.9fr) minmax(210px, 0.9fr);
  gap: clamp(24px, 4vw, 54px);
}

.footer-brand img {
  display: block;
  width: min(260px, 72vw);
  height: auto;
}

.footer-brand p,
.footer-cta p {
  margin: 18px 0 0;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-links h2,
.footer-contact h2,
.footer-cta h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--cta-mint);
  color: var(--hero-dark);
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(50, 188, 154, 0.22);
}

.footer-bottom {
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

@keyframes consultationRipple {
  0% {
    opacity: 0;
    transform: scale(0.62);
  }

  14% {
    opacity: 0.72;
  }

  76% {
    opacity: 0.16;
  }

  100% {
    opacity: 0;
    transform: scale(1.82);
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 28px;
  }

  .brand img {
    height: 76px;
    max-width: min(330px, 34vw);
  }

  .nav-list {
    gap: 8px 16px;
    font-size: 0.9rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .hero-slides,
  .hero-slide-surface,
  .hero-slide-inner {
    min-height: 0;
  }

  .hero-slide-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    padding: 34px 0;
  }

  .hero-title {
    font-size: clamp(2.15rem, 3.8vw, 3.5rem);
  }

  .hero-media-frame,
  .hero-media-frame img {
    height: clamp(390px, calc(100svh - 250px), 590px);
    min-height: 0;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
  }

  .service-content {
    padding: 24px;
  }

  .services-message-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
  }

  .service-detail-grid {
    gap: 18px;
  }

  .service-detail-card {
    padding: 24px;
  }

  .service-detail-card ul {
    gap: 9px 14px;
  }

  .about-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 36px;
  }

  .about-media {
    height: clamp(360px, 45vw, 500px);
  }

  .about-page-hero {
    margin-bottom: 0;
  }

  .about-page-hero-inner {
    padding-bottom: 42px;
  }

  .about-page-story {
    grid-template-columns: 1fr;
  }

  .about-page-story-copy {
    max-width: 820px;
  }

  .about-page-story-gallery {
    justify-items: start;
    min-height: 0;
    max-width: 760px;
  }

  .about-page-main-photo {
    width: 100%;
    height: clamp(390px, 48vw, 520px);
  }

  .about-page-story-thumbs {
    left: auto;
    right: 24px;
    bottom: 24px;
  }

  .about-page-proof-grid {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(calc(100% - var(--page-gutter)), 900px);
    margin: 42px auto 64px;
    transform: none;
  }

  .about-page-proof-card {
    min-height: 132px;
    padding: 22px;
  }

  .about-page-beliefs {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .about-page-belief-media {
    height: 420px;
  }

  .why-layout {
    grid-template-columns: minmax(0, 0.98fr) minmax(280px, 1.02fr);
    gap: 44px;
  }

  .why-section {
    margin-bottom: clamp(164px, 16vw, 224px);
  }

  .why-content {
    max-width: 540px;
  }

  .why-media {
    height: clamp(440px, 52vw, 600px);
  }

  .why-stats {
    position: relative;
    left: auto;
    bottom: auto;
    gap: 12px;
    width: min(calc(100% - var(--page-gutter)), 900px);
    margin: 42px auto 0;
    transform: none;
  }

  .why-page-intro {
    grid-template-columns: 1fr;
  }

  .why-page-intro-media {
    height: clamp(360px, 44vw, 500px);
  }

  .why-page-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-page-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-stat-card {
    min-height: 136px;
    padding: 20px;
  }

  .service-areas-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
    gap: 32px;
  }

  .service-areas-visual {
    min-height: 360px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insurance-logo-set {
    gap: 16px;
  }

  .insurance-logo-card {
    width: 190px;
    height: 104px;
    padding: 18px 20px;
  }

  .consultation-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding-right: clamp(290px, 34vw, 390px);
  }

  .consultation-title {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
  }

  .consultation-title span {
    white-space: normal;
  }

  .consultation-phone {
    width: 78px;
    height: 78px;
  }

  .consultation-phone svg {
    width: 30px;
    height: 30px;
  }

  .consultation-call {
    transform: none;
  }

  .consultation-media {
    width: clamp(310px, 34vw, 440px);
  }

  .consultation-media img {
    transform: translateX(20px);
  }

  .faq-layout {
    grid-template-columns: minmax(310px, 1fr) minmax(0, 0.86fr);
    gap: 30px;
  }

  .faq-media {
    height: auto;
  }

  .faq-question {
    min-height: 58px;
    padding: 13px 15px;
  }

  .get-in-touch-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
    gap: 34px;
  }

  .get-in-touch-panel {
    grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1fr);
  }

  .get-in-touch-media img {
    min-height: 540px;
  }

  .get-in-touch-form-shell {
    min-height: 540px;
  }

  .contact-page-intro,
  .contact-page-forms {
    grid-template-columns: 1fr;
  }

  .contact-page-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-layout {
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(160px, 0.8fr));
  }

  .footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  body {
    display: block;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-wrap {
    z-index: 10000;
  }

  body.nav-open .hero-controls,
  body.nav-open .hero-control {
    display: none;
  }

  .pointer-glow,
  .pointer-dot {
    display: none;
  }

  .contact-bar {
    display: none;
  }

  .contact-icon {
    display: none;
  }

  .contact-item {
    gap: 0;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px 0;
  }

  .site-nav.menu-open {
    z-index: 10000;
  }

  .brand img {
    height: 68px;
    max-width: min(300px, 62vw);
  }

  .nav-toggle {
    position: relative;
    z-index: 10002;
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 10001;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: clamp(96px, 16vh, 132px) max(22px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(22px, env(safe-area-inset-left));
    background:
      radial-gradient(circle at 92% 12%, rgba(50, 188, 154, 0.16), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
    box-shadow: 28px 0 60px rgba(10, 23, 41, 0.18);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.34s ease, opacity 0.24s ease;
  }

  .site-nav.menu-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }

  .site-nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }

  .nav-menu {
    width: 100%;
    display: block;
    flex: 0 0 auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    padding: 0;
    font-size: clamp(1.45rem, 7vw, 2.35rem);
    font-weight: 700;
  }

  .nav-list > li,
  .nav-dropdown,
  .nav-link-dropdown {
    width: 100%;
  }

  .nav-menu a {
    width: 100%;
    padding: 12px 0;
    white-space: normal;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-link-dropdown {
    justify-content: space-between;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 0;
    visibility: hidden;
    transform: none;
  }

  .nav-dropdown:hover .nav-arrow,
  .nav-dropdown:focus-within .nav-arrow {
    transform: none;
  }

  .nav-dropdown.is-open .nav-arrow {
    transform: rotate(180deg);
  }

  .nav-submenu {
    position: static;
    display: grid;
    gap: 0;
    width: 100%;
    max-width: none;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 2px solid rgba(19, 87, 197, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    transition: max-height 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s, margin 0.2s ease;
  }

  .nav-dropdown.is-open .nav-submenu {
    max-height: 420px;
    margin: 2px 0 8px;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-submenu a {
    padding: 8px 0;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 600;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    margin-top: 4px;
  }

  .hero-carousel {
    padding: 0 0 112px;
    height: auto;
    margin-bottom: clamp(34px, 7vw, 70px);
  }

  .hero-slides {
    height: auto;
    min-height: 0;
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide-surface {
    height: auto;
    min-height: 0;
  }

  .hero-slide-inner {
    min-height: 0;
  }

  .hero-slide-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 24px;
    padding: 26px 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.85rem);
  }

  .hero-summary {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-media-frame,
  .hero-media-frame img {
    height: 420px;
    min-height: 420px;
  }

  .hero-controls {
    bottom: 24px;
  }

  .about-section {
    padding: 72px 0 96px;
  }

  .about-section + .why-section {
    margin-top: 34px;
  }

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

  .about-media {
    height: 430px;
  }

  .about-content {
    max-width: none;
  }

  .about-page-section {
    padding: 72px 0 86px;
  }

  .about-page-hero {
    min-height: auto;
    margin-bottom: 0;
  }

  .about-page-hero-inner {
    padding: 72px 0 42px;
  }

  .about-page-title {
    font-size: clamp(2.2rem, 7vw, 3.15rem);
  }

  .about-page-summary {
    font-size: 1rem;
  }

  .about-page-story {
    grid-template-columns: 1fr;
  }

  .about-page-story-copy {
    max-width: none;
  }

  .about-page-story-gallery {
    min-height: 0;
  }

  .about-page-main-photo {
    height: 430px;
  }

  .about-page-story-thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .about-page-proof-grid {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: min(calc(100% - var(--page-gutter)), 760px);
    margin: 0 auto 56px;
    transform: none;
  }

  .about-page-proof-card {
    min-height: 112px;
  }

  .about-page-beliefs {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .about-page-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-counter-card {
    min-height: 160px;
  }

  .why-section {
    margin-bottom: 0;
    padding: 48px 0 72px;
    background: linear-gradient(180deg, var(--hero-dark) 0%, #0d2356 64%, #ffffff 64%, #ffffff 100%);
  }

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

  .why-media {
    order: -1;
    height: 470px;
    border-radius: 8px;
  }

  .why-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 34px;
  }

  .why-page-section {
    padding: 72px 0;
  }

  .why-page-intro {
    grid-template-columns: 1fr;
  }

  .why-page-intro-media {
    height: 400px;
  }

  .why-page-reasons-grid,
  .why-page-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-section {
    padding: 74px 0;
  }

  .services-title {
    font-size: 2.25rem;
  }

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

  .service-card {
    grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 245px;
  }

  .service-thumbnail {
    min-height: 245px;
  }

  .services-page-hero {
    min-height: 500px;
  }

  .services-page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 17, 51, 0.92) 0%, rgba(7, 26, 74, 0.78) 62%, rgba(7, 26, 74, 0.48) 100%),
      radial-gradient(circle at 18% 24%, rgba(50, 188, 154, 0.2), transparent 30%);
  }

  .services-message-section,
  .service-list-section {
    padding: 72px 0;
  }

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

  .services-message-media {
    height: 420px;
  }

  .services-message-copy {
    max-width: none;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-section {
    padding: 72px 0;
  }

  .service-areas-layout {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .service-areas-copy {
    max-width: none;
  }

  .service-areas-visual {
    min-height: 340px;
  }

  .service-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-section {
    padding: 68px 0;
  }

  .insurance-header {
    margin-bottom: 28px;
  }

  .insurance-logo-card {
    width: 174px;
    height: 98px;
    padding: 16px 18px;
  }

  .insurance-logo-card img {
    max-height: 58px;
  }

  .consultation-section {
    min-height: auto;
    margin-top: 144px;
  }

  .consultation-bg {
    background-position: center;
  }

  .consultation-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "copy call";
    justify-items: stretch;
    gap: 24px;
    padding: 68px 0;
  }

  .consultation-copy {
    max-width: none;
    padding: 0;
    text-align: left;
  }

  .consultation-title {
    font-size: clamp(2.1rem, 5.6vw, 2.85rem);
  }

  .consultation-title span {
    white-space: normal;
  }

  .consultation-cta {
    min-height: 60px;
    margin-top: 28px;
    padding: 0 30px;
  }

  .consultation-call {
    justify-self: end;
    justify-items: center;
    min-height: 104px;
    transform: none;
  }

  .consultation-sketch {
    display: none;
  }

  .consultation-phone {
    width: 74px;
    height: 74px;
  }

  .consultation-phone-ripple {
    inset: -16px;
  }

  .consultation-media {
    display: none;
  }

  .faq-section {
    padding: 72px 0;
  }

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

  .faq-media {
    height: auto;
  }

  .faq-content {
    max-width: none;
  }

  .faq-media-actions {
    justify-content: center;
  }

  .get-in-touch-section {
    padding: 72px 0;
  }

  .get-in-touch-layout {
    grid-template-columns: 1fr;
  }

  .get-in-touch-content {
    max-width: none;
  }

  .get-in-touch-panel {
    grid-template-columns: 1fr;
  }

  .get-in-touch-media img {
    min-height: 360px;
    max-height: 460px;
  }

  .get-in-touch-form-shell {
    min-height: 0;
  }

  .get-in-touch-form-frame {
    min-height: 860px;
    height: 1180px;
  }

  .contact-page-details {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    grid-column: auto;
  }
}

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

  .appointment-form-frame {
    min-height: 1120px;
    height: 1840px;
  }

  .contact-list {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
    padding: 16px 0;
  }

  .contact-item {
    width: 100%;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .contact-text {
    width: 100%;
  }

  .contact-detail {
    overflow-wrap: anywhere;
  }

  .nav-wrap {
    background: #ffffff;
  }

  .site-nav {
    gap: 12px;
    padding: 12px 0;
  }

  .brand img {
    height: 60px;
    max-width: min(260px, 74vw);
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .nav-list {
    font-size: 0.9rem;
  }

  .nav-panel .nav-list {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .nav-panel .nav-cta {
    min-height: 54px;
    margin-top: 4px;
    padding: 0 18px;
  }

  .hero-carousel {
    padding-bottom: 116px;
  }

  .hero-slides,
  .hero-slide-surface,
  .hero-slide-inner {
    min-height: 0;
  }

  .hero-slide-surface {
    border-radius: 0;
  }

  .hero-slide-inner {
    width: auto;
    max-width: calc(100vw - 28px);
    padding: 22px 0;
  }

  .hero-copy {
    max-width: min(100%, 350px);
  }

  .hero-kicker {
    min-height: 36px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    margin-top: 18px;
    max-width: min(100%, 350px);
    overflow-wrap: break-word;
    font-size: clamp(1.62rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  .hero-summary {
    margin-top: 18px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-cta {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .hero-media-frame,
  .hero-media-frame picture,
  .hero-media-frame img {
    height: clamp(330px, 90vw, 430px);
    min-height: 0;
    border-radius: 0;
  }

  .hero-controls {
    bottom: 22px;
    padding: 5px 7px;
  }

  .hero-control {
    width: 34px;
    height: 34px;
  }

  .hero-dot.is-active {
    width: 16px;
  }

  .about-section {
    padding: 60px 0 82px;
  }

  .about-section + .why-section {
    margin-top: 26px;
  }

  .about-media {
    height: 320px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-copy {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-button {
    min-height: 46px;
    margin-top: 24px;
  }

  .about-page-section {
    padding: 60px 0 70px;
  }

  .about-page-hero-inner {
    padding: 60px 0 34px;
  }

  .about-page-title {
    font-size: 2.08rem;
  }

  .about-page-summary,
  .about-page-story-copy p:not(.about-page-section-eyebrow) {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-page-story-title {
    font-size: 2rem;
  }

  .about-page-main-photo {
    height: 330px;
  }

  .about-page-story-thumbs {
    grid-template-columns: 1fr;
  }

  .about-page-thumb {
    height: 170px;
  }

  .about-page-proof-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .about-page-proof-card strong {
    font-size: 0.96rem;
  }

  .about-page-belief-media {
    height: 300px;
  }

  .about-page-belief-card {
    padding: 22px;
  }

  .about-page-counter-grid {
    grid-template-columns: 1fr;
  }

  .about-page-counter-card {
    min-height: 148px;
  }

  .about-page-counter-value {
    font-size: 3.2rem;
  }

  .why-section {
    margin-bottom: 0;
    padding: 42px 0 58px;
    background: linear-gradient(180deg, var(--hero-dark) 0%, #0d2356 70%, #ffffff 70%, #ffffff 100%);
  }

  .why-title {
    font-size: 2rem;
  }

  .why-list {
    margin-top: 32px;
  }

  .why-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 17px;
  }

  .why-icon {
    width: 52px;
    height: 52px;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-media {
    height: 340px;
  }

  .why-list {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .why-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .why-stat-card {
    min-height: 122px;
  }

  .why-page-section {
    padding: 60px 0;
  }

  .why-page-title {
    font-size: 2rem;
  }

  .why-page-intro-media {
    height: 300px;
  }

  .why-page-reasons-grid,
  .why-page-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-page-reason-card {
    min-height: 0;
    padding: 22px;
  }

  .why-page-stat-card {
    min-height: 140px;
  }

  .services-section {
    padding: 62px 0;
  }

  .services-header {
    margin-bottom: 30px;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-intro {
    font-size: 0.96rem;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
    min-height: 0;
  }

  .service-thumbnail {
    min-height: 220px;
  }

  .service-content {
    padding: 22px;
  }

  .services-action {
    margin-top: 32px;
  }

  .services-button {
    padding: 0 22px;
  }

  .services-page-hero {
    min-height: 470px;
  }

  .services-page-hero-bg {
    background-position: 58% center;
  }

  .services-page-hero-inner {
    padding: 74px 0;
  }

  .services-page-title {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .services-page-summary,
  .services-message-copy p:not(.services-message-eyebrow) {
    font-size: 0.96rem;
  }

  .services-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-page-cta {
    width: 100%;
    text-align: center;
  }

  .services-message-section,
  .service-list-section {
    padding: 60px 0;
  }

  .services-message-media {
    height: 320px;
  }

  .services-message-title,
  .service-list-title {
    font-size: 2rem;
  }

  .service-list-header {
    margin-bottom: 30px;
  }

  .service-detail-card ul {
    grid-template-columns: 1fr;
  }

  .service-more summary {
    width: 100%;
  }

  .service-areas-section {
    padding: 60px 0;
  }

  .service-areas-title {
    font-size: 2rem;
  }

  .service-areas-intro {
    font-size: 0.96rem;
  }

  .service-areas-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-areas-button {
    width: 100%;
  }

  .service-areas-visual {
    min-height: 310px;
  }

  .service-area-pin {
    padding: 7px 8px;
    font-size: 0.72rem;
  }

  .pin-central {
    display: none;
  }

  .service-areas-visual-copy {
    right: 18px;
    bottom: 18px;
    padding: 13px 14px;
  }

  .service-areas-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-area-card {
    min-height: 64px;
    padding: 15px 16px;
  }

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

  .insurance-title {
    font-size: 2rem;
  }

  .insurance-intro {
    font-size: 0.96rem;
  }

  .insurance-carousel::before,
  .insurance-carousel::after {
    width: 44px;
  }

  .insurance-track {
    animation-duration: 28s;
  }

  .insurance-logo-set {
    gap: 12px;
    padding: 0 0 14px;
  }

  .insurance-logo-card {
    width: 148px;
    height: 88px;
    padding: 14px 16px;
  }

  .insurance-logo-card img {
    max-height: 50px;
  }

  .consultation-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "call"
      "copy";
    justify-items: center;
    gap: 20px;
    padding: 58px 0 60px;
  }

  .consultation-section {
    margin-top: 116px;
  }

  .consultation-copy {
    max-width: 560px;
    text-align: center;
  }

  .consultation-title {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .consultation-cta {
    width: 100%;
    min-height: 56px;
    padding: 0 22px;
    font-size: 0.92rem;
  }

  .consultation-call {
    justify-self: center;
    min-height: 108px;
  }

  .consultation-sketch {
    display: none;
  }

  .consultation-phone {
    width: 68px;
    height: 68px;
  }

  .consultation-phone svg {
    width: 27px;
    height: 27px;
  }

  .consultation-media {
    min-height: 0;
    margin-top: 2px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-media {
    height: auto;
  }

  .faq-media-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .faq-media-button {
    width: 100%;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-intro {
    font-size: 0.96rem;
  }

  .faq-list {
    margin-top: 26px;
  }

  .faq-question {
    gap: 10px;
    min-height: 56px;
    padding: 13px 14px;
    font-size: 0.92rem;
  }

  .faq-question::after {
    width: 30px;
    height: 30px;
  }

  .faq-answer-inner {
    padding: 0 16px 18px;
  }

  .get-in-touch-section {
    padding: 60px 0;
  }

  .get-in-touch-title {
    font-size: 2rem;
  }

  .get-in-touch-intro {
    font-size: 0.96rem;
  }

  .get-in-touch-media img {
    min-height: 280px;
    max-height: 340px;
  }

  .contact-page-form-frame,
  .get-in-touch-form-frame {
    min-height: 940px;
    height: 1280px;
  }

  .contact-page-booking-frame {
    min-height: 1120px;
    height: 1840px;
  }

  .careers-form-frame {
    min-height: 1120px;
    height: 1700px;
  }

  .contact-form {
    padding: 20px;
  }

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

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

  .footer-cta {
    grid-column: auto;
  }

  .footer-brand img {
    width: min(230px, 82vw);
  }
}

@media (max-width: 1100px) {
  .service-page-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .service-page-hero {
    min-height: 500px;
  }

  .service-feature-row,
  .service-feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .service-feature-row-reverse .service-feature-media {
    order: 0;
  }

  .service-feature-media {
    min-height: 420px;
  }

}

@media (max-width: 640px) {
  .service-page-hero {
    min-height: 470px;
  }

  .service-page-hero-inner {
    padding: 74px 0;
  }

  .service-page-title {
    font-size: clamp(2.2rem, 11vw, 3.05rem);
  }

  .service-page-summary,
  .service-feature-copy p {
    font-size: 0.96rem;
  }

  .service-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-page-actions .services-page-cta {
    width: 100%;
  }

  .service-page-story {
    padding: 60px 0;
  }

  .service-feature-row + .service-feature-row {
    margin-top: 56px;
  }

  .service-feature-media {
    min-height: 310px;
  }

  .service-feature-copy h2,
  .service-page-highlights h2 {
    font-size: 2rem;
  }

  .service-page-highlights {
    padding: 60px 0;
  }

  .service-page-highlights-grid {
    grid-template-columns: 1fr;
  }

  .service-page-highlight-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pointer-glow,
  .pointer-dot,
  .site-loader {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .hero-slide,
  .hero-cta,
  .hero-dot,
  .about-button,
  .loader-mark img,
  .loader-ring,
  .loader-line span,
  .service-card,
  .service-card::before,
  .service-thumbnail img,
    .services-button,
    .services-page-cta,
    .service-more summary,
    .service-more-link,
    .service-areas-button,
    .service-area-card,
    .service-detail-card,
  .insurance-logo-card,
  .faq-media-button,
  .faq-item,
  .accordion-collapse,
  .collapsing,
  .form-field input,
  .form-field select,
  .form-field textarea,
  .contact-submit,
  .consultation-cta {
    transition: none;
  }

  .insurance-track {
    animation: none;
  }

  .service-card:hover,
  .about-button:hover,
    .services-button:hover,
    .services-page-cta:hover,
    .service-more summary:hover,
    .service-more-link:hover,
    .service-areas-button:hover,
    .service-area-card:hover,
    .service-detail-card:hover,
    .service-detail-card:hover .service-more-link,
    .insurance-logo-card:hover,
  .faq-media-button:hover,
  .contact-submit:hover,
  .consultation-cta:hover {
    transform: none;
  }

  .insurance-carousel {
    overflow-x: auto;
    scroll-padding-inline: 16px;
  }

  .insurance-carousel::before,
  .insurance-carousel::after,
  .insurance-logo-set[aria-hidden="true"] {
    display: none;
  }

  .consultation-phone-ripple {
    animation: none;
  }
}
