*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #f9fafb;
  min-height: 100vh;
}

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

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

section {
  position: relative;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  backdrop-filter: none;
  background: transparent;
  transition:
    background-color 200ms ease-out,
    box-shadow 200ms ease-out,
    backdrop-filter 200ms ease-out;
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.05rem;
  gap: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-left: 1.2rem;
  cursor: pointer;
}

.logo-image {
  height: 84px;
  width: auto;
  display: block;
}

.main-nav {
  margin-left: 4.8rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  padding: 0;
  padding-left: 0;
  margin: 0;
  justify-content: center;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  color: #e5e7eb;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #a855f7);
  transition: width 200ms ease-out;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #22d3ee);
  color: #020617;
  box-shadow: 0 16px 35px rgba(34, 211, 238, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 45px rgba(129, 230, 217, 0.5);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

.btn-glass {
  background: rgba(15, 23, 42, 0.34);
  border-color: rgba(148, 163, 184, 0.6);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.btn-glass:hover {
  background: rgba(15, 23, 42, 0.7);
}

.btn-outline {
  border-color: rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.btn-link {
  border: 0;
  background: none;
  color: #38bdf8;
  font-weight: 500;
  cursor: pointer;
}

.header-cta {
  margin-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0;
  padding-right: 1.5rem;
}

.social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  transition:
    background 160ms ease-out,
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
}

.social-link:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(129, 140, 248, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.4);
}

.social-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Simple SVG-based icons encoded as data URIs */
.social-icon--instagram {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5' stroke='%23e5e7eb' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' stroke='%23e5e7eb' stroke-width='2'/%3E%3Ccircle cx='17' cy='7' r='1' fill='%23e5e7eb'/%3E%3C/svg%3E");
}

.social-icon--facebook {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 21V12.75H16L16.5 9.5H13.5V7.75C13.5 6.85 13.8 6.25 15.15 6.25H16.6V3.35C15.9 3.25 15 3.2 14.1 3.2C11.55 3.2 9.75 4.75 9.75 7.45V9.5H7V12.75H9.75V21H13.5Z' fill='%23e5e7eb'/%3E%3C/svg%3E");
}

.hero-follow-inline {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-follow-inline-text {
  margin: 0;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
}

.hero-follow-inline-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-primary-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.5);
}

.btn-primary-blue:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.65);
}

.site-header.header-scrolled {
  background-color: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
  backdrop-filter: none;
}

.site-header.header-scrolled .nav-list a {
  color: #0f172a;
}

.site-header.header-scrolled .btn-ghost {
  color: #0f172a;
}

.site-header.header-scrolled .header-cta {
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

.section-hero {
  position: relative;
  min-height: clamp(640px, 95vh, 860px);
  display: flex;
  align-items: center;
  color: #0f172a;
  overflow: hidden;
  background: #0b1220;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("./assets/newbackground.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay::before,
.hero-overlay::after {
  content: "";
  position: absolute;
  inset-inline: 0;
}

.hero-overlay::before {
  top: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top left,
    rgba(15, 23, 42, 0.45),
    rgba(15, 23, 42, 0.25)
  );
}

.hero-overlay::after {
  bottom: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(248, 250, 252, 0.55), transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  padding-block: 5.5rem;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.04;
  margin: 0 0 1rem;
  color: #ffffff;
  font-weight: 800;
}

.accent-text {
  background: linear-gradient(120deg, #22d3ee, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-body {
  color: #e5e7eb;
  max-width: 35rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.hero-body--secondary {
  margin-top: 0.65rem;
  margin-bottom: 1.75rem;
  color: rgba(229, 231, 235, 0.92);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at top left,
    rgba(34, 197, 94, 0.18),
    rgba(15, 23, 42, 0.5)
  );
  border: 1px solid rgba(74, 222, 128, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.eyebrow-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.9);
  margin-right: 0.55rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.chip {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  color: #f9fafb;
  position: relative;
}

.chip::before {
  content: "✓";
  margin-right: 0.35rem;
  color: #4ade80;
  font-size: 0.8rem;
}

.btn-glass {
  background: rgba(15, 23, 42, 0.34);
  border-color: rgba(148, 163, 184, 0.6);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.btn-arrow {
  margin-left: 0.4rem;
  font-size: 0.9em;
  transition: transform 180ms ease-out;
}

.btn-glass:hover .btn-arrow {
  transform: translateY(3px);
}

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

.hero-bottom-badges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.75rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-start;
  padding-inline: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  background: rgba(15, 23, 42, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  backdrop-filter: blur(16px);
  white-space: nowrap;
}

.hero-badge::before {
  content: "✓";
  color: #4ade80;
  font-size: 0.85rem;
}

.hero-badge--slot::before {
  content: "●";
  color: #60a5fa;
}

.hero-badge--slot {
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.7)
  );
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
}

/* Remove borders from glass cards in Science and Why Us sections */
.science-media .glass,
.why-media .glass {
  border: none;
}

.hero-card {
  padding: 1rem 1.35rem;
  border-radius: 1.25rem;
}

.hero-card--light {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.4);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  color: #0f172a;
}

.hero-card--light .hero-card-subtitle,
.hero-card--light .hero-card-text {
  color: #4b5563;
}

.hero-card-title {
  font-size: 0.95rem;
  margin: 0.1rem 0 0;
}

.hero-card-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.hero-card-label {
  font-size: 0.8rem;
  margin: 0 0 0.15rem;
}

.hero-card-text {
  margin: 0;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.section {
  padding-block: 4.75rem;
}

.section-white {
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #a5b4fc;
  margin-bottom: 0.55rem;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.gradient-text-right {
  background: linear-gradient(90deg, #22d3ee, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 2.05rem;
}

.section-subtitle {
  margin: 0;
  color: #4b5563;
  max-width: 36rem;
  margin-inline: auto;
}

.section-trust {
  padding-block: 2.75rem;
  background: #ffffff;
}

.section-trust .section-kicker {
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.trust-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.95rem 1rem;
  background: #f9fafb;
}

.trust-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #cbd5f5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step-card {
  border-radius: 1.4rem;
  padding: 1.7rem 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.step-icon::before {
  font-size: 1.25rem;
}

.step-icon--consult::before {
  content: "📹";
}

.step-icon--protocol::before {
  content: "📄";
}

.step-icon--pharmacy::before {
  content: "⚗️";
}

.step-icon--delivery::before {
  content: "📦";
}

.step-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  color: #a5b4fc;
  margin: 0 0 0.4rem;
}

.step-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.filter-chips {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.75rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.chip-pill {
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  background: transparent;
  border: 0;
  color: #cbd5f5;
  cursor: pointer;
}

.chip-active {
  background: linear-gradient(135deg, #22d3ee, #a855f7);
  color: #020617;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.9rem;
}

.treatment-card {
  border-radius: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.treatment-media {
  position: relative;
  overflow: hidden;
}

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

.treatment-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.treatment-tag-row--overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  display: flex;
  justify-content: space-between;
}

.treatment-body {
  padding: 1.4rem 1.4rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.pill {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #0f172a;
}

.price-pill {
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.35);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.16);
}

.price-pill--highlight {
  background: #ffffff;
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.35);
}

.treatment-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a5b4fc;
  margin: 0;
}

.treatment-card h3 {
  margin: 0.1rem 0 0.1rem;
  font-size: 1.1rem;
}

.treatment-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.2rem;
  gap: 0.6rem;
}

.card-actions .btn {
  flex: 1;
}

.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 160ms ease-out,
    box-shadow 160ms ease-out,
    transform 160ms ease-out;
}

.btn-secondary-ghost:hover {
  background: #f9fafb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.treatment-card.is-filtered-out {
  display: none;
}

.science-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.science-copy .btn-primary-blue {
  margin-top: 1.9rem;
}

.science-copy .section-subtitle {
  margin-inline: 0;
  max-width: 40rem;
  text-align: left;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 2.1rem 0 1.9rem;
}

.stat dt {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat dd {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.science-media .media-card {
  padding: 1.75rem 1.5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6rem;
}

.media-image {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  display: block;
}

.doctor-image {
  border-radius: 1.25rem;
  width: 100%;
  height: auto;
  display: block;
  margin: 2.3rem auto 0.9rem;
  max-width: 460px;
}

.why-media .media-card {
  padding: 1.9rem 1.8rem 1.8rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 5.5rem;
}

/* Remove grey borders from media cards in Science and Why Us */
.science-media .media-card,
.why-media .media-card {
  border: none;
}

.media-label {
  font-weight: 600;
  margin: 0 0 0.1rem;
  text-align: center;
  color: #ffffff;
}

.media-text {
  margin: 0;
  font-size: 0.9rem;
  color: #e5e7eb;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.benefit-card {
  border-radius: 1.3rem;
  padding: 1.25rem 1.2rem;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.benefit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.billing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 1.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.toggle-pill {
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  font-size: 0.82rem;
  border: 0;
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
}

.toggle-active {
  background: #22c55e;
  color: #022c22;
}

.pill-save {
  margin-left: 0.4rem;
  color: #bbf7d0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.9rem;
  margin-top: 2.4rem;
}

.pricing-card {
  border-radius: 1.5rem;
  padding: 1.7rem 1.6rem 1.6rem;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-card-featured {
  background: #ecfdf5;
  border-color: rgba(45, 212, 191, 0.7);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.45);
  transform: translateY(-4px);
}

.badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
}

.pricing-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.price {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 500;
  color: #9ca3af;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #111827;
}

.feature-list li::before {
  content: "✔";
  margin-right: 0.45rem;
  color: #4ade80;
}

.pricing-footnote {
  margin-top: 2.1rem;
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
}

.portal-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.portal-modal.is-open {
  display: flex;
}

.portal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
}

.portal-dialog {
  position: relative;
  z-index: 1;
  width: min(480px, 100% - 2.5rem);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  padding: 2.25rem 2.2rem 2rem;
}

.portal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
}

.portal-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.portal-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.1rem;
}

.portal-label {
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

.portal-title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.portal-subtitle {
  margin: 0 0 1.6rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.portal-form {
  display: grid;
  gap: 0.9rem;
}

.portal-field {
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.portal-field input {
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.portal-primary {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.portal-secondary {
  margin-top: 0.55rem;
  width: 100%;
  justify-content: center;
  background: #f9fafb;
  border-color: rgba(148, 163, 184, 0.7);
  color: #111827;
}

.portal-secondary:hover {
  background: #edf2ff;
}

.portal-footer {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.portal-link {
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  color: #2563eb;
  cursor: pointer;
}

.portal-link--muted {
  color: #9ca3af;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.testimonial-card {
  border-radius: 1.4rem;
  padding: 1.5rem 1.4rem;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.testimonial-google-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.testimonial-google-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: radial-gradient(
    circle at 30% 30%,
    #4285f4,
    #34a853,
    #fbbc05,
    #ea4335
  );
}

.testimonial-google-title {
  margin: 0;
  font-weight: 600;
}

.testimonial-google-rating {
  margin: 0.1rem 0 0;
  font-size: 0.86rem;
  color: #4b5563;
}

.testimonial-google-rating span {
  margin-left: 0.3rem;
}

.testimonial-quote {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  color: #111827;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.82rem;
  color: #9ca3af;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  color: #111827;
}

.testimonial-map-wrapper {
  margin-top: 2.2rem;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(209, 213, 219, 0.8);
  max-width: 260px;
  margin-inline: auto;
}

.testimonial-map {
  width: 260px;
  height: 260px;
  border: 0;
}

.testimonial-map-meta {
  padding: 0.7rem 0.9rem 0.8rem;
  background: #ffffff;
  text-align: left;
  font-size: 0.85rem;
}

.testimonial-map-meta a {
  display: inline-block;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.testimonial-map-meta a:hover {
  text-decoration: underline;
}

.testimonial-map-meta p {
  margin: 0.25rem 0 0;
  color: #4b5563;
}

@media (max-width: 640px) {
  .testimonial-map-wrapper {
    max-width: 100%;
  }

  .testimonial-map {
    width: 100%;
    height: 220px;
  }
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #f9fafb;
}

.faq-trigger {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 0;
  background: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 650;
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 160ms ease-out;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1rem 0.85rem;
  font-size: 0.9rem;
  color: #111827;
  display: none;
}

.faq-panel.open {
  display: block;
}

.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: #4b5563;
}

.consultation-form-card {
  padding: 1.8rem 1.7rem 1.7rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.consultation-intro {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.consultation-team-images {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.consultation-doctor-image {
  border-radius: 1rem;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.consultation-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
}

label {
  color: #111827;
}

input,
select,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.6rem 0.7rem;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.2rem;
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.35);
  color: #0f172a;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2716%27%20height%3D%2716%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M5.5%207.5L10%2012l4.5-4.5%27%20stroke%3D%27%232563eb%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px 16px;
}

select option {
  color: #0f172a;
}

.form-field select {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%2716%27%20height%3D%2716%27%20viewBox%3D%270%200%2020%2020%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M5.5%207.5L10%2012l4.5-4.5%27%20stroke%3D%27%232563eb%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 16px 16px;
}

textarea {
  resize: vertical;
}

input[type="date"],
input[type="time"] {
  padding-block: 0.7rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.85);
  outline-offset: 1px;
}

.form-footnote {
  margin: 0;
  font-size: 0.78rem;
  color: #9ca3af;
}

.form-status-message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.form-status-success {
  color: #15803d;
}

.form-status-error {
  color: #b91c1c;
}

.section-cta-strip {
  padding-block: 2.5rem;
  background: #ffffff;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(209, 213, 219, 0.7);
}

.cta-strip-inner h2 {
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}

.cta-strip-inner p {
  margin: 0;
  color: #111827;
  font-size: 0.95rem;
}

.site-footer {
  padding-block: 3.2rem 2rem;
  background: #ffffff;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: flex-start;
}

.footer-brand p {
  margin: 0.9rem 0 1.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.newsletter-input {
  display: flex;
  gap: 0.6rem;
}

.newsletter-input input {
  flex: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.7rem;
}

.footer-column h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: #111827;
  margin-left: -0.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-logo {
  height: 112px;
  width: auto;
  display: block;
}

.site-footer .logo {
  margin-left: 0;
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: #6b7280;
}

.footer-disclaimer p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 420ms ease-out,
    transform 420ms ease-out;
}

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding-block: 4.5rem 3.8rem;
  }

  .hero-bottom-badges {
    position: static;
    width: 100%;
    padding-inline: 0;
    margin-top: 1.75rem;
    justify-content: flex-start;
  }

  .hero-follow-inline {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 1.2rem;
  }

  .hero-follow {
    position: static;
    margin-top: 1.4rem;
    align-self: flex-start;
  }

  .treatment-grid,
  .science-grid,
  .why-grid,
  .consultation-grid,
  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 124px;
  }

  .site-header {
    padding-top: 1.2rem;
    min-height: 96px;
  }

  .header-inner {
    padding-block: 1.1rem;
    justify-content: center;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-list {
    position: absolute;
    inset-inline: 0.75rem;
    top: 100%;
    margin-top: 0.75rem;
    padding: 1.5rem 1.5rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.45);
    backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0.85rem;
    transform-origin: top;
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 150ms ease-out,
      transform 150ms ease-out;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: 0.75rem;
  }

  .header-social {
    display: none;
  }

  .logo-image {
    height: 90px;
  }

  .site-header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  /* Mobile hero adjustments */
  .hero-inner {
    text-align: center;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 4.5rem 3.8rem;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy h1,
  .hero-copy .hero-body,
  .hero-copy .hero-body--secondary {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    background-position: center top;
    background-size: cover;
  }

  .hero-follow-inline {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    margin-top: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-bottom-badges {
    justify-content: center;
    text-align: center;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .footer-brand .logo,
  .footer-logo {
    margin-inline: auto;
  }

  .footer-columns .footer-column:last-child h3 {
    margin-left: 0;
    text-align: center;
  }

  .footer-columns .footer-column:last-child ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns .footer-column:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-columns .footer-column:last-child li {
    text-align: center;
  }

  .footer-columns .footer-column:last-child .footer-social-row {
    justify-content: center;
    width: 100%;
  }

  .faq-trigger {
    font-size: 0.98rem;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-cta-strip .btn {
    align-self: center;
  }

  .nav-toggle-line {
    background: #000000;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, 640px);
  }

  .section {
    padding-block: 3.5rem;
  }

  .trust-grid,
  .steps-grid,
  .treatment-grid,
  .stat-grid,
  .why-list,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    padding: 1.1rem 1.15rem;
  }

  .logo-image {
    height: 90px;
  }

  .hero-bottom-badges {
    gap: 0.45rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.42rem 0.65rem;
    white-space: normal;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-input {
    flex-direction: column;
  }

  .footer-column ul {
    justify-items: center;
    text-align: center;
  }

  .pricing-card-featured {
    transform: none;
  }
}
