@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a3260;
  --navy-light: #2a4a8a;
  --rose: #c4637a;
  --rose-light: #e8a0b0;
  --rose-pale: #fdf0f3;
  --cream: #faf8f5;
  --text-dark: #0f1f3d;
  --text-mid: #3d5080;
  --text-light: #7a8eaa;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 16px 48px rgba(15, 31, 61, 0.12);
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text-dark);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
.brand span {
  font-family: "Playfair Display", Georgia, serif;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72);
  backdrop-filter: blur(14px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.98);
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 34px rgba(15, 31, 61, 0.08);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--rose), var(--navy-light), var(--rose-light));
  transition: transform 0.08s linear;
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.82rem;
  align-items: center;
  line-height: 1.15;
}

.brand-emblem {
  grid-row: 1 / span 2;
  position: relative;
  width: 56px;
  height: 50px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 10px 18px rgba(15, 31, 61, 0.18));
}

.brand-emblem img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand span {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  grid-column: 2;
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
}

.site-nav a,
.nav-dropdown > a {
  color: var(--text-mid);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.site-nav a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.24s ease;
}

.site-nav a:hover::after,
.nav-dropdown:hover > a::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 120;
  min-width: 240px;
  display: grid;
  gap: 0;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  padding: 0.72rem 0.85rem;
  border-radius: 5px;
  color: var(--navy);
  font-size: 0.8rem;
  white-space: nowrap;
}

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

.dropdown-menu a:hover {
  color: var(--rose);
  background: var(--rose-pale);
}

.btn-primary,
.btn-ghost,
.btn-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 2px;
  padding: 0.8rem 1.7rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 4px 20px rgba(196, 99, 122, 0.3);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: #b05570;
  box-shadow: 0 10px 32px rgba(196, 99, 122, 0.4);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 56%, #3d1f35 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 48%, 14% 22%, 28% 30%, 43% 54%, 58% 60%, 74% 48%, 88% 34%, 100% 44%, 100% 100%, 0 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transition: transform 0.22s ease-out;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -10%;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hero-grid-flow 18s linear infinite;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 42%, transparent 56%),
    repeating-linear-gradient(135deg, transparent 0 32px, rgba(255, 255, 255, 0.035) 32px 33px);
  transform: translateX(-24%);
  animation: hero-light-flow 9s var(--ease-fluid) infinite;
}

.halo {
  position: absolute;
  border-radius: 50%;
}

.halo-one {
  right: -6%;
  top: 8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(196, 99, 122, 0.22), transparent 70%);
}

.halo-two {
  left: 28%;
  bottom: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(42, 74, 138, 0.4), transparent 70%);
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 99, 122, 0.18);
  animation: floatSlow 6s ease-in-out infinite;
}

.ring-one {
  right: 8%;
  top: 20%;
  width: 420px;
  height: 420px;
}

.ring-two {
  right: 11%;
  top: 24%;
  width: 330px;
  height: 330px;
  animation-delay: 1.4s;
}

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(196, 99, 122, 0.3);
  border-radius: 999px;
  color: var(--rose-light);
  background: rgba(196, 99, 122, 0.18);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-light);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 1.75rem;
  color: var(--white);
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 em,
.section h2 em,
.center-heading h2 em,
.contact h2 em {
  color: var(--rose-light);
  font-style: italic;
}

.hero-copy > p {
  max-width: 470px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.hero-copy .pill,
.hero-copy h1,
.hero-copy > p,
.hero-actions,
.hero-stats {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-copy-rise 0.8s var(--ease-fluid) forwards;
}

.hero-copy h1 {
  animation-delay: 0.12s;
}

.hero-copy > p {
  animation-delay: 0.22s;
}

.hero-actions {
  animation-delay: 0.32s;
}

.hero-stats {
  animation-delay: 0.42s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 3.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.hero-card {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-feature {
  overflow: hidden;
  animation: hero-panel-lift 7s ease-in-out infinite;
  transition: transform 0.22s ease-out;
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.13) 46%, transparent 58%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px);
  transform: translateX(-110%);
  animation: hero-dashboard-sweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-motion-dashboard {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  text-align: left;
  background: rgba(9, 22, 44, 0.42);
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-topline strong {
  color: var(--rose-light);
}

.hero-pulse-line {
  width: 100%;
  height: 82px;
}

.hero-pulse-line polyline {
  fill: none;
  stroke: var(--rose-light);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: motion-draw 3.8s ease-in-out infinite;
}

.dashboard-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.dashboard-steps span {
  display: grid;
  gap: 0.2rem;
  min-height: 64px;
  align-content: center;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  line-height: 1.25;
}

.dashboard-steps small {
  color: var(--rose-light);
  font-weight: 900;
  letter-spacing: 0.1em;
}

@keyframes hero-panel-lift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-grid-flow {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(60px, 60px, 0);
  }
}

@keyframes hero-light-flow {
  0%, 18% {
    transform: translateX(-28%);
    opacity: 0.36;
  }

  60%, 100% {
    transform: translateX(28%);
    opacity: 0.72;
  }
}

@keyframes hero-copy-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-dashboard-sweep {
  0%, 18% {
    transform: translateX(-110%);
  }

  64%, 100% {
    transform: translateX(130%);
  }
}

.medical-mark {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), #8b2a42);
  box-shadow: 0 20px 60px rgba(196, 99, 122, 0.4);
}

.medical-mark span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 14px;
  border-radius: 4px;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.medical-mark span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hero-card h2 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.7rem;
}

.tag-list span {
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(196, 99, 122, 0.35);
  border-radius: 999px;
  color: var(--rose-light);
  background: rgba(196, 99, 122, 0.2);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  animation: floatSlow 6s ease-in-out infinite;
}

.floating-note span,
.floating-note small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.floating-note strong {
  font-size: 0.8rem;
}

.note-left {
  left: -14%;
  bottom: -12%;
}

.note-right {
  right: -10%;
  top: -8%;
  animation-delay: 2s;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 2rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 600;
}

.trust-strip span {
  color: var(--rose);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.stories {
  padding: clamp(5rem, 9vw, 7rem) 2rem;
}

.section > *,
.stories > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.center-heading .eyebrow {
  justify-content: center;
}

.section h2,
.center-heading h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.split-heading p,
.about-copy > p,
.contact-copy > p {
  color: var(--text-mid);
  line-height: 1.75;
}

.split-heading .btn-primary {
  margin-top: 1.75rem;
}

.service-grid,
.provider-grid,
.story-grid,
.location-grid {
  display: grid;
  gap: 1.25rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  transition: width 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  width: 100%;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: var(--rose);
  background: var(--rose-pale);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p,
.location-card p,
.site-footer p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  background: var(--white);
}

.about-visual,
.about-copy {
  max-width: none;
}

.about-visual {
  position: relative;
}

.photo-card {
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(15, 31, 61, 0.08), rgba(15, 31, 61, 0.08)),
    url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1200&q=82") center / cover;
  box-shadow: var(--shadow);
}

.photo-grid {
  height: 100%;
  min-height: 430px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}

.photo-grid span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.experience-card {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: 210px;
  padding: 1.4rem;
  border-radius: 6px;
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 16px 40px rgba(196, 99, 122, 0.35);
}

.experience-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.experience-card span {
  font-size: 0.85rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.check-list li::before {
  content: "+";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose);
  background: var(--rose-pale);
  font-size: 0.8rem;
}

.providers {
  background: var(--cream);
}

.center-heading {
  max-width: 640px;
  margin-bottom: 4rem;
  text-align: center;
}

.profile-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin: 0.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
}

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

.provider-card {
  grid-template-columns: 160px 1fr;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 34px rgba(15, 31, 61, 0.06);
}

.provider-portrait {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--rose));
}

.portrait-initials {
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.92), rgba(196, 99, 122, 0.78)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 34%);
}

.portrait-initials span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.provider-info {
  padding: 1.5rem;
}

.profile-initials {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.profile-card h3,
.profile-card h4 {
  margin: 0 0 0.25rem;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.profile-card p {
  margin-bottom: 0.8rem;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-card .provider-role {
  margin-bottom: 0.45rem;
  color: var(--rose);
}

.provider-card .provider-summary {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.provider-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.provider-tags span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--rose);
  background: var(--rose-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-card li {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.45;
}

.profile-card li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--rose);
  font-weight: 800;
}

.stories {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
}

.stories::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 99, 122, 0.16), transparent 70%);
}

.stories .center-heading {
  position: relative;
  color: var(--white);
}

.stories h2,
.stories .eyebrow {
  color: var(--white);
}

.stories .eyebrow.light {
  color: var(--rose-light);
}

.story-grid {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
}

.story-grid article {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.stars {
  color: var(--rose-light);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.story-grid strong {
  color: var(--white);
  font-size: 0.85rem;
}

.story-grid span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.story-grid a {
  justify-self: start;
  margin-top: 0.35rem;
  color: var(--rose-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations {
  background: var(--white);
}

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

.location-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--cream);
}

.map-panel {
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.95), rgba(26, 50, 96, 0.95)),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 30px 30px;
}

.map-panel span {
  padding: 1rem 1.4rem;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 8px 24px rgba(196, 99, 122, 0.5);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.location-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
}

.location-body h3 {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

address {
  color: var(--text-dark);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.65;
}

.location-body a:not(.btn-primary) {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--rose);
  font-size: 0.875rem;
  font-weight: 700;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.location-body .map-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-body .map-links a:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.location-body p {
  margin-bottom: 0.4rem;
}

.btn-primary.small {
  min-height: 38px;
  margin-top: 0.8rem;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.contact-copy,
.appointment-form {
  max-width: none;
}

.contact-copy h2 {
  margin-bottom: 1.5rem;
}

.contact-copy h2 em {
  color: var(--rose);
}

.contact-method {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.4rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--rose);
}

.contact-method span {
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-method a {
  color: var(--navy);
  font-weight: 700;
}

.appointment-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(15, 31, 61, 0.07);
}

.appointment-form h3 {
  margin-bottom: -0.8rem;
  color: var(--navy);
  font-size: 1.5rem;
}

.appointment-form > p,
.appointment-form small {
  color: var(--text-light);
  font-size: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.appointment-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--rose);
}

.appointment-form .btn-primary {
  width: 100%;
}

.appointment-form small {
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem max(2rem, calc((100vw - 1280px) / 2 + 2rem)) 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
}

.footer-brand span,
.site-footer .brand span {
  color: var(--white);
}

.footer-brand .brand-emblem,
.site-footer .brand-emblem {
  border-color: rgba(255, 255, 255, 0.22);
}

.site-footer .brand small {
  color: var(--rose-light);
}

.site-footer p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer nav {
  display: grid;
  gap: 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-link {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: var(--white) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  max-width: none !important;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.34) !important;
  font-size: 0.8rem !important;
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--navy);
}

.social-bar a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.social-bar a:hover {
  transform: translateY(-2px);
  border-color: var(--rose-light);
  background: rgba(196, 99, 122, 0.22);
}

.social-bar svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

html.motion-ready .reveal-on-scroll {
  opacity: 1;
  transform: translateY(24px);
  transition:
    transform 0.72s var(--ease-fluid),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

html.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.profile-card,
.story-card,
.location-card,
.condition-card,
.seo-aside,
.insurance-panel,
.vip-card,
.proof-card,
.comparison-card {
  will-change: transform;
}

.profile-card,
.story-card,
.location-card,
.condition-card,
.seo-aside,
.insurance-panel,
.vip-card,
.proof-card,
.comparison-card {
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
}

.profile-card:hover,
.story-card:hover,
.location-card:hover,
.condition-card:hover,
.seo-aside:hover,
.insurance-panel:hover,
.vip-card:hover,
.proof-card:hover,
.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.motion-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 5rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem));
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(120deg, rgba(246, 248, 252, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(35, 78, 137, 0.08), rgba(196, 99, 122, 0.08));
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-copy {
  max-width: 690px;
}

.motion-kicker {
  margin: 0 0 0.75rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.motion-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.motion-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
}

.motion-scene {
  position: relative;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(13, 31, 61, 0.96), rgba(35, 78, 137, 0.92)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
}

.motion-scene::before,
.motion-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.motion-scene::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 44px);
  opacity: 0.52;
}

.motion-scene::after {
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  animation: motion-scan 4.8s ease-in-out infinite;
}

.motion-screen {
  position: absolute;
  inset: 26px;
  display: grid;
  align-content: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(7px);
  transform: translateY(var(--scene-drift, 0));
  transition: transform 0.18s linear;
}

.motion-topic {
  display: inline-flex;
  width: fit-content;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ekg-line {
  width: 100%;
  height: 86px;
}

.ekg-line polyline {
  fill: none;
  stroke: #f3cad2;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: motion-draw 3.8s ease-in-out infinite;
}

.motion-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.motion-metrics span {
  display: grid;
  gap: 0.25rem;
  min-height: 74px;
  align-content: center;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  animation: motion-float 5s ease-in-out infinite;
}

.motion-metrics span:nth-child(2) {
  animation-delay: 0.5s;
}

.motion-metrics span:nth-child(3) {
  animation-delay: 1s;
}

.motion-metrics small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motion-metrics strong {
  font-size: 1.1rem;
}

@keyframes motion-scan {
  0%, 18% {
    transform: translateX(-120%);
  }

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

@keyframes motion-draw {
  0% {
    stroke-dashoffset: 620;
  }

  48%, 72% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -620;
  }
}

@keyframes motion-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

  .motion-strip {
    opacity: 1;
    transform: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.conditions-header {
  position: sticky;
}

.conditions-page {
  padding-top: 0;
}

.conditions-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(5rem, 9vw, 7rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem)) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid) 62%, #3d1f35);
}

.conditions-hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.96;
}

.conditions-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.urgent-note {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--rose-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.urgent-note strong {
  color: var(--white);
}

.urgent-note p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.condition-search-panel,
.condition-grid,
.no-results,
.condition-cta {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.condition-search-panel {
  display: grid;
  gap: 0.85rem;
  margin-top: -2rem;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.condition-search-panel label {
  color: var(--navy);
  font-weight: 800;
}

.condition-search-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
}

.condition-search-row input {
  min-height: 48px;
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 0 1rem;
  color: var(--navy);
  background: var(--cream);
}

.nih-link {
  white-space: nowrap;
}

.condition-search-panel p,
.no-results {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  padding: 4rem 0 2rem;
}

.condition-card {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.condition-card[hidden] {
  display: none;
}

.condition-card span {
  justify-self: start;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--rose);
  background: var(--rose-pale);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.condition-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.condition-card p,
.condition-card li {
  color: var(--text-mid);
  line-height: 1.65;
}

.condition-card p {
  margin: 0;
}

.condition-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-card li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--rose);
  font-weight: 800;
}

.no-results {
  padding: 0 2rem 2rem;
}

.condition-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 5rem;
  padding: 2rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.condition-cta h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.condition-cta p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.insurance-panel,
.insurance-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.insurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  padding: clamp(3rem, 7vw, 5rem) 2rem 1rem;
}

.insurance-intro,
.insurance-search {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.insurance-intro h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.insurance-intro p,
.insurance-search label {
  color: var(--text-mid);
  line-height: 1.7;
}

.insurance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.insurance-search {
  align-self: start;
  display: grid;
  gap: 0.75rem;
}

.insurance-search label {
  color: var(--navy);
  font-weight: 800;
}

.insurance-search input {
  min-height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 0 1rem;
  color: var(--navy);
  background: var(--cream);
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 2rem clamp(3rem, 7vw, 5rem);
}

.insurance-grid span,
.insurance-grid a {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.insurance-grid a {
  display: block;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.insurance-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  color: var(--rose);
}

.insurance-grid span[hidden],
.insurance-grid a[hidden] {
  display: none;
}

.seo-page {
  padding-top: 0;
}

.seo-hero {
  padding: clamp(5rem, 9vw, 7rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem)) clamp(3rem, 6vw, 5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid) 62%, #3d1f35);
}

.weight-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.seo-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.seo-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-link-panel {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-top: 1.6rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-link-panel strong {
  color: var(--white);
  font-size: 1rem;
}

.hero-link-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-link-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-link-panel a {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(196, 99, 122, 0.28);
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-link-panel a:hover {
  transform: translateY(-2px);
  border-color: var(--rose-light);
  background: rgba(196, 99, 122, 0.42);
}

.weight-snapshot {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, 0.04) 28px 29px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.weight-snapshot > span {
  color: var(--rose-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weight-snapshot h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.snapshot-ring {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 10px solid rgba(232, 160, 176, 0.34);
  border-top-color: var(--rose-light);
  border-radius: 50%;
  animation: snapshot-turn 8s linear infinite;
}

.snapshot-ring strong,
.snapshot-ring small {
  animation: snapshot-turn 8s linear infinite reverse;
}

.snapshot-ring strong {
  margin-top: 0.2rem;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.snapshot-ring small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weight-snapshot ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.weight-snapshot li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.weight-snapshot li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--rose-light);
  font-weight: 900;
}

.weight-snapshot a {
  width: fit-content;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.weight-snapshot a:hover {
  transform: translateY(-2px);
  background: #d5758a;
}

@keyframes snapshot-turn {
  to {
    transform: rotate(360deg);
  }
}

.weight-progress-animation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 4.5rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem));
  background:
    linear-gradient(120deg, var(--white), rgba(253, 240, 243, 0.74)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(15, 31, 61, 0.03) 42px 43px);
  border-bottom: 1px solid var(--border);
}

.progress-copy {
  max-width: 620px;
}

.progress-copy h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.progress-copy p:last-child {
  color: var(--text-mid);
  line-height: 1.75;
}

.progress-visual {
  position: relative;
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.progress-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(196, 99, 122, 0.12) 46%, transparent 60%);
  transform: translateX(-120%);
  animation: progress-sheen 5.8s var(--ease-fluid) infinite;
  pointer-events: none;
}

.progress-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef3f7;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 82%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--navy-light), #48a078);
  transform-origin: left center;
  animation: progress-fill 4.4s var(--ease-fluid) infinite;
}

.progress-points {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.progress-points div,
.progress-wins span {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(250, 248, 245, 0.78);
}

.progress-points div {
  display: grid;
  gap: 0.2rem;
  min-height: 82px;
  align-content: center;
  padding: 0.8rem;
  animation: progress-lift 5.2s ease-in-out infinite;
}

.progress-points div:nth-child(2) {
  animation-delay: 0.35s;
}

.progress-points div:nth-child(3) {
  animation-delay: 0.7s;
}

.progress-points div:nth-child(4) {
  animation-delay: 1.05s;
}

.progress-points strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.progress-points small {
  color: var(--text-mid);
  font-size: 0.76rem;
}

.progress-wins {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.progress-wins span {
  padding: 0.55rem 0.75rem;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: progress-pulse 3.8s ease-in-out infinite;
}

.progress-wins span:nth-child(2) {
  animation-delay: 0.4s;
}

.progress-wins span:nth-child(3) {
  animation-delay: 0.8s;
}

.progress-wins span:nth-child(4) {
  animation-delay: 1.2s;
}

@keyframes progress-fill {
  0% {
    transform: scaleX(0.1);
  }

  55%, 100% {
    transform: scaleX(1);
  }
}

@keyframes progress-lift {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes progress-pulse {
  0%, 100% {
    transform: scale(1);
    border-color: var(--border);
  }

  50% {
    transform: scale(1.04);
    border-color: rgba(196, 99, 122, 0.45);
  }
}

@keyframes progress-sheen {
  0%, 18% {
    transform: translateX(-120%);
  }

  64%, 100% {
    transform: translateX(150%);
  }
}

.seo-card-grid,
.seo-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.seo-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.seo-card span {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.seo-card p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.65;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
}

.seo-content article {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.seo-content h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.seo-content p,
.seo-content li {
  color: var(--text-mid);
  line-height: 1.75;
}

.seo-content ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.seo-content li::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--rose);
  font-weight: 800;
}

.weight-plan {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.weight-plan section,
.resource-grid a,
.clinical-note {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.weight-plan section {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem;
}

.weight-plan span,
.resource-grid span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.weight-plan h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.weight-plan p,
.resource-grid p {
  margin: 0;
}

.clinical-note {
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  background: var(--rose-pale);
}

.clinical-note strong {
  color: var(--navy);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.resource-grid a {
  display: grid;
  gap: 0.5rem;
  padding: 1.1rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.resource-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 99, 122, 0.36);
  box-shadow: var(--shadow);
}

.resource-grid strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.medication-grid,
.future-glp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.medication-grid article,
.future-glp section {
  display: grid;
  gap: 0.55rem;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.medication-grid span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.medication-grid h3,
.future-glp h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.medication-grid p,
.future-glp p {
  margin: 0;
}

.future-glp section {
  background: linear-gradient(135deg, var(--white), rgba(253, 240, 243, 0.72));
}

.blog-page {
  padding-top: 0;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  padding: clamp(5rem, 9vw, 7rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem)) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.96), rgba(26, 50, 96, 0.92) 58%, rgba(196, 99, 122, 0.72)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.04) 34px 35px);
}

.blog-hero h1 {
  max-width: 860px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.blog-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.blog-metrics {
  display: grid;
  gap: 1rem;
}

.blog-metrics article,
.blog-feature,
.blog-grid article,
.blog-sources {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.blog-metrics article {
  padding: 1rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.blog-metrics strong {
  display: block;
  color: var(--rose-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.blog-metrics span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  max-width: 1280px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
}

.blog-feature h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.blog-feature p,
.blog-grid p,
.blog-sources a {
  color: var(--text-mid);
  line-height: 1.75;
}

.blog-balance-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.blog-balance-visual span,
.blog-balance-visual div {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.blog-balance-visual span {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.blog-balance-visual div {
  width: 64px;
  min-height: 64px;
  border-radius: 50%;
  background: var(--rose);
  animation: progress-pulse 3.8s ease-in-out infinite;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.blog-grid article {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1.25rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.blog-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 99, 122, 0.36);
  box-shadow: var(--shadow);
}

.blog-grid span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.blog-grid p {
  margin: 0;
}

.blog-grid a {
  width: fit-content;
  margin-top: 0.4rem;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-sources {
  display: grid;
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  padding: 1.5rem;
}

.blog-sources h2 {
  margin: 0;
  color: var(--navy);
}

.blog-sources a {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
}

.portal-page {
  padding-top: 0;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 7rem) max(1.2rem, calc((100vw - 1280px) / 2 + 2rem)) clamp(3rem, 7vw, 5rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.96), rgba(26, 50, 96, 0.92) 58%, rgba(196, 99, 122, 0.72)),
    repeating-linear-gradient(135deg, transparent 0 34px, rgba(255, 255, 255, 0.04) 34px 35px);
}

.portal-hero h1 {
  max-width: 900px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.portal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.portal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.portal-badges a {
  display: inline-flex;
}

.portal-badges img {
  height: 42px;
  width: auto;
  border-radius: 5px;
}

.portal-phone-card {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.portal-phone-card img,
.portal-screenshot-grid img {
  width: min(100%, 230px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 31, 61, 0.12);
}

.portal-phone-card figcaption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  text-align: center;
}

.portal-quick-actions {
  position: sticky;
  top: 72px;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
}

.portal-quick-actions a {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.portal-quick-actions a:hover {
  transform: translateY(-2px);
  border-color: var(--rose);
  color: var(--rose);
}

.portal-guide {
  display: grid;
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.portal-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.portal-step span,
.portal-code-card small {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-step h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.portal-step p,
.portal-step li,
.portal-info-panel p {
  color: var(--text-mid);
  line-height: 1.75;
}

.portal-step ul,
.portal-step ol {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.portal-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.portal-code-card,
.portal-info-panel {
  display: grid;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--rose-pale);
}

.portal-code-card strong {
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.portal-records {
  align-items: start;
}

.portal-info-panel h3 {
  margin: 0;
  color: var(--navy);
}

.portal-info-panel a {
  width: fit-content;
  color: var(--rose);
  font-weight: 900;
}

.seo-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--navy);
}

.seo-aside h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.seo-aside a {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.vip-hero {
  background:
    linear-gradient(135deg, rgba(15, 31, 61, 0.95), rgba(26, 50, 96, 0.9) 55%, rgba(196, 99, 122, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(232, 160, 176, 0.35), transparent 34%);
}

.vip-overview,
.vip-benefits {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.vip-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 2rem;
  align-items: start;
}

.vip-overview h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.vip-overview p,
.vip-card p,
.vip-benefits li {
  color: var(--text-mid);
  line-height: 1.7;
}

.vip-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.vip-card span {
  color: var(--rose-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-card strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.08;
}

.vip-card p {
  color: rgba(255, 255, 255, 0.72);
}

.vip-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 0;
}

.vip-benefits article {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.vip-benefits h2 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.vip-benefits ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip-benefits li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--rose);
  font-weight: 800;
}

.vip-signup-section,
.vip-provider-section {
  max-width: 1280px;
  margin: 0 auto;
}

.vip-signup-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 252, 0.92)),
    radial-gradient(circle at top right, rgba(196, 99, 122, 0.16), transparent 34%);
  box-shadow: var(--shadow-soft);
}

.vip-signup-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.vip-signup-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.vip-signup-copy p,
.vip-provider-section .center-heading p,
.vip-provider-card p {
  color: var(--text-mid);
  line-height: 1.7;
}

.signup-steps {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.signup-steps span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-weight: 800;
}

.signup-steps strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
}

.vip-signup-form {
  margin: 0;
  background: #fff;
}

.vip-provider-section {
  display: grid;
  gap: 1.3rem;
}

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

.vip-provider-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 35, 58, 0.08);
}

.vip-provider-card .provider-portrait {
  min-height: 150px;
  border-radius: 8px;
}

.vip-provider-card span {
  display: inline-block;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vip-provider-card h3 {
  margin: 0.35rem 0 0.45rem;
  color: var(--navy);
}

.program-example {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.example-intro,
.pricing-table-wrap,
.employer-box,
.example-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.example-intro,
.pricing-table-wrap,
.employer-box {
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.example-intro h3,
.pricing-table-wrap h3,
.employer-box h3,
.example-grid h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.example-intro p,
.example-disclaimer,
.example-grid li,
.employer-grid span {
  color: var(--text-mid);
  line-height: 1.7;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.example-grid article {
  padding: 1.5rem;
}

.example-grid ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.example-grid li::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--rose);
  font-weight: 800;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.pricing-table th,
.pricing-table td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pricing-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td {
  color: var(--text-mid);
  background: var(--white);
}

.employer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.employer-grid div {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border-radius: 6px;
  background: var(--cream);
}

.employer-grid strong {
  color: var(--navy);
}

.example-disclaimer {
  margin: 1rem 0 0;
  padding: 1rem;
  border-left: 4px solid var(--rose);
  background: var(--rose-pale);
}

.proof-band,
.why-section,
.comparison-section,
.faq-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.proof-band div,
.why-grid article,
.comparison-grid div,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 31, 61, 0.05);
}

.proof-band div {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
}

.proof-band strong {
  color: var(--navy);
}

.proof-band span {
  color: var(--text-mid);
  line-height: 1.55;
}

.why-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.why-section h2,
.comparison-section h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.why-section p,
.why-grid p,
.comparison-grid p,
.faq-list p {
  color: var(--text-mid);
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.why-grid article,
.comparison-grid div {
  padding: 1.35rem;
}

.why-grid h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.2rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.comparison-grid span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-card-grid-small {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.3rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1050px) {
  .hero-inner,
  .split-heading,
  .about,
  .contact,
  .conditions-hero {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-feature,
  .blog-grid,
  .portal-hero,
  .portal-step {
    grid-template-columns: 1fr;
  }

  .weight-hero {
    grid-template-columns: 1fr;
  }

  .weight-progress-animation {
    grid-template-columns: 1fr;
  }

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

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

  .service-grid,
  .story-grid,
  .condition-grid,
  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seo-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: 72px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 0.85rem;
  }

  .site-header.is-open .nav-dropdown {
    display: grid;
  }

  .site-header.is-open .dropdown-menu,
  .dropdown-menu {
    position: static;
    min-width: 0;
    display: grid;
    margin: 0.2rem 0 0.5rem 0.8rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .dropdown-menu a {
    padding: 0.55rem 0.85rem;
    background: var(--cream);
  }

  .hero-inner {
    padding: 4rem 1.2rem 6rem;
  }

  .section,
  .stories {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .service-grid,
  .provider-grid,
  .story-grid,
  .condition-grid,
  .seo-card-grid,
  .location-grid,
  .location-body,
  .motion-strip,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .motion-scene {
    min-height: 260px;
  }

  .condition-search-panel {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .condition-search-row,
  .condition-cta {
    grid-template-columns: 1fr;
  }

  .condition-cta,
  .insurance-panel,
  .vip-overview,
  .vip-benefits,
  .vip-signup-section,
  .vip-provider-grid,
  .weight-plan,
  .resource-grid,
  .medication-grid,
  .future-glp,
  .example-grid,
  .employer-grid,
  .proof-band,
  .why-section,
  .comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .condition-cta {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .dashboard-steps {
    grid-template-columns: 1fr;
  }

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

  .provider-portrait {
    min-height: 260px;
  }

  .vip-provider-card {
    grid-template-columns: 1fr;
  }

  .experience-card {
    right: 1rem;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-actions,
  .hero-stats {
    display: grid;
  }

  .trust-strip {
    justify-content: flex-start;
  }

  .motion-metrics {
    grid-template-columns: 1fr;
  }

  .motion-screen {
    inset: 18px;
  }

  .blog-balance-visual {
    grid-template-columns: 1fr;
  }

  .blog-balance-visual div {
    justify-self: center;
  }

  .portal-screenshot-grid {
    grid-template-columns: 1fr;
  }

  .portal-quick-actions {
    position: static;
  }

  .progress-points {
    grid-template-columns: 1fr;
  }
}

.page-visual {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  padding: 0 1.2rem;
}

.page-visual-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 35, 58, 0.09);
}

.page-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.page-visual-copy {
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.page-visual-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.page-visual-copy p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.7;
}

.visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.visual-points span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--navy);
  background: var(--rose-pale);
  font-size: 0.78rem;
  font-weight: 800;
}

.portal-image-grid {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portal-image-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(20, 35, 58, 0.08);
}

.portal-image-grid img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: contain;
  background: #f7f9fb;
}

.portal-image-grid figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 780px) {
  .page-visual-card,
  .portal-image-grid {
    grid-template-columns: 1fr;
  }

  .page-visual-card img {
    min-height: 260px;
  }
}
