@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&display=swap");

:root {
  --navy: #14253b;
  --purple: #83497f;
  --purple-deep: #61365f;
  --blue: #14253b;
  --cream: #fff;
  --lavender-surface: #f7f2ff;
  --sky-surface: #f4fbff;
  --ink: #1c293d;
  --muted: #687385;
  --brand: linear-gradient(135deg, var(--purple), var(--blue));
  --shadow-sm: 0 14px 35px -24px rgba(20, 37, 59, 0.38);
  --shadow-md: 0 28px 65px -36px rgba(20, 37, 59, 0.48);
  --shadow-lg: 0 38px 90px -42px rgba(20, 37, 59, 0.62);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 1.7;
  background:
    linear-gradient(180deg, #fff 0%, var(--lavender-surface) 42%, var(--sky-surface) 100%);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
}
a {
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
h1,
h2,
h3,
h4,
h5,
h6,
a:not(.btn):not(.btn-brand):not(.btn-soft):not(.btn-hero-outline):not(.navbar-brand):not(.footer-contact) {
  color: var(--blue);
}
:focus-visible {
  outline: 3px solid rgba(49, 95, 133, 0.42);
  outline-offset: 3px;
}

.font-display {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.text-brand {
  color: var(--blue);
}
.text-muted-custom {
  color: var(--muted);
}
.rounded-4 {
  border-radius: 1.4rem;
}
.rounded-5 {
  border-radius: 2rem;
}
.glass {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(131, 73, 127, 0.2);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px) saturate(130%);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(131, 73, 127, 0.22);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px) saturate(140%);
}

.design-section,
.section-space {
  padding-top: clamp(5rem, 9vw, 8rem);
}
.form-lift {
  padding-top: clamp(2.5rem, 4.5vw, 4rem);
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--purple);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-kicker::before {
  width: 1.9rem;
  height: 1px;
  content: "";
  background: var(--purple);
}
.section-kicker-light {
  color: #e9d0e6;
}
.section-title {
  max-width: 780px;
  font-size: clamp(2.2rem, 4.7vw, 3.65rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.045em;
}
.section-lead {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.section-heading > p {
  max-width: 470px;
  margin-bottom: 0.4rem;
  color: var(--muted);
}
.content-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}
.content-heading > p {
  max-width: 540px;
  margin-bottom: 0.35rem;
  color: var(--muted);
}
.content-card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border: 1px solid rgba(131, 73, 127, 0.2);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px) saturate(145%);
}
.content-card > i {
  color: var(--purple);
  font-size: 1.3rem;
}
.content-card h2 {
  margin: 0.85rem 0 0.55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.25;
}
.content-card h3 {
  margin: 0.85rem 0 0.55rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.content-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}
.content-list {
  display: grid;
  gap: 0.48rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
  list-style: none;
}
.content-list li {
  position: relative;
  padding-left: 1rem;
}
.content-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--purple), var(--blue));
}
.content-list-columns {
  grid-template-columns: 1fr 1fr;
}
.content-list a {
  color: inherit;
  text-decoration: none;
}
.content-list a:hover {
  color: var(--purple-deep);
}
.about-service-card {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.about-service-card:hover {
  border-color: rgba(131, 73, 127, 0.22);
  color: var(--ink);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.about-service-card p {
  flex: 1;
}
.about-service-card span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--purple-deep);
  font-size: 0.68rem;
  font-weight: 600;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.45rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 18px 30px -16px rgba(67, 54, 121, 0.72);
}
.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 34px -16px rgba(67, 54, 121, 0.8);
}
.navbar-cta {
  position: relative;
  animation: assessmentGlow 2.2s ease-in-out infinite;
}
@keyframes assessmentGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(131, 73, 127, 0),
      0 16px 28px -16px rgba(67, 54, 121, 0.65);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(131, 73, 127, 0.14),
      0 0 24px rgba(73, 112, 163, 0.42);
  }
}
.btn-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--purple-deep);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 500;
}
.btn-soft:hover {
  color: var(--blue);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-deep);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
}
.text-link:hover {
  gap: 0.7rem;
  color: var(--blue);
}

/* Header */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  width: 100%;
  padding: 0.8rem;
  transition: padding 0.3s ease;
}
#site-header .navbar {
  width: min(1320px, calc(100% - 1rem));
  min-height: 66px;
  margin: 0 auto;
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(250, 246, 255, 0.94) 52%,
    rgba(244, 251, 255, 0.94)
  );
  box-shadow:
    0 18px 48px -26px rgba(20, 37, 59, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  transition:
    min-height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
#site-header.scrolled {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}
#site-header.scrolled .navbar {
  min-height: 58px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98),
    rgba(250, 246, 255, 0.96) 52%,
    rgba(244, 251, 255, 0.96)
  );
  box-shadow: 0 16px 40px -22px rgba(20, 37, 59, 0.7);
}
.navbar-brand {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.25s ease;
}
.navbar-brand:hover {
  transform: translateY(-1px);
}
.navbar-brand img {
  width: 156px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.navbar-nav .nav-link {
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  color: #4b5668;
  font-size: 0.84rem;
  font-weight: 600;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(131, 73, 127, 0.08);
  color: var(--purple-deep);
}
#site-header .btn-brand {
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
}
#site-header .navbar-toggler {
  color: var(--navy);
  border-radius: 0.7rem;
}
.care-dropdown {
  min-width: 320px;
  margin-top: 0.75rem;
  padding: 0.65rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
}
.care-dropdown .dropdown-item {
  padding: 0.78rem 0.9rem;
  border-radius: 0.75rem;
  color: var(--ink);
  font-size: 0.8rem;
  white-space: normal;
}
.care-dropdown .dropdown-item:hover,
.care-dropdown .dropdown-item:focus {
  background: rgba(131, 73, 127, 0.07);
  color: var(--purple-deep);
}
.care-dropdown .dropdown-divider {
  border-color: rgba(20, 37, 59, 0.08);
}

main {
  overflow: hidden;
}
main > section:first-child {
  position: relative;
}

/* Homepage hero */
.home-hero {
  position: relative;
  display: flex;
  width: 100vw;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
}
.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item {
  width: 100%;
  min-height: 100svh;
}
.home-hero-carousel .carousel-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.home-hero-carousel .carousel-item.active .hero-copy {
  animation: heroCopyIn 0.8s ease both;
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 23, 39, 0.78) 0%,
    rgba(15, 31, 50, 0.56) 47%,
    rgba(20, 37, 59, 0.14) 77%,
    rgba(20, 37, 59, 0.04) 100%
  );
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: 7rem;
  padding-bottom: 5rem;
  color: #fff;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ead5e7;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}
.hero-copy h1,
.hero-copy h2 {
  max-width: 780px;
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.065em;
}
.hero-copy h1 em,
.hero-copy h2 em {
  color: #e8cfe5;
  font-weight: 400;
}
.hero-copy > p {
  max-width: 690px;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.8;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}
.btn-hero-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 2.3rem;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
}
.hero-trust-row i {
  color: #e7c8e3;
  font-size: 0.95rem;
}
.home-hero-indicators {
  right: auto;
  bottom: 1.7rem;
  left: clamp(1.25rem, 5vw, 5rem);
  z-index: 4;
  gap: 0.45rem;
  width: auto;
  margin: 0;
}
.home-hero-indicators [data-bs-target] {
  width: 1.8rem;
  height: 0.2rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.55);
  transition:
    width 0.3s ease,
    background-color 0.3s ease;
}
.home-hero-indicators .active {
  width: 3.2rem;
  background-color: #fff;
}
.home-hero-control {
  top: auto;
  bottom: 1.1rem;
  left: auto;
  z-index: 4;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(10, 23, 39, 0.22);
  color: #fff;
  opacity: 1;
  backdrop-filter: blur(12px);
}
.home-hero-control:hover,
.home-hero-control:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
}
.home-hero-prev {
  right: 5.6rem;
}
.home-hero-next {
  right: 2rem;
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.trust-ribbon {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid rgba(20, 37, 59, 0.08);
}
.trust-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(1.15rem, 2vw, 1.75rem) clamp(1.25rem, 4vw, 3rem);
}
.trust-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 104px;
  padding: 0.7rem clamp(1rem, 2vw, 2rem);
  border-left: 1px solid rgba(20, 37, 59, 0.1);
  text-align: center;
}
.trust-stat:first-child {
  border-left: 0;
}
.stat-index {
  position: absolute;
  top: 0.25rem;
  right: clamp(1rem, 2vw, 2rem);
  color: rgba(20, 37, 59, 0.32);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.trust-stat strong {
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}
.stat-count {
  display: inline-block;
  min-width: 3.4ch;
  background: linear-gradient(120deg, var(--purple-deep), var(--blue));
  background-clip: text;
  color: transparent;
  font-size: inherit;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  max-width: 220px;
  margin: 0.45rem auto 0;
  color: var(--muted);
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

.editorial-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow-lg);
}
.editorial-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 380px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.editorial-note > i {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(131, 73, 127, 0.1);
  color: var(--purple);
  font-size: 1.25rem;
}
.editorial-note strong,
.editorial-note small {
  display: block;
}
.editorial-note strong {
  font-size: 0.8rem;
  font-weight: 500;
}
.editorial-note small {
  color: var(--muted);
  font-size: 0.65rem;
}
.value-quote {
  margin: 1.75rem 0;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--purple);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 400;
}

.care-discovery {
  margin-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background:
    linear-gradient(180deg, #fff 0%, #f8f4ff 48%, #f3fbff 100%);
}
.home-care-choices {
  background:
    linear-gradient(180deg, #fff 0%, #f7f2ff 50%, #f4fbff 100%);
}
.home-care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.home-care-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: clamp(1.3rem, 2vw, 1.75rem);
  border: 1px solid rgba(49, 95, 133, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 255, 0.92)),
    linear-gradient(135deg, rgba(131, 73, 127, 0.08), rgba(49, 95, 133, 0.08));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 24px 54px -38px rgba(20, 37, 59, 0.38);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.home-care-card:hover {
  color: var(--ink);
  border-color: rgba(49, 95, 133, 0.28);
  box-shadow: 0 32px 72px -40px rgba(20, 37, 59, 0.58);
  transform: translateY(-5px);
}
.home-care-icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.1rem;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(131, 73, 127, 0.12), rgba(49, 95, 133, 0.12));
  color: var(--blue);
  font-size: 1.25rem;
}
.home-care-card h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}
.home-care-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}
.home-care-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-care-card:hover .home-care-link {
  gap: 0.65rem;
}

.why-section {
  margin-top: 0;
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background:
    linear-gradient(180deg, #fff 0%, #f8f4ff 48%, #f3fbff 100%);
  color: var(--ink);
}
.why-section .col-lg-5 > p {
  color: var(--muted);
}
.why-section .section-kicker-light {
  color: var(--purple-deep);
}
.why-section .section-title {
  color: var(--navy);
}
.why-section .btn-outline-light {
  border-color: var(--purple-deep);
  color: var(--purple-deep);
  font-weight: 500;
}
.why-section .btn-outline-light:hover {
  background: var(--purple-deep);
  color: #fff;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.proof-card {
  padding: 1.5rem;
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.proof-card > i {
  color: var(--purple);
  font-size: 1.3rem;
}
.proof-card h3 {
  margin: 1rem 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.journey-line-four {
  grid-template-columns: repeat(4, 1fr);
}
.journey-line::before {
  position: absolute;
  top: 2.2rem;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #d8c6d6, transparent);
}
.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.journey-step > span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}
.journey-icon {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1.2rem;
  place-items: center;
  border: 7px solid var(--cream);
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  box-shadow: var(--shadow-sm);
  font-size: 1.25rem;
}
.journey-step h3 {
  font-size: 0.92rem;
  font-weight: 500;
}
.journey-step p {
  max-width: 240px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
}
.journey-detail-list {
  display: grid;
  gap: 0.45rem;
  max-width: 260px;
  margin: 1rem auto 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.55;
  text-align: left;
  list-style: none;
}
.journey-detail-list li {
  position: relative;
  padding-left: 0.9rem;
}
.journey-detail-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  content: "";
  background: var(--purple);
}

/* Inner page heroes */
.page-banner {
  position: relative;
  width: 100%;
  max-width: none;
  height: 600px;
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
}
.page-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 23, 39, 0.72),
    rgba(20, 37, 59, 0.42) 58%,
    rgba(20, 37, 59, 0.06)
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 600px;
  min-height: 600px;
  padding-top: 6rem;
  padding-bottom: 3rem;
  color: #fff;
}
.banner-content .badge {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-banner h1 {
  width: min(100%, 980px);
  min-height: 2.08em;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.page-banner h1 em {
  color: #fff;
  font-weight: 400;
}
.banner-content .text-muted-custom {
  color: #fff;
}
.banner-content .lead {
  width: min(100%, 720px);
  max-width: 720px;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.page-breadcrumb a {
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  outline-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.page-banner .page-breadcrumb,
.page-banner .page-breadcrumb a,
.page-banner .page-breadcrumb a:visited,
.page-banner .page-breadcrumb a:hover,
.page-banner .page-breadcrumb a:active,
.page-banner .page-breadcrumb a:focus,
.page-banner .page-breadcrumb span {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}
.page-breadcrumb a:hover {
  color: #fff;
}
.breadcrumb-divider {
  color: #fff;
}

/* Shared inner-page components */
.icon-box {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(131, 73, 127, 0.1);
  color: var(--purple);
  font-size: 1.15rem;
}
.card-hover {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.care-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.number {
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  color: rgba(131, 73, 127, 0.16);
  font-size: 3rem;
  font-weight: 500;
}
.clinical-panel {
  overflow: hidden;
  border: 1px solid #fff;
  border-radius: 2rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.clinical-image-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.clinical-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinical-badge {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 390px;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.clinical-badge > i {
  color: var(--purple);
  font-size: 1.6rem;
}
.clinical-badge strong,
.clinical-badge small {
  display: block;
}
.clinical-badge strong {
  font-size: 0.78rem;
  font-weight: 500;
}
.clinical-badge small {
  color: var(--muted);
  font-size: 0.64rem;
}
.standard-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.standard-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.standard-card > i {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(131, 73, 127, 0.1);
  color: var(--purple);
  font-size: 1.2rem;
}
.standard-card h3 {
  margin: 1.2rem 0 0.45rem;
  font-size: 1rem;
  font-weight: 500;
}
.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}
.standard-number {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: rgba(131, 73, 127, 0.18);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.service-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(131, 73, 127, 0.16);
  border-radius: 1.3rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-detail > i {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(131, 73, 127, 0.1);
  color: var(--purple);
  font-size: 1.2rem;
}
.service-detail h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.service-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}
.care-callout {
  padding: clamp(2.2rem, 5vw, 4.5rem);
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 2rem;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.86),
      rgba(248, 244, 255, 0.74) 52%,
      rgba(243, 251, 255, 0.78)
    );
  color: var(--ink);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.care-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.care-callout h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.care-callout p {
  max-width: 760px;
  color: var(--muted);
}
.care-callout .section-kicker {
  color: var(--blue);
}
.process-card {
  height: 100%;
  padding: 1.4rem;
  border: 1px solid rgba(20, 37, 59, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
}
.process-card > span {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.process-card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1rem;
  font-weight: 500;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.7;
}
.accordion-item {
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  padding: 1.1rem 1.25rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--purple-deep);
}
.accordion-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.78rem;
}
.accordion-body ul {
  margin-bottom: 0;
}
.service-tagline {
  margin-bottom: 0.8rem;
  color: var(--purple-deep);
  font-size: 0.82rem;
  font-weight: 500;
}
.service-detail-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-detail-grid > div {
  padding: 1rem;
  border: 1px solid rgba(20, 37, 59, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
}
.service-detail-grid h4 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}
.service-detail-grid ul {
  display: grid;
  gap: 0.4rem;
  padding-left: 1rem;
  font-size: 0.68rem;
  line-height: 1.55;
}
.service-suitability {
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--purple);
  border-radius: 0 0.8rem 0.8rem 0;
  background: rgba(247, 242, 255, 0.96);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}
.form-control,
.form-select {
  padding: 0.82rem 1rem;
  border: 1px solid #e3ded9;
  border-radius: 0.8rem;
  background: #fff;
  font-size: 0.82rem;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(131, 73, 127, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(131, 73, 127, 0.1);
}
.form-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cv-upload {
  padding: 1.15rem;
  border: 1px dashed rgba(131, 73, 127, 0.4);
  border-radius: 1rem;
  background: rgba(131, 73, 127, 0.05);
}
.cv-upload .form-control {
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.88);
}
.cv-upload small {
  display: block;
  font-size: 0.68rem;
}
/* Legal pages */
.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 96px;
}
.legal-nav {
  display: grid;
  padding: 1.35rem;
  border-radius: 1.3rem;
}
.legal-nav .section-kicker {
  margin-bottom: 0.9rem;
}
.legal-nav a {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(20, 37, 59, 0.07);
  color: #536071;
  font-size: 0.69rem;
  text-decoration: none;
}
.legal-nav a:last-child {
  border-bottom: 0;
}
.legal-nav a:hover {
  color: var(--purple-deep);
  transform: translateX(3px);
}
.legal-content {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 2rem;
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}
.legal-meta i {
  color: var(--purple);
  font-size: 1.15rem;
}
.legal-meta span,
.legal-meta strong {
  display: block;
}
.legal-meta span {
  color: var(--muted);
  font-size: 0.57rem;
}
.legal-meta strong {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
}
.legal-content h2 {
  margin: 2.4rem 0 0.9rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  scroll-margin-top: 110px;
}
.legal-content p,
.legal-content li {
  color: #536071;
  font-size: 0.82rem;
  line-height: 1.9;
}
.legal-content a {
  color: var(--purple-deep);
  font-weight: 500;
}
.legal-content ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.25rem;
}
.legal-content li::marker {
  color: var(--purple);
}
.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 1.15rem;
  border: 1px solid rgba(131, 73, 127, 0.1);
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    rgba(131, 73, 127, 0.08),
    rgba(49, 95, 133, 0.05)
  );
}
.legal-notice i {
  color: var(--purple);
  font-size: 1.15rem;
}
.legal-notice p {
  margin: 0;
  font-size: 0.75rem;
}

/* Blog article */
.article-banner .badge {
  width: fit-content;
}
.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
}
.article-back-link:hover {
  color: #fff;
}
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.article-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 1.5rem;
  align-items: start;
}
.article-body {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 2rem;
}
.article-intro {
  color: var(--navy);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 400;
  line-height: 1.85;
}
.article-divider {
  width: 72px;
  height: 2px;
  margin: 2.2rem 0 2.7rem;
  border-radius: 999px;
  background: var(--brand);
}
.article-body h2 {
  margin: 2.8rem 0 1rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.035em;
  scroll-margin-top: 110px;
}
.article-body p {
  color: #536071;
  font-size: 0.88rem;
  line-height: 1.95;
}
.article-body blockquote {
  position: relative;
  margin: 2.5rem 0;
  padding: 2rem 2rem 2rem 2.4rem;
  border-left: 3px solid var(--purple);
  border-radius: 0 1.25rem 1.25rem 0;
  background: linear-gradient(
    135deg,
    rgba(131, 73, 127, 0.1),
    rgba(49, 95, 133, 0.06)
  );
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 400;
  line-height: 1.75;
}
.article-body blockquote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 500;
}
.article-tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 2rem 0 2.5rem;
}
.article-tip-grid > div {
  padding: 1.25rem;
  border: 1px solid rgba(131, 73, 127, 0.16);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}
.article-tip-grid i {
  color: var(--purple);
  font-size: 1.2rem;
}
.article-tip-grid strong,
.article-tip-grid span {
  display: block;
}
.article-tip-grid strong {
  margin-top: 0.85rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
}
.article-tip-grid span {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.65;
}
.article-image {
  margin: 2.75rem 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}
.article-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.article-image figcaption {
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.64rem;
}
.article-checklist {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 2.5rem;
  padding: 0;
  list-style: none;
}
.article-checklist li {
  display: flex;
  gap: 0.7rem;
  color: #4d5969;
  font-size: 0.8rem;
}
.article-checklist i {
  color: var(--purple);
}
.article-care-note {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(255, 255, 255, 0.13),
      transparent 34%
    ),
    linear-gradient(135deg, var(--navy), var(--purple-deep));
  color: #fff;
}
.article-care-note .icon-box {
  flex: 0 0 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: #e8d0e5;
}
.article-care-note span {
  color: #e6cde3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-care-note h3 {
  margin: 0.7rem 0;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 500;
}
.article-care-note p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.76rem;
}
.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}
.article-sidebar-card {
  padding: 1.4rem;
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.article-sidebar-card nav {
  display: grid;
  gap: 0.2rem;
  margin-top: 1rem;
}
.article-sidebar-card nav a {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(20, 37, 59, 0.07);
  color: #536071;
  font-size: 0.7rem;
  text-decoration: none;
}
.article-sidebar-card nav a:hover {
  color: var(--purple-deep);
  transform: translateX(3px);
}
.article-author-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 0.9rem;
  background: rgba(131, 73, 127, 0.1);
  color: var(--purple);
  font-size: 1.2rem;
}
.article-author > span,
.article-author > strong {
  display: block;
}
.article-author > span {
  color: var(--muted);
  font-size: 0.61rem;
}
.article-author > strong {
  margin-top: 0.25rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}
.article-author p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.66rem;
}
.related-articles {
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: linear-gradient(180deg, #fff 0%, #f8f4ff 100%);
}
.related-article-card {
  display: block;
  height: 100%;
  padding: 0.75rem 0.75rem 1.35rem;
  border: 1px solid rgba(131, 73, 127, 0.18);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.related-article-card img {
  width: 100%;
  height: 210px;
  border-radius: 0.95rem;
  object-fit: cover;
}
.related-article-card span {
  display: block;
  margin: 1rem 0 0.4rem;
  padding: 0 0.6rem;
  color: var(--purple);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.related-article-card h3 {
  margin: 0;
  padding: 0 0.6rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}
.related-article-card:hover {
  color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* Unified glass card system */
:is(
  .glass,
  .glass-strong,
  .standard-card,
  .service-detail,
  .clinical-panel,
  .accordion-item,
  .contact-map-card
) {
  border: 1px solid rgba(131, 73, 127, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.card-hover:hover,
.standard-card:hover {
  background: #fff;
}
.accordion-button {
  background: #fff;
}

/* Contact map */
.contact-map-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: 2rem;
}
.contact-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}
.contact-map-copy h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
}
.contact-map-copy p {
  color: var(--muted);
  font-size: 0.82rem;
}
.contact-map-frame {
  min-height: 520px;
  padding: 0.75rem;
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 496px;
  border: 0;
  border-radius: 1.4rem;
  filter: saturate(0.75) contrast(0.94);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Footer */
.global-contact-strip {
  width: 100%;
  margin-top: clamp(5rem, 9vw, 8rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    linear-gradient(135deg, #fff 0%, #f8f4ff 52%, #edf8ff 100%);
  color: var(--ink);
}
.global-contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.global-contact-content > div {
  max-width: 760px;
}
.global-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-deep);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.global-contact-content h2 {
  margin: 0.9rem 0 0.55rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.global-contact-content p {
  margin: 0;
  color: var(--muted);
}
.global-contact-content > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
  color: var(--purple-deep);
  font-size: 0.76rem;
  font-weight: 500;
}
.global-contact-content > a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}
footer {
  width: 100%;
  margin-top: 0;
  background:
    linear-gradient(135deg, rgba(131, 73, 127, 0.18), rgba(49, 95, 133, 0.16)),
    #fff;
  color: var(--ink);
}
.footer-wrap {
  width: 100%;
  padding: 4.5rem max(1.25rem, calc((100vw - 1140px) / 2)) 2rem;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(131, 73, 127, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(49, 95, 133, 0.2),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.76),
      rgba(248, 244, 255, 0.68) 48%,
      rgba(243, 251, 255, 0.7)
    );
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.footer-wrap > .row {
  margin-right: 0;
  margin-left: 0;
}
.footer-logo {
  width: min(100%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(20, 37, 59, 0.12));
}
.footer-logo-wrap {
  display: inline-flex;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.footer-wrap h6 {
  margin-bottom: 1.2rem;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-intro {
  max-width: 500px;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid rgba(131, 73, 127, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--purple-deep);
  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);
  font-size: 0.59rem;
}
.footer-link {
  color: var(--muted);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--purple-deep);
  transform: translateX(3px);
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: 0.74rem;
  text-decoration: none;
}
.footer-contact > i {
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 1.9rem;
  place-items: center;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.58);
  color: var(--purple);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footer-contact small {
  display: block;
  color: var(--muted);
  font-size: 0.6rem;
}
a.footer-contact:hover {
  color: var(--purple-deep);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(131, 73, 127, 0.14);
  color: var(--muted);
  font-size: 0.62rem;
}
.footer-credit a {
  color: var(--purple-deep);
  font-weight: 500;
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--blue);
}

/* Floating contact actions */
.floating-contact-actions {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 1040;
  display: grid;
  gap: 0.75rem;
}
.floating-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 20px 42px -22px rgba(20, 37, 59, 0.65);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  animation: floatingContactPulse 2.6s ease-in-out infinite;
}
.floating-contact-btn::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  opacity: 0.96;
}
.floating-contact-btn i {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
}
.floating-contact-btn span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.floating-contact-btn:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 26px 48px -22px rgba(20, 37, 59, 0.75);
}
.floating-whatsapp {
  animation-delay: 0.35s;
}
.floating-call::before,
.floating-whatsapp::before {
  background: var(--brand);
}
@keyframes floatingContactPulse {
  0%,
  100% {
    box-shadow:
      0 20px 42px -22px rgba(20, 37, 59, 0.65),
      0 0 0 0 rgba(49, 95, 133, 0.22);
  }
  50% {
    box-shadow:
      0 26px 48px -22px rgba(20, 37, 59, 0.72),
      0 0 0 10px rgba(49, 95, 133, 0);
  }
}

/* Logo-blue typography */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.font-display,
.hero-copy h1,
.hero-copy h2,
.home-care-card h3,
.proof-card h3,
.standard-card h3,
.service-detail h3,
.service-detail-grid h4,
.legal-content h2,
.article-body h2,
.related-article-card h3,
.global-contact-content h2,
.footer-wrap h6 {
  color: var(--blue);
}

a:not(.btn):not(.btn-brand):not(.btn-soft):not(.btn-hero-outline):not(.navbar-brand),
.navbar-nav .nav-link,
.footer-link,
.footer-contact,
.footer-credit a,
.text-link,
.content-list a,
.legal-content a {
  color: var(--blue);
}

a:not(.btn):not(.btn-brand):not(.btn-soft):not(.btn-hero-outline):not(.navbar-brand):hover,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.footer-link:hover,
.footer-contact:hover,
.footer-credit a:hover,
.text-link:hover,
.content-list a:hover,
.legal-content a:hover {
  color: var(--blue);
}

/* Banner text keeps its high-contrast colour */
.home-hero h1,
.home-hero h2,
.home-hero p,
.home-hero span,
.page-banner h1,
.banner-content h1,
.banner-content h2,
.banner-content h3,
.banner-content p,
.banner-content span,
.banner-content strong,
.banner-content small,
.banner-content .lead,
.banner-content .text-muted-custom {
  color: #fff;
}

.home-hero a:not(.btn),
.banner-content a:not(.btn),
.page-banner a:not(.btn),
.page-breadcrumb,
.page-breadcrumb a {
  color: #fff;
}

.hero-copy h1 em,
.hero-copy h2 em,
.page-banner h1 em {
  color: #fff;
}

/* Larger paragraph copy across the website */
p {
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.82;
}

.hero-copy > p,
.banner-content .lead,
.section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    padding: 0.48rem 0.58rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 991px) {
  #site-header .navbar {
    width: min(720px, calc(100% - 0.5rem));
  }
  #site-header .navbar-collapse {
    margin-top: 0.6rem;
    padding: 0.7rem;
    border-radius: 0.9rem;
    background: rgba(247, 242, 255, 0.92);
  }
  .navbar-nav .nav-link {
    padding: 0.58rem 0.7rem;
    font-size: 0.84rem;
  }
  .care-dropdown .dropdown-item {
    font-size: 0.82rem;
  }
  .navbar-cta {
    width: 100%;
    margin-top: 0.7rem;
    padding: 0.78rem 1rem;
  }
  .care-dropdown {
    min-width: 100%;
    box-shadow: none;
  }
  .home-hero-inner {
    align-items: flex-end;
    padding-bottom: 7rem;
  }
  .hero-copy h1,
  .hero-copy h2 {
    max-width: 720px;
  }
  .section-heading {
    display: block;
  }
  .content-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 1rem;
  }
  .content-heading > p {
    margin-top: 1rem;
  }
  .home-care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clinical-image-wrap {
    min-height: 480px;
  }
  .page-banner,
  .banner-content {
    height: 540px;
    min-height: 540px;
  }
  .global-contact-content {
    display: block;
  }
  .global-contact-content > a {
    margin-top: 1.5rem;
  }
  .contact-map-card {
    grid-template-columns: 1fr;
  }
  .contact-map-frame {
    min-height: 410px;
  }
  .contact-map-frame iframe {
    min-height: 386px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.5rem;
  }
  .legal-nav .section-kicker {
    grid-column: 1 / -1;
  }
  .article-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .design-section,
  .section-space {
    padding-top: 4.25rem;
  }
  .form-lift {
    padding-top: 2.5rem;
  }
  main .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2.25rem;
  }
  .home-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(10, 23, 39, 0.36),
      rgba(10, 23, 39, 0.74) 70%
    );
  }
  .home-hero-image {
    object-position: 62% center;
  }
  .page-banner > img {
    object-position: 70% center;
  }
  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }
  .hero-copy > p {
    font-size: 0.92rem;
  }
  .hero-trust-row span {
    width: 100%;
  }
  .trust-stat {
    min-height: 104px;
    padding: 0.75rem 1rem;
  }
  .trust-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(20, 37, 59, 0.1);
  }
  .trust-stat:nth-child(odd) {
    border-left: 0;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .editorial-image {
    min-height: 470px;
  }
  .home-care-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .journey-line {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .journey-line::before {
    display: none;
  }
  .page-banner,
  .banner-content {
    height: 640px;
    min-height: 640px;
  }
  .banner-content {
    align-items: flex-end;
    padding-top: 7rem;
    padding-bottom: 2.75rem;
  }
  .page-banner h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.7rem);
    min-height: 0;
    line-height: 1.06;
    letter-spacing: -0.05em;
  }
  .page-banner h1.mt-4 {
    margin-top: 1rem;
  }
  .page-breadcrumb {
    margin-bottom: 0.8rem;
    font-size: 0.63rem;
  }
  .banner-content .lead {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .article-tip-grid {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    grid-template-columns: 1fr;
  }
  .article-care-note {
    display: block;
  }
  .article-care-note .icon-box {
    margin-bottom: 1rem;
  }
  .legal-nav {
    grid-template-columns: 1fr;
  }
  .legal-nav .section-kicker {
    grid-column: auto;
  }
  .legal-content {
    border-radius: 1.4rem;
  }
  .legal-notice {
    display: block;
  }
  .legal-notice i {
    display: block;
    margin-bottom: 0.65rem;
  }
}

@media (max-width: 575px) {
  #site-header {
    padding: 0.55rem 0.35rem;
  }
  #site-header .navbar {
    width: calc(100% - 0.4rem);
    min-height: 60px;
  }
  .navbar-brand img {
    width: 132px;
    height: 54px;
  }
  .home-hero-inner {
    padding-right: 1.2rem;
    padding-bottom: 5.5rem;
    padding-left: 1.2rem;
  }
  .hero-trust-row {
    display: none;
  }
  .home-hero-control {
    display: none;
  }
  .home-hero-indicators {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .btn-brand,
  .btn-hero-outline {
    width: 100%;
  }
  .hero-scroll {
    display: none;
  }
  .trust-ribbon {
    margin-top: 0;
  }
  .trust-shell {
    padding: 1rem 1.2rem;
  }
  .trust-track {
    grid-template-columns: 1fr;
  }
  .trust-stat {
    min-height: 96px;
    border-top: 1px solid rgba(20, 37, 59, 0.1);
    border-left: 0;
  }
  .trust-stat:first-child {
    border-top: 0;
  }
  .stat-label {
    max-width: none;
  }
  .content-list-columns {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }
  .editorial-image {
    min-height: 410px;
  }
  .journey-line {
    grid-template-columns: 1fr;
  }
  .clinical-image-wrap {
    min-height: 400px;
  }
  .footer-wrap {
    padding: 3rem 1.25rem 1.5rem;
  }
  .global-contact-content > a {
    width: 100%;
    justify-content: center;
  }
  .floating-contact-actions {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.55rem;
  }
  .floating-contact-btn {
    width: 3.35rem;
    height: 3.35rem;
    padding: 0.65rem;
  }
  .floating-contact-btn i {
    width: 2.05rem;
    height: 2.05rem;
  }
}

/* Consistent site layout rhythm */
:root {
  --section-y: clamp(4.75rem, 8vw, 7rem);
  --section-y-tight: clamp(3.25rem, 6vw, 5rem);
  --section-gap: clamp(1.5rem, 3vw, 2.5rem);
  --grid-gap: clamp(1rem, 2vw, 1.35rem);
  --card-pad: clamp(1.35rem, 2.4vw, 2rem);
}

html,
body {
  overflow-x: clip;
}

main > section.container.section-space,
main > section.container.design-section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

main > section.container.section-space + section.container.section-space,
main > section.container.section-space + section.container.design-section,
main > section.container.design-section + section.container.section-space,
main > section.container.design-section + section.container.design-section {
  padding-top: 0;
}

main > section.container-fluid + section.container.section-space,
main > section.container-fluid + section.container.design-section {
  padding-top: var(--section-y);
}

.design-section:not(.container),
.section-space:not(.container) {
  padding-top: var(--section-y);
}

.care-discovery,
.home-care-choices,
.why-section,
.related-articles {
  padding-bottom: var(--section-y);
}

.form-lift {
  padding-top: var(--section-y-tight);
}

.section-heading,
.content-heading {
  gap: var(--section-gap);
  margin-bottom: var(--section-gap);
}

.section-heading > p,
.content-heading > p {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 0;
}

.section-title + p,
.section-title + .text-muted-custom,
.section-title + .section-lead,
.section-kicker + .section-title {
  margin-top: clamp(0.85rem, 1.6vw, 1.15rem);
}

.content-heading + .row,
.section-heading + .home-care-grid,
.text-center + .row,
.glass-strong > .row,
.content-card + .accordion,
.content-card + .row,
.content-heading + .home-care-grid {
  margin-top: var(--section-gap);
}

main > section.container > .row:first-child,
main > section.container > .content-heading:first-child,
main > section.container > .section-heading:first-child,
main > section.container > .text-center:first-child,
main > section.container > .legal-layout:first-child,
main > section.container > .article-layout:first-child,
main > section.container > .contact-map-card:first-child,
main > section.container > .clinical-panel:first-child,
main > section.container > .glass-strong:first-child {
  margin-top: 0;
}

main .row.g-3 {
  --bs-gutter-x: var(--grid-gap);
  --bs-gutter-y: var(--grid-gap);
}

main .row.g-4 {
  --bs-gutter-x: clamp(1.2rem, 2.4vw, 1.8rem);
  --bs-gutter-y: clamp(1.2rem, 2.4vw, 1.8rem);
}

main .row.g-5 {
  --bs-gutter-x: clamp(1.75rem, 4vw, 3rem);
  --bs-gutter-y: clamp(1.75rem, 4vw, 3rem);
}

main form > .row {
  margin-right: 0;
  margin-left: 0;
}

.content-card,
.standard-card,
.process-card,
.article-sidebar-card,
.legal-nav {
  padding: var(--card-pad);
}

.service-detail {
  gap: clamp(0.9rem, 2vw, 1.2rem);
  padding: var(--card-pad);
}

.clinical-panel,
.care-callout,
.contact-map-card,
.article-body,
.legal-content {
  border-radius: clamp(1.25rem, 2vw, 2rem);
}

.icon-box,
.standard-card > i,
.service-detail > i,
.home-care-icon,
.journey-icon {
  flex-shrink: 0;
}

.content-list,
.journey-detail-list,
.article-checklist {
  gap: 0.65rem;
}

.accordion-item {
  margin-bottom: var(--grid-gap);
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.mb-3.accordion-item {
  margin-bottom: var(--grid-gap) !important;
}

main > section.container .mt-4,
main > section.container .mt-5 {
  margin-top: var(--section-gap) !important;
}

.global-contact-strip {
  margin-top: var(--section-y);
  margin-bottom: var(--section-y-tight);
}

@media (max-width: 991px) {
  .section-heading,
  .content-heading,
  .global-contact-content {
    gap: clamp(1rem, 4vw, 1.5rem);
  }
}

@media (max-width: 767px) {
  :root {
    --section-y: clamp(3.5rem, 12vw, 4.75rem);
    --section-y-tight: clamp(2.5rem, 9vw, 3.5rem);
    --section-gap: clamp(1.15rem, 5vw, 1.75rem);
    --grid-gap: 1rem;
    --card-pad: clamp(1.2rem, 5vw, 1.5rem);
  }

  main > section.container.section-space,
  main > section.container.design-section {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
  }

  main > section.container.section-space + section.container.section-space,
  main > section.container.section-space + section.container.design-section,
  main > section.container.design-section + section.container.section-space,
  main > section.container.design-section + section.container.design-section {
    padding-top: 0;
  }

  .content-heading + .row,
  .section-heading + .home-care-grid,
  .text-center + .row,
  .glass-strong > .row,
  .content-card + .accordion,
  .content-card + .row {
    margin-top: var(--section-gap);
  }
}

/* Larger non-title text across the website */
body {
  font-size: 1.06rem;
}

p,
li,
.lead,
.section-lead,
.content-card p,
.home-care-card p,
.proof-card p,
.journey-step p,
.standard-card p,
.service-detail p,
.process-card p,
.accordion-body,
.service-suitability,
.legal-content p,
.legal-content li,
.legal-notice p,
.article-body p,
.article-care-note p,
.article-author p,
.contact-map-copy p,
.footer-intro,
.global-contact-content p {
  font-size: 1.06rem;
  line-height: 1.82;
}

.hero-copy > p,
.banner-content .lead,
.article-intro,
.article-body blockquote {
  font-size: 1.16rem;
  line-height: 1.78;
}

.section-kicker,
.eyebrow-pill,
.btn-brand,
.btn-soft,
.btn-hero-outline,
.text-link,
.navbar-nav .nav-link,
#site-header .btn-brand,
.care-dropdown .dropdown-item,
.about-service-card span,
.hero-trust-row span,
.hero-scroll,
.stat-index,
.stat-label,
.editorial-note strong,
.editorial-note small,
.value-quote,
.home-care-link,
.journey-step > span,
.journey-detail-list,
.banner-content .badge,
.page-breadcrumb,
.clinical-badge strong,
.clinical-badge small,
.care-callout-label,
.process-card > span,
.accordion-button,
.service-tagline,
.service-detail-grid ul,
.form-control,
.form-select,
.form-label,
.cv-upload small,
.legal-nav a,
.legal-meta span,
.legal-meta strong,
.article-back-link,
.article-hero-meta span,
.article-body blockquote cite,
.article-tip-grid strong,
.article-tip-grid span,
.article-image figcaption,
.article-checklist li,
.article-care-note span,
.article-sidebar-card nav a,
.article-author > span,
.article-author > strong,
.related-article-card span,
.global-contact-label,
.global-contact-content > a,
.footer-trust span,
.footer-contact,
.footer-contact small,
.footer-bottom,
.floating-contact-btn {
  font-size: 0.94rem;
}

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