:root {
  --purple: #7d4eb2;
  --lavender: #d9c5f2;
  --lavender-soft: #f5effd;
  --blue: #8daee8;
  --blue-soft: #eef5ff;
  --sage: #7d9f83;
  --sage-soft: #edf5ee;
  --navy: #22143f;
  --ink: #2b2140;
  --muted: #685f78;
  --white: #ffffff;
  --line: #e5dced;
  --shadow: 0 22px 58px rgba(34, 20, 63, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "brand cta"
    "brand nav";
  align-items: center;
  gap: 8px clamp(18px, 4vw, 56px);
  min-height: 132px;
  padding: 16px clamp(18px, 4vw, 64px) 18px;
  border-bottom: 1px solid rgba(229, 220, 237, 0.94);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 34px rgba(34, 20, 63, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  width: clamp(280px, 28vw, 430px);
  min-width: 280px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 132px;
  flex: 0 1 auto;
  object-fit: contain;
}

.header-career-link {
  grid-area: cta;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(620px, 100%);
  min-height: 42px;
  padding: 9px 18px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--purple), #9a61bb);
  color: var(--white);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  box-shadow:
    0 18px 34px rgba(34, 20, 63, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.header-career-link::after {
  content: "";
  display: none;
}

.header-career-link:hover {
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: var(--white);
  box-shadow:
    0 22px 46px rgba(34, 20, 63, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.header-career-link:focus-visible {
  outline: 3px solid rgba(125, 78, 178, 0.34);
  outline-offset: 4px;
}

.site-nav {
  grid-area: nav;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  gap: 2px;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 6px 10px 10px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: transparent;
  color: var(--navy);
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.nav-group-plain .nav-link {
  padding: 10px 12px;
  border-radius: 999px;
}

.dropdown-toggle {
  display: inline-grid;
  min-width: 28px;
  min-height: 44px;
  place-items: center;
  padding: 0 8px 0 2px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
}

.nav-link:hover,
.nav-link[aria-expanded="true"],
.nav-link.is-active,
.dropdown-toggle:hover,
.dropdown-toggle[aria-expanded="true"] {
  background: var(--lavender-soft);
  color: var(--purple);
}

.nav-link.is-active {
  box-shadow: inset 0 -3px 0 rgba(118, 151, 203, 0.55);
}

.page-shell {
  animation: pageFade 280ms ease both;
}

.mini-react-renderer .page-shell {
  animation: none;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: min(320px, 88vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dropdown.is-open {
  display: block;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  height: 13px;
}

.dropdown p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.94rem;
}

.dropdown ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dropdown li button,
.dropdown li a {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}

.dropdown li button:hover,
.dropdown li a:hover {
  background: var(--blue-soft);
  color: var(--purple);
}

.join-link,
.join-top-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.join-link {
  padding: 0;
}

.join-top-link {
  margin-bottom: 14px;
  padding: 0;
}

.top-page-link {
  display: flex;
  justify-content: center;
  padding: 12px clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(125, 78, 178, 0.14);
  background: linear-gradient(90deg, var(--lavender-soft), #ffffff, var(--blue-soft));
}

.top-page-link button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-page-link button:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 76px) clamp(56px, 8vw, 96px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 197, 242, 0.76), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(141, 174, 232, 0.38), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8f2ff 44%, #eef5ff 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(125, 78, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 78, 178, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 78%);
}

.hero-content {
  max-width: 790px;
}

.hero-logo {
  width: min(280px, 68vw);
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(125, 78, 178, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.8vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.06;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--purple), #5c2d94);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(125, 78, 178, 0.28);
}

.button.secondary {
  border-color: rgba(125, 78, 178, 0.28);
  background: var(--white);
  color: var(--purple);
}

.button.link-light {
  min-height: auto;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 7px;
  box-shadow: none;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(229, 220, 237, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-panel div {
  padding: 24px;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--navy);
  font-weight: 900;
}

.hero-panel span {
  margin-top: 6px;
  color: var(--muted);
}

.home-hero {
  display: flex;
  min-height: clamp(560px, 76vh, 820px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 92px);
  color: var(--white);
}

.home-slideshow,
.home-slideshow img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.home-slideshow {
  z-index: -3;
  background: var(--navy);
}

.home-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 950ms ease, transform 5200ms ease;
}

.home-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.48) 48%, rgba(34, 20, 63, 0.2)),
    linear-gradient(180deg, rgba(34, 20, 63, 0.18), rgba(34, 20, 63, 0.52));
}

.home-hero .hero-content {
  max-width: 780px;
}

.home-hero h1,
.home-hero .eyebrow,
.home-hero .hero-copy {
  color: var(--white);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.home-hero .hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.home-slide-dots {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(24px, 5vw, 54px);
  display: flex;
  gap: 10px;
  z-index: 1;
}

.home-slide-dots button,
.home-testimonial-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.home-slide-dots button.is-active,
.home-testimonial-dots button.is-active {
  background: var(--lavender);
  box-shadow: 0 0 0 5px rgba(217, 197, 242, 0.24);
}

.home-community {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: #ffffff;
}

.home-community-collage {
  position: relative;
  min-height: clamp(340px, 44vw, 620px);
}

.home-community-collage::before,
.home-community-collage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-community-collage::before {
  right: 4%;
  bottom: 4%;
  width: min(240px, 34vw);
  height: min(240px, 34vw);
  border: 2px dotted rgba(120, 120, 130, 0.34);
}

.home-community-collage::after {
  right: 10%;
  bottom: 11%;
  width: min(150px, 22vw);
  height: min(150px, 22vw);
  border: 2px dotted rgba(120, 120, 130, 0.26);
}

.home-community-collage > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(34, 20, 63, 0.1));
}

.home-community-logo {
  position: absolute;
  right: 10%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  width: clamp(88px, 10vw, 126px);
  height: clamp(88px, 10vw, 126px);
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(34, 20, 63, 0.14);
}

.home-community-logo img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.home-community-copy {
  max-width: 620px;
}

.home-community-copy h2 {
  margin: 0;
  color: #12101a;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

.home-community-copy p:not(.eyebrow) {
  color: #44424d;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.85;
}

.home-community-copy .button {
  margin-top: 12px;
  border-radius: 0;
  background: #7d4eb2;
  box-shadow: 0 14px 30px rgba(125, 78, 178, 0.18);
}

.home-services {
  background: #ffffff;
}

.home-services .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.home-service-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(125, 78, 178, 0.14);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(34, 20, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-service-card:hover {
  border-color: rgba(125, 78, 178, 0.3);
  box-shadow: 0 24px 58px rgba(34, 20, 63, 0.13);
  transform: translateY(-4px);
}

.home-service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.home-service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.home-service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.home-why {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f9 42%, #eef1f4 100%);
}

.home-why .section-heading,
.home-testimonials {
  text-align: center;
}

.home-why .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.home-why .section-heading h2 {
  color: #1f1832;
}

.five-star-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto clamp(24px, 4vw, 38px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(34, 20, 63, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 249, 0.96)),
    var(--white);
  box-shadow: 0 18px 46px rgba(33, 38, 50, 0.08);
}

.five-star-band span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b223f, var(--purple));
  color: var(--white);
  font-weight: 900;
}

.five-star-band strong {
  color: #21183a;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.five-star-band p {
  margin: 0;
  color: #62606d;
}

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

.choice-card {
  position: relative;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(34, 20, 63, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8f8fa),
    var(--white);
  box-shadow: 0 16px 42px rgba(33, 38, 50, 0.08);
}

.choice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--sage));
}

.service-card-body h3,
.choice-card h3 {
  margin-top: 0;
}

.choice-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #f0edf5;
  color: var(--purple);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(125, 78, 178, 0.12);
}

.choice-icon::before {
  font-size: 1.25rem;
  line-height: 1;
}

.choice-icon-heart::before {
  content: "♡";
}

.choice-icon-clock::before {
  content: "24";
  font-size: 0.95rem;
  font-weight: 900;
}

.choice-icon-plan::before {
  content: "✓";
}

.choice-icon-shield::before {
  content: "◆";
  font-size: 1rem;
}

.choice-card h3 {
  margin-bottom: 10px;
  color: #21183a;
}

.choice-card p {
  margin: 0;
  color: #666470;
}

.why-choose-us {
  position: relative;
  overflow: hidden;
  margin-top: clamp(58px, 8vw, 96px);
  background: #21183a;
  color: var(--white);
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.92), rgba(34, 20, 63, 0.76)),
    url("assets/careers-team.png") center / cover no-repeat;
  opacity: 0.34;
}

.why-choose-us .section-heading,
.why-choose-grid {
  position: relative;
  z-index: 1;
}

.why-choose-us .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.why-choose-us h2,
.why-choose-us .eyebrow,
.why-choose-us .section-heading p {
  color: var(--white);
}

.why-choose-us .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.why-choose-card {
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.16);
}

.why-choose-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9d65bd);
  color: var(--white);
  font-weight: 900;
}

.why-choose-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.why-choose-card p {
  margin: 0;
  color: var(--muted);
}

.home-faq {
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft));
}

.home-faq .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(125, 78, 178, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(34, 20, 63, 0.06);
}

.faq-item > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item > button strong {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--purple);
  font-size: 1.25rem;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.75;
}

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

.faq-item.is-open .faq-answer > p {
  padding: 0 22px 22px;
}

.faq-cta {
  max-width: 980px;
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(125, 78, 178, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 250, 0.96)),
    var(--white);
  text-align: center;
  box-shadow: 0 18px 46px rgba(34, 20, 63, 0.08);
}

.faq-cta h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.faq-cta p {
  max-width: 680px;
  margin: 12px auto 20px;
  color: var(--muted);
}

.what-comments-section {
  margin-top: clamp(48px, 7vw, 82px);
  padding: clamp(36px, 6vw, 62px);
  border: 1px solid rgba(125, 78, 178, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(217, 197, 242, 0.45), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbff 58%, var(--lavender-soft));
  box-shadow: 0 22px 60px rgba(34, 20, 63, 0.08);
}

.what-comments-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.what-comment-card {
  border: 1px solid rgba(125, 78, 178, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(34, 20, 63, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.what-comment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(34, 20, 63, 0.14);
}

.what-comment-copy {
  padding: clamp(22px, 4vw, 32px);
}

.what-comment-copy .stars {
  margin-bottom: 14px;
  color: #d79a21;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.what-comment-copy h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1.18rem;
}

.what-comment-copy span {
  color: var(--purple);
  font-weight: 800;
}

.home-testimonials {
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 197, 242, 0.55), transparent 30%),
    linear-gradient(180deg, var(--blue-soft), #ffffff);
}

.home-testimonial-slider {
  position: relative;
  max-width: 980px;
  margin: 34px auto 0;
  padding: 0 clamp(48px, 6vw, 72px);
}

.home-testimonial-card {
  position: relative;
  min-height: 310px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(229, 220, 237, 0.92);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: slideFade 360ms ease;
}

.quote-mark {
  display: block;
  height: 32px;
  color: rgba(125, 78, 178, 0.2);
  font-family: Georgia, serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.5;
}

.home-testimonial-card p {
  max-width: 720px;
  margin: 18px auto 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.home-testimonial-card strong,
.home-testimonial-card span {
  display: block;
}

.home-testimonial-card strong {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.home-testimonial-card span {
  color: var(--purple);
  font-weight: 900;
}

.home-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(125, 78, 178, 0.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(34, 20, 63, 0.12);
  transform: translateY(-50%);
}

.home-slider-arrow.prev {
  left: 0;
}

.home-slider-arrow.next {
  right: 0;
}

.home-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.home-testimonial-dots button {
  background: rgba(125, 78, 178, 0.28);
}

.home-cta-banner {
  margin: 0 clamp(18px, 5vw, 76px) clamp(72px, 10vw, 120px);
  padding: clamp(42px, 7vw, 72px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 31, 86, 0.96), rgba(125, 78, 178, 0.92), rgba(118, 151, 203, 0.9)),
    var(--purple);
  color: var(--white);
  text-align: center;
  box-shadow: 0 26px 70px rgba(34, 20, 63, 0.2);
}

.home-cta-banner h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
}

.home-cta-banner p {
  max-width: 620px;
  margin: 16px auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.button.cta-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 16px 34px rgba(34, 20, 63, 0.16);
}

.what-hero {
  position: relative;
  display: flex;
  min-height: clamp(420px, 58vh, 660px);
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 10vw, 126px) clamp(18px, 6vw, 92px);
  color: var(--white);
}

.what-hero img,
.what-hero-overlay {
  position: absolute;
  inset: 0;
}

.what-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-hero-overlay {
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.84), rgba(34, 20, 63, 0.52) 52%, rgba(118, 151, 203, 0.12)),
    linear-gradient(180deg, rgba(34, 20, 63, 0.08), rgba(34, 20, 63, 0.42));
}

.what-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.what-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.what-hero-copy .eyebrow,
.what-hero-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.what-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.content-section,
.split-section,
.about-section,
.form-section,
.careers-section {
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card,
.values-grid article,
.contact-form,
.application-form,
.career-info,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(34, 20, 63, 0.06);
}

.service-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
}

.service-photo,
.service-detail-photo {
  background-repeat: no-repeat;
  background-size: cover;
}

.service-photo {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card span,
.service-detail-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-soft), var(--blue-soft));
  color: var(--purple);
  font-weight: 900;
}

.service-card p,
.service-detail-card p,
.values-grid p,
.promise-band p,
.contact-card span,
.contact-card a,
.career-info li,
.file-label span {
  color: var(--muted);
}

.contact-card a {
  width: fit-content;
  font-weight: 900;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--purple);
  text-decoration: underline;
}

.learn-link,
.text-button {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--purple);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.learn-link {
  padding-top: 16px;
}

.service-detail-list {
  margin-top: clamp(56px, 8vw, 92px);
}

.service-detail-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.service-detail-heading h2 {
  margin: 0;
}

.service-detail-heading p:not(.eyebrow) {
  color: var(--muted);
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, rgba(232, 239, 246, 0.58));
  box-shadow: 0 16px 42px rgba(34, 20, 63, 0.07);
}

.service-detail-photo {
  min-height: 290px;
}

.service-detail-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.service-detail-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.service-detail-card .text-button {
  margin-top: 18px;
}

.service-article-page {
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft) 55%, #ffffff);
}

.service-article-hero {
  position: relative;
  min-height: clamp(440px, 62vw, 680px);
  overflow: hidden;
  display: grid;
  align-items: end;
}

.service-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-article-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 20, 63, 0.78), rgba(34, 20, 63, 0.38), rgba(34, 20, 63, 0.08));
}

.service-article-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.service-article-hero-copy h1 {
  margin: 0;
  color: var(--white);
}

.service-article-hero-copy .eyebrow {
  color: var(--white);
}

.service-article-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
}

.service-article-body {
  width: min(940px, calc(100% - 36px));
  margin: clamp(-54px, -4vw, -28px) auto clamp(70px, 10vw, 120px);
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(34, 20, 63, 0.12);
}

.service-article-body .text-button {
  margin: 0 0 24px;
}

.service-article-body h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.service-article-body h3 {
  margin: 28px 0 14px;
  color: var(--navy);
  font-size: clamp(1.32rem, 2.4vw, 1.75rem);
}

.service-article-body p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.pediatric-article-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.pediatric-article-list li {
  position: relative;
  padding: 12px 14px 12px 44px;
  border: 1px solid rgba(229, 220, 237, 0.9);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(246, 241, 252, 0.82), #ffffff);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
}

.pediatric-article-list li::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.pediatric-page {
  background:
    radial-gradient(circle at 10% 18%, rgba(217, 197, 242, 0.42), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 42%, #ffffff 100%);
}

.pediatric-hero {
  min-height: clamp(520px, 68vw, 760px);
}

.pediatric-hero .service-article-overlay {
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.84), rgba(79, 46, 120, 0.48), rgba(118, 151, 203, 0.12)),
    linear-gradient(0deg, rgba(34, 20, 63, 0.48), transparent 44%);
}

.pediatric-hero-actions {
  margin-top: 28px;
}

.pediatric-article-card {
  width: min(1080px, calc(100% - 36px));
}

.pediatric-article-card .eyebrow {
  color: var(--purple);
}

.pediatric-services-section {
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 252, 0.92)),
    var(--white);
}

.pediatric-services-section > p:not(.eyebrow) {
  max-width: 780px;
  margin: 14px auto 0;
  color: var(--muted);
}

.pediatric-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  text-align: left;
}

.pediatric-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(229, 220, 237, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(34, 20, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pediatric-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 78, 178, 0.32);
  box-shadow: 0 24px 58px rgba(34, 20, 63, 0.12);
}

.pediatric-service-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9f68c8);
  color: var(--white);
  font-weight: 900;
}

.pediatric-service-card p {
  margin: 3px 0 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.5;
}

.pediatric-service-card .text-button {
  grid-column: 2;
  margin-top: 2px;
  font-size: 0.94rem;
}

.pediatric-approach-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: linear-gradient(135deg, var(--sage-soft), #ffffff 54%, var(--blue-soft));
}

.pediatric-approach-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(34, 20, 63, 0.16);
}

.pediatric-approach-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pediatric-approach-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.pediatric-testimonials {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft));
}

.pediatric-testimonial-slider {
  margin-top: 28px;
}

.pediatric-testimonial-card {
  border-color: rgba(125, 78, 178, 0.18);
}

.pediatric-cta-banner {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(54px, 8vw, 94px) auto clamp(72px, 10vw, 120px);
  padding: clamp(34px, 6vw, 62px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 20, 63, 0.94), rgba(125, 78, 178, 0.84)),
    var(--purple);
  color: var(--white);
  text-align: center;
  box-shadow: 0 28px 72px rgba(34, 20, 63, 0.22);
}

.pediatric-cta-banner .eyebrow,
.pediatric-cta-banner h2 {
  color: var(--white);
}

.pediatric-cta-banner h2 {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  background: linear-gradient(135deg, var(--sage-soft), #ffffff 58%, var(--blue-soft));
}

.help-list {
  display: grid;
  gap: 12px;
}

.who-help-intro {
  min-width: 0;
}

.who-help-collage {
  position: relative;
  margin: clamp(34px, 6vw, 64px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(125, 78, 178, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(34, 20, 63, 0.1);
}

.who-help-collage::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
}

.who-help-collage img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.help-list div {
  padding: 20px;
  border: 1px solid rgba(125, 159, 131, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.help-list strong,
.help-list span {
  display: block;
}

.help-list strong {
  color: var(--navy);
  font-weight: 900;
}

.help-list span {
  margin-top: 4px;
  color: var(--muted);
}

.who-help-testimonials {
  margin-top: 0;
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft));
}

.who-help-testimonials > p:not(.eyebrow) {
  color: var(--muted);
}

.who-help-testimonials .slider-arrow {
  border-color: rgba(125, 78, 178, 0.2);
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 14px 30px rgba(34, 20, 63, 0.12);
}

.who-help-testimonials .slider-arrow:hover {
  background: var(--purple);
  color: var(--white);
}

.who-help-testimonials .slider-dots button {
  background: rgba(125, 78, 178, 0.24);
}

.about-section,
.about-main {
  background: var(--navy);
}

.about-main {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 5vw, 76px);
}

.about-hero {
  position: relative;
  min-height: clamp(420px, 65vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.5), rgba(34, 20, 63, 0.14)),
    linear-gradient(0deg, rgba(34, 20, 63, 0.26), rgba(34, 20, 63, 0.06));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: clamp(58px, 10vw, 106px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.about-hero-copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.98;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.about-main h2,
.about-main h3 {
  color: var(--white);
}

.about-intro {
  max-width: 880px;
  margin-bottom: 34px;
}

.about-intro > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.story-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #9d65bd);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(125, 78, 178, 0.26);
}

.our-story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.78fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin: 36px 0 clamp(42px, 6vw, 74px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(217, 197, 242, 0.08));
}

.our-story-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.our-story-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.our-story-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.story-page {
  background: linear-gradient(180deg, #fbf8ff 0%, #ffffff 42%, #f5fbf7 100%);
}

.story-hero {
  position: relative;
  min-height: clamp(430px, 62vh, 660px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.84), rgba(91, 44, 128, 0.58), rgba(125, 78, 178, 0.2)),
    linear-gradient(0deg, rgba(34, 20, 63, 0.18), rgba(34, 20, 63, 0.04));
}

.story-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(58px, 10vw, 110px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.story-hero-copy h1 {
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.95;
}

.story-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

.story-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(70px, 9vw, 118px);
}

.founder-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  margin-bottom: clamp(46px, 7vw, 84px);
  padding: clamp(26px, 5vw, 50px);
  border: 1px solid rgba(125, 78, 178, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(34, 20, 63, 0.11);
}

.founder-copy h2,
.story-article h2,
.story-trust-section h2,
.story-cta h2 {
  color: var(--navy);
}

.founder-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(125, 78, 178, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(34, 20, 63, 0.12);
}

.founder-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1170 / 1017;
  object-fit: cover;
}

.founder-card figcaption {
  display: grid;
  gap: 6px;
  padding: 22px;
  text-align: center;
}

.founder-card strong {
  color: var(--navy);
  font-size: 1.35rem;
}

.founder-card span {
  color: var(--purple);
  font-weight: 900;
}

.founder-card small {
  color: var(--muted);
  font-weight: 800;
}

.story-article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 68px rgba(34, 20, 63, 0.1);
}

.story-article p:not(.eyebrow) {
  color: #4e4662;
  font-size: clamp(1.04rem, 1.5vw, 1.15rem);
  line-height: 1.9;
}

.story-closing {
  margin: clamp(30px, 5vw, 48px) 0 0;
  padding: clamp(24px, 4vw, 38px);
  border-left: 6px solid var(--purple);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(217, 197, 242, 0.46), rgba(224, 242, 238, 0.58));
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.story-trust-section {
  margin-top: clamp(52px, 8vw, 90px);
  text-align: center;
}

.story-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
  text-align: left;
}

.story-trust-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(125, 78, 178, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(34, 20, 63, 0.08);
}

.story-trust-icon {
  display: inline-grid;
  min-width: 58px;
  min-height: 58px;
  place-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(125, 78, 178, 0.16), rgba(224, 242, 238, 0.94));
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 1000;
}

.story-trust-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

.story-trust-card p {
  color: var(--muted);
}

.story-cta {
  margin-top: clamp(52px, 8vw, 92px);
  padding: clamp(34px, 6vw, 66px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 20, 63, 0.94), rgba(125, 78, 178, 0.88)),
    linear-gradient(135deg, var(--navy), var(--purple));
  color: var(--white);
  text-align: center;
  box-shadow: 0 26px 74px rgba(34, 20, 63, 0.2);
}

.story-cta h2 {
  color: var(--white);
}

.story-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.story-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.story-cta .secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin: 36px 0 clamp(42px, 6vw, 72px);
}

.about-feature-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-feature-card div {
  min-height: 240px;
  padding: 26px;
}

.about-feature-card h3 {
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

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

.promise-band p {
  color: rgba(255, 255, 255, 0.74);
}

.about-main .join-top-link,
.about-main .eyebrow {
  color: #dac5ff;
}

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

.values-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.promise-band {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(125, 78, 178, 0.28), rgba(141, 174, 232, 0.16));
}

.promise-band strong {
  color: var(--white);
  font-size: 1.18rem;
}

.team-section,
.testimonial-section {
  margin-top: clamp(58px, 8vw, 96px);
  text-align: center;
}

.team-section {
  margin-right: calc(clamp(18px, 5vw, 76px) * -1);
  margin-left: calc(clamp(18px, 5vw, 76px) * -1);
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 76px);
  background: #f5f3f8;
}

.team-section h2 {
  color: #05010a;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  font-weight: 900;
  letter-spacing: 0;
}

.team-section > p:not(.eyebrow),
.testimonial-section > p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.76);
}

.team-leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  max-width: 1260px;
  margin: clamp(38px, 6vw, 70px) auto 0;
}

.team-leader-card {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(34, 20, 63, 0.12);
}

.testimonial-slider {
  position: relative;
  display: grid;
  align-items: center;
  max-width: 1260px;
  margin: 28px auto 0;
  padding: 0 clamp(48px, 6vw, 72px);
}

.team-slide,
.testimonial-card {
  animation: slideFade 320ms ease;
}

.team-photo-frame {
  width: 100%;
  aspect-ratio: 1170 / 1017;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--lavender-soft);
}

.team-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-leader-card figcaption {
  display: grid;
  gap: 10px;
  padding-top: clamp(24px, 4vw, 38px);
}

.team-leader-card figcaption strong {
  color: #05010a;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0;
}

.team-leader-card figcaption span {
  color: var(--blue);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.slider-arrow:hover {
  background: var(--white);
  color: var(--purple);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.slider-dots button.is-active {
  background: var(--lavender);
  box-shadow: 0 0 0 4px rgba(217, 197, 242, 0.18);
}

.testimonial-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--navy);
  font-weight: 900;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--purple);
  font-weight: 800;
}

.stars {
  color: #d9a441;
  font-size: 1.35rem;
  letter-spacing: 3px;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft));
}

.contact-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender-soft) 52%, var(--blue-soft) 100%);
}

.payment-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--lavender-soft) 52%, var(--sage-soft) 100%);
}

.payment-hero {
  position: relative;
  min-height: clamp(340px, 48vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(60px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.payment-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.26), transparent 27%),
    linear-gradient(90deg, rgba(34, 20, 63, 0.92), rgba(88, 49, 145, 0.76), rgba(118, 151, 203, 0.5)),
    url("assets/header-logo.png") right clamp(18px, 8vw, 120px) center / min(520px, 46vw) auto no-repeat,
    linear-gradient(135deg, var(--navy), var(--purple));
}

.payment-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.payment-hero-copy h1,
.payment-hero-copy .eyebrow,
.payment-hero-copy p:not(.eyebrow) {
  color: var(--white);
}

.payment-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.payment-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.62fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(66px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.payment-method-panel,
.invoice-summary-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(34, 20, 63, 0.08);
}

.payment-method-panel {
  padding: clamp(24px, 4vw, 36px);
}

.payment-method-panel > h2,
.invoice-summary-panel > h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.payment-method-panel > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.invoice-summary-panel {
  position: sticky;
  top: 136px;
  padding: clamp(24px, 3.2vw, 34px);
}

.payment-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
}

.payment-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.payment-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(125, 78, 178, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(34, 20, 63, 0.06);
}

.payment-trust-row span::before {
  content: "✓";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
}

.payment-method-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.payment-accordion-item {
  overflow: hidden;
  border: 1px solid #dcd8e6;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(34, 20, 63, 0.05);
}

.payment-accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 22px 24px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.payment-accordion-trigger:hover,
.payment-accordion-trigger:focus-visible,
.payment-accordion-item.is-open .payment-accordion-trigger {
  background: linear-gradient(135deg, rgba(245, 238, 250, 0.95), rgba(240, 247, 252, 0.95));
}

.payment-method-title {
  display: grid;
  gap: 6px;
}

.payment-method-title strong {
  font-size: 1.1rem;
}

.payment-method-title small {
  color: var(--purple);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.payment-chevron {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 160ms ease;
}

.payment-accordion-item.is-open .payment-chevron {
  transform: rotate(180deg);
}

.payment-accordion-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(220, 216, 230, 0.8);
}

.payment-accordion-item.is-open .payment-accordion-body {
  display: grid;
  gap: 18px;
}

.method-helper {
  margin: 22px 0 0;
  color: var(--muted);
}

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

.secure-field-grid .field:first-child {
  grid-column: 1 / -1;
}

.secure-payment-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(125, 78, 178, 0.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(250, 247, 255, 0.96), rgba(238, 246, 248, 0.92));
}

.secure-payment-preview strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.secure-payment-preview ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 800;
}

.secure-payment-preview p {
  margin: 0;
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 900;
}

.method-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.sensitive-note {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.summary-list {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.payment-support-actions {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.payment-support-actions .button {
  width: 100%;
  justify-content: center;
}

.summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}

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

.summary-row strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-row.total {
  padding-top: 24px;
  border-bottom: 0;
  font-size: 1.24rem;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.invoice-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.invoice-process article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(34, 20, 63, 0.06);
}

.invoice-process span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: var(--white);
  font-weight: 900;
}

.invoice-process h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.invoice-process p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.payment-action-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(125, 78, 178, 0.22);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(250, 247, 255, 0.96), rgba(238, 246, 248, 0.9));
}

.payment-action-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.payment-option-card,
.payment-security-note,
.payment-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(34, 20, 63, 0.08);
}

.payment-option-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
}

.payment-option-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-soft), var(--blue-soft));
  color: var(--purple);
  font-weight: 900;
}

.payment-option-card strong {
  display: block;
  margin: 12px 0;
  color: var(--purple);
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.payment-option-card p,
.payment-security-note p {
  margin: 0;
  color: var(--muted);
}

.payment-method-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid rgba(125, 78, 178, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #9d65bd);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(125, 78, 178, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.payment-method-link:hover,
.payment-method-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(125, 78, 178, 0.28);
}

.payment-button-anchor {
  display: inline-flex;
  text-decoration: none;
}

.payment-config-notice {
  margin: 4px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(125, 78, 178, 0.24);
  border-radius: 16px;
  background: var(--lavender-soft);
  color: var(--navy);
  font-weight: 850;
}

.select-payment-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(34, 20, 63, 0.18);
}

.select-payment-main {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
}

.select-payment-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.add-card-panel {
  position: sticky;
  top: 136px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 238, 250, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 20px 58px rgba(34, 20, 63, 0.1);
}

.add-card-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.add-card-panel > p:not(.eyebrow) {
  color: var(--muted);
}

.add-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 22px;
  padding: 14px 18px;
  border: 1px solid rgba(125, 78, 178, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(34, 20, 63, 0.08);
}

.payment-security-note {
  margin-top: 22px;
  padding: 24px;
  background: linear-gradient(135deg, var(--sage-soft), #ffffff);
}

.payment-security-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.08rem;
}

.payment-form {
  position: sticky;
  top: 136px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 238, 250, 0.72), rgba(255, 255, 255, 0) 170px),
    var(--white);
}

.invoice-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -28px -28px 24px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  color: var(--white);
}

.invoice-form-header span,
.invoice-form-header strong {
  color: var(--white);
}

.invoice-form-header span {
  font-weight: 900;
}

.invoice-form-header strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.invoice-form-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.payment-form h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.invoice-summary-panel .payment-form {
  position: static;
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.invoice-summary-panel .payment-form h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.payment-success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--sage-soft);
  color: #35583b;
  font-weight: 900;
}

.contact-hero {
  position: relative;
  min-height: clamp(360px, 58vh, 600px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.8), rgba(34, 20, 63, 0.42), rgba(34, 20, 63, 0.18)),
    linear-gradient(0deg, rgba(34, 20, 63, 0.24), rgba(34, 20, 63, 0.04));
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(58px, 10vw, 106px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.contact-hero-copy .eyebrow {
  color: #e9d8ff;
}

.contact-hero-copy h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.8fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.contact-intro {
  max-width: 620px;
}

.contact-intro h2,
.suggestion-box h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.contact-intro > p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 6px;
  max-width: 440px;
  padding: 24px;
}

.contact-card strong {
  color: var(--navy);
}

.follow-us {
  margin-top: 26px;
}

.follow-us h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.follow-icons {
  display: flex;
  gap: 10px;
}

.follow-icons a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(125, 78, 178, 0.22);
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 10px 28px rgba(34, 20, 63, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.follow-icons a:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.follow-icons svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-form,
.application-form,
.payment-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d7cbe2;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fffefe;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(125, 78, 178, 0.18);
  border-color: var(--purple);
}

.checkbox-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--lavender-soft);
}

.checkbox-group legend {
  padding: 0 8px;
  color: var(--navy);
  font-weight: 900;
}

.checkbox-label.compact {
  font-size: 0.96rem;
}

.suggestion-box {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 5vw, 76px);
  background: var(--white);
  text-align: center;
}

.suggestion-box h2 {
  margin-bottom: 18px;
}

.suggestion-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.locations-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 48%, var(--sage-soft) 100%);
}

.locations-hero {
  position: relative;
  min-height: clamp(380px, 60vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.locations-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locations-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.5), rgba(34, 20, 63, 0.16)),
    linear-gradient(0deg, rgba(34, 20, 63, 0.28), rgba(34, 20, 63, 0.06));
}

.locations-hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(58px, 10vw, 106px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.locations-hero-copy .eyebrow {
  color: #e9d8ff;
}

.locations-hero-copy h1,
.locations-hero-copy h2 {
  color: var(--white);
}

.locations-hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.locations-hero-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
}

.locations-intro {
  max-width: 900px;
  padding: clamp(56px, 7vw, 84px) clamp(18px, 5vw, 76px) 0;
}

.locations-intro h2,
.locations-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.locations-intro > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.locations-main {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 76px) clamp(72px, 9vw, 112px);
}

.service-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(125, 78, 178, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--lavender-soft));
  box-shadow: var(--shadow);
}

.locations-map-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.locations-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(34, 20, 63, 0.06);
}

.locations-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.served-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.served-city-list span {
  padding: 7px 10px;
  border: 1px solid rgba(125, 78, 178, 0.18);
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.zip-checker {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.zip-message {
  margin: 2px 0 0;
  padding: 14px;
  border: 1px solid rgba(125, 159, 131, 0.32);
  border-radius: 8px;
  background: var(--sage-soft);
  color: var(--navy);
  font-weight: 800;
}

.zip-message.served {
  border-color: rgba(74, 130, 84, 0.38);
  background: #eef8f0;
  color: #285235;
}

.zip-message.review {
  border-color: rgba(125, 78, 178, 0.28);
  background: var(--lavender-soft);
  color: var(--navy);
}

.careers-section {
  background: linear-gradient(135deg, var(--blue-soft), #ffffff 42%, var(--sage-soft));
}

.careers-page {
  background: var(--white);
}

.careers-hero {
  position: relative;
  min-height: clamp(460px, 72vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.careers-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 20, 63, 0.82) 0%, rgba(34, 20, 63, 0.58) 48%, rgba(34, 20, 63, 0.22) 100%),
    linear-gradient(0deg, rgba(34, 20, 63, 0.26), rgba(34, 20, 63, 0.08));
}

.careers-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(56px, 10vw, 112px) clamp(18px, 5vw, 76px);
  color: var(--white);
}

.careers-hero-copy .eyebrow {
  color: #e9d8ff;
}

.careers-hero-copy h2 {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.92;
}

.careers-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
}

.career-welcome {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, #ffffff, var(--lavender-soft));
}

.video-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 34px;
  border: 1px solid rgba(125, 78, 178, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(rgba(34, 20, 63, 0.3), rgba(34, 20, 63, 0.18)),
    url("assets/hero-care.png") center / cover;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.video-placeholder span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--purple);
  font-weight: 900;
}

.video-placeholder strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.2;
}

.video-placeholder p {
  max-width: 320px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.welcome-copy img {
  width: min(230px, 70vw);
  margin-bottom: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(125, 78, 178, 0.16);
}

.welcome-copy p {
  margin: 18px 0 0;
  color: var(--purple);
  font-size: 1.32rem;
  font-weight: 900;
}

.team-love {
  padding: clamp(70px, 9vw, 108px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--sage-soft), #ffffff 58%, var(--blue-soft));
  text-align: center;
}

.team-love h2 {
  max-width: 850px;
  margin: 0 auto;
}

.team-love p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 900;
}

.career-article {
  max-width: 1120px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 94% 8%, rgba(217, 197, 242, 0.42), transparent 28%),
    linear-gradient(135deg, #ffffff, #fbf8ff 58%, var(--blue-soft));
}

.career-article .eyebrow {
  margin-bottom: 14px;
}

.career-article h2 {
  max-width: 920px;
  margin-bottom: 24px;
  color: var(--navy);
}

.career-article h3 {
  margin: 34px 0 10px;
  color: var(--purple);
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
}

.career-article p {
  max-width: 980px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.86;
}

.career-article-cta {
  margin-top: 28px;
}

.benefits-section {
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: var(--white);
}

.benefits-section h2 {
  max-width: 820px;
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff, var(--lavender-soft));
  box-shadow: 0 10px 30px rgba(34, 20, 63, 0.06);
}

.benefit-card span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.benefit-card h3 {
  font-size: 1.04rem;
}

.apply-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(36px, 6vw, 60px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--purple), #5f2f96 52%, #a77dd1);
  color: var(--white);
}

.apply-banner h2 {
  color: var(--white);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.58);
  background: var(--white);
  color: var(--purple);
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(340px, 1fr);
  gap: 22px;
  align-items: start;
  padding: clamp(70px, 9vw, 112px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--blue-soft), #ffffff 42%, var(--sage-soft));
}

.career-info {
  padding: 28px;
}

.career-info h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.career-info p {
  color: var(--muted);
}

.role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 28px;
}

.role-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--purple);
  font-weight: 900;
}

.career-info ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.file-label input {
  padding: 11px;
}

.file-label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.captcha-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px;
  border: 1px solid #b9a8cd;
  border-radius: 8px;
  background: var(--lavender-soft);
  color: var(--navy);
}

.captcha-check input {
  width: 24px;
  height: 24px;
  accent-color: var(--purple);
}

.captcha-check span {
  display: grid;
  gap: 2px;
}

.captcha-check strong {
  color: var(--navy);
}

.captcha-check small {
  color: var(--muted);
  font-weight: 700;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.checkbox-label input {
  width: auto;
  margin-top: 6px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr) auto;
  align-items: start;
  gap: 34px;
  padding: clamp(34px, 6vw, 62px) clamp(18px, 5vw, 76px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 104px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--white);
}

.footer-brand strong,
.footer-brand span,
.footer-brand a {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  line-height: 1.2;
}

.footer-brand span,
.footer-brand a {
  margin-top: 8px;
}

.footer-brand a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-brand a:hover,
.footer-brand a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-column {
  display: grid;
  gap: 8px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-column button {
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  text-align: left;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1120px) {
  .site-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand {
    width: min(390px, 42vw);
    min-width: 250px;
  }

  .header-career-link {
    width: min(290px, 34vw);
    min-height: 54px;
    font-size: 0.86rem;
    padding-inline: 12px;
  }

  .site-nav {
    order: 4;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    gap: 12px;
  }

  .brand {
    width: min(380px, 70vw);
    min-width: 0;
    order: 1;
  }

  .header-career-link {
    order: 3;
    width: 100%;
    max-width: none;
    margin-top: 4px;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 0.94rem;
  }

  .menu-toggle {
    order: 2;
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link {
    flex: 1;
    width: auto;
    justify-content: flex-start;
    border-radius: 8px 0 0 8px;
  }

  .nav-group-plain .nav-link {
    width: 100%;
    border-radius: 8px;
  }

  .nav-group {
    width: 100%;
    flex-wrap: wrap;
  }

  .dropdown-toggle {
    min-width: 48px;
    border-radius: 0 8px 8px 0;
  }

  .dropdown {
    position: static;
    width: 100%;
    margin: 0 0 10px;
    box-shadow: none;
  }

  .hero,
  .home-community,
  .split-section,
  .pediatric-approach-section,
  .form-section,
  .contact-main,
  .payment-main,
  .locations-main,
  .career-layout,
  .career-welcome,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-community-collage {
    min-height: auto;
  }

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

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

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

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

  .invoice-process {
    grid-template-columns: 1fr;
  }

  .payment-form,
  .invoice-summary-panel,
  .add-card-panel {
    position: static;
  }

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

  .pediatric-approach-copy {
    order: -1;
  }

  .select-payment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .what-comments-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail-photo {
    min-height: 260px;
  }

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

  .our-story-section {
    grid-template-columns: 1fr;
  }

  .founder-feature {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 620px) {
  .brand {
    width: min(340px, 68vw);
  }

  .brand img {
    max-height: 90px;
  }

  .header-career-link {
    min-height: 44px;
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .header-career-link::after {
    display: none;
  }

  h1 {
    font-size: 2.52rem;
  }

  .hero-actions,
  .apply-banner,
  .service-article-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .home-hero {
    min-height: 620px;
    padding-top: 74px;
    padding-bottom: 84px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.52));
  }

  .home-slide-dots {
    right: 50%;
    transform: translateX(50%);
  }

  .home-community-copy h2 {
    font-size: 2.55rem;
  }

  .home-community-logo {
    width: 78px;
    height: 78px;
  }

  .choice-grid,
  .home-service-grid,
  .why-choose-grid,
    .service-grid,
  .what-comments-grid,
  .pediatric-service-grid,
  .values-grid,
  .payment-options,
  .select-payment-options,
  .invoice-process,
  .benefits-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .five-star-band {
    text-align: left;
  }

  .payment-hero-bg {
    background:
      linear-gradient(180deg, rgba(34, 20, 63, 0.88), rgba(125, 78, 178, 0.66)),
      linear-gradient(135deg, var(--navy), var(--purple));
  }

  .secure-field-grid {
    grid-template-columns: 1fr;
  }

  .secure-field-grid .field:first-child {
    grid-column: auto;
  }

  .payment-accordion-trigger {
    align-items: flex-start;
    padding: 18px;
  }

  .payment-accordion-body {
    padding: 0 18px 20px;
  }

  .summary-row {
    display: grid;
    gap: 4px;
  }

  .summary-row strong {
    text-align: left;
  }

  .service-card-body {
    padding: 22px;
  }

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

  .pediatric-service-card .text-button {
    grid-column: auto;
  }

  .service-detail-photo {
    min-height: 220px;
  }

  .testimonial-slider {
    padding: 0 38px;
  }

  .team-leaders-grid {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .about-hero {
    min-height: 520px;
  }

  .about-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.84), rgba(34, 20, 63, 0.46));
  }

  .story-hero {
    min-height: 520px;
  }

  .story-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.86), rgba(125, 78, 178, 0.48));
  }

  .story-main {
    width: min(100% - 28px, 1180px);
  }

  .founder-feature,
  .story-article,
  .story-cta {
    padding: 24px;
  }

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

  .story-trust-card {
    min-height: auto;
  }

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

  .about-feature-card div {
    min-height: auto;
    padding: 22px;
  }

  .our-story-section {
    padding: 22px;
  }

  .contact-form,
  .application-form,
  .career-info,
  .checkbox-group {
    padding: 22px;
  }

  .contact-hero {
    min-height: 500px;
  }

  .contact-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.46));
  }

  .locations-hero {
    min-height: 500px;
  }

  .locations-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.84), rgba(34, 20, 63, 0.46));
  }

  .locations-main {
    padding-top: 34px;
  }

  .locations-copy {
    padding: 22px;
  }

  .careers-hero {
    min-height: 540px;
  }

  .careers-hero-overlay {
    background: linear-gradient(180deg, rgba(34, 20, 63, 0.82), rgba(34, 20, 63, 0.48));
  }
}
