
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
:root {
  --page-bg: #edf3fa;
  --page-bg-soft: #e9eff7;
  --page-bg-alt: #ecf1f8;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #edf3fa 0%, #eef4fb 52%, #f2eef9 100%);
  color: #1a1a1a;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; }
video, iframe { max-width: 100%; }
iframe { display: block; }

/* ─── NAVBAR ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 85px;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.55rem;
  color: #f9fafb; text-decoration: none; display: flex; align-items: center; gap: 4px; letter-spacing: -0.3px;
}
.nav-center { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.875rem; font-weight: 400; color: #e5e7eb; text-decoration: none;
  padding: 6px 12px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; transition: background .2s;
}
.nav-link:hover { background: rgba(248,250,252,.08); color: #f9fafb; }
.nav-link svg { width: 10px; height: 10px; opacity: .7; }
.nav-item { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(15,23,42,.18);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown-link {
  display: block;
  padding: 8px 16px;
  font-size: .85rem;
  color: #4b5563;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown-link:hover {
  background: #f3f4f6;
  color: #111827;
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: #f9fafb;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(15,23,42,0.98);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 18px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-nav-links {
  display: grid;
  gap: 8px;
}
.mobile-nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: .92rem;
  padding: 10px 12px;
  border-radius: 8px;
}
.mobile-nav-link:hover {
  color: #f9fafb;
  background: rgba(255,255,255,.08);
}
/* Mobile: Services accordion (hover dropdown is hidden ≤768px) */
.mobile-nav-details {
  border-radius: 8px;
}
.mobile-nav-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-summary::-webkit-details-marker {
  display: none;
}
.mobile-nav-summary::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(229,231,235,.65);
  border-bottom: 2px solid rgba(229,231,235,.65);
  transform: rotate(45deg);
  margin-top: -4px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.mobile-nav-details[open] .mobile-nav-summary::after {
  transform: rotate(225deg);
  margin-top: 2px;
}
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0 10px 8px;
  margin: 0 0 0 10px;
  border-left: 2px solid rgba(255,255,255,.1);
}
.mobile-nav-sublink {
  color: #cbd5e1;
  text-decoration: none;
  font-size: .84rem;
  padding: 9px 12px;
  border-radius: 6px;
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-sublink:hover,
.mobile-nav-sublink:active {
  color: #f9fafb;
  background: rgba(255,255,255,.06);
}
body.mobile-menu-open .mobile-nav-panel { display: block; }
body.mobile-menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.mobile-menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.mobile-menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn-book-demo {
  background: linear-gradient(135deg, #f0d8d0 0%, #e8d0f0 100%);
  border: none; border-radius: 50px; padding: 9px 22px;
  font-size: .875rem; font-weight: 500; color: #111827; cursor: pointer; transition: opacity .2s, transform .2s;
  text-decoration: none;
}
.btn-book-demo:hover { opacity: .85; transform: translateY(-1px); }
.badge {
  text-align: left !important;
}
/* ─── HERO ─── */
.hero-section {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  position: relative; overflow: hidden; padding-top: 64px;
  background: #0f172a;
}
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 42%, rgba(15, 23, 42, 0.62) 100%),
    radial-gradient(ellipse 85% 70% at 50% 40%, transparent 0%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
  .hero-bg-layer {
    background: url('../img/herobg.avif') center 92% / cover no-repeat;
  }
}
.hero-mounds { position: absolute; bottom: 0; left: 0; right: 0; height: 52%; pointer-events: none; }
.mound { position: absolute; bottom: -60px; border-radius: 50%; }
.mound-1 {
  width: 100%; height: 100%; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, #f8f9fb 0%, #eceef2 40%, #e4e6ea 70%, transparent 100%);
}
.mound-2 {
  width: 900px; height: 500px; left: 50%; transform: translateX(-55%);
  background: radial-gradient(ellipse at 60% 30%, #f2f4f8 20%, #e8eaee 60%, transparent 100%);
}
.mound-3 {
  width: 800px; height: 460px; right: -100px; bottom: -80px;
  background: radial-gradient(ellipse at 40% 30%, #f0f2f6 20%, #e6e8ec 60%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 500; line-height: 1.08; color: #f8fafc; letter-spacing: -1px; margin-bottom: 20px;
  text-shadow: 0 2px 28px rgba(15, 23, 42, 0.45);
  opacity: 0; transform: translateY(28px); animation: fadeUp .9s .15s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-sub {
  font-size: 1rem; font-weight: 400; color: #e2e8f0; line-height: 1.6;
  max-width: 780px; margin: 0 auto 36px;
  text-shadow: 0 1px 18px rgba(15, 23, 42, 0.4);
  opacity: 0; transform: translateY(20px); animation: fadeUp .9s .3s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-cta {
  display: inline-block; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.98);
  border-radius: 50px; padding: 14px 36px; font-size: .9rem; font-weight: 500; color: #0f172a;
  cursor: pointer; text-decoration: none; box-shadow: 0 4px 24px rgba(0,0,0,.2);
  transition: box-shadow .25s, transform .25s, background .25s;
  opacity: 0; animation: fadeUp .9s .45s cubic-bezier(.22,.68,0,1.2) forwards;
}
.hero-cta:hover { box-shadow: 0 10px 36px rgba(0,0,0,.28); transform: translateY(-2px); background: #fff; color: #0f172a; }
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ─── LOGOS ─── */
.logos-strip { background: #e8eaee; padding: 40px 0; overflow: hidden; }
.logos-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; overflow: hidden; }
.logos-row { overflow: hidden; position: relative; padding: 12px 0; }
.logos-track {
  display: flex; align-items: center; gap: 48px; width: max-content;
}
/* Row 1: left to right */
.logos-row.row1 .logos-track {
  animation: marquee-ltr 18s linear infinite;
}
/* Row 2: right to left */
.logos-row.row2 .logos-track {
  animation: marquee-rtl 35s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
/* LTR: track starts left, moves to 0 so content slides left→right */
@keyframes marquee-ltr { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
/* RTL: track moves left so content slides right→left */
@keyframes marquee-rtl { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-item {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  padding: 0 8px;
}
.logo-item img {
  max-height: 66px; width: auto; max-width: 200px; object-fit: contain;
  border-radius: 10px;
  filter: none; opacity: 1; transition: transform .25s;
}
.logo-item:hover img { transform: translateY(-1px); }

/* ─── CHALLENGE SECTION ─── */
.challenge-section {
  padding: 0;
  background: #fafafa;
  position: relative;
  /* overflow other than visible on an ancestor breaks sticky vs the viewport */
  overflow: visible;
}
/* Scroll-driven accordion: fixed scroll length + sticky content */
.challenge-scroll-track {
  position: relative;
  height: 400vh;
  min-height: 400vh;
}
.challenge-scroll-sticky {
  position: sticky;
  top: 85px;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0;
  box-sizing: border-box;
}
.challenge-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 70%, rgba(255,200,190,.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 25%, rgba(255,230,200,.4) 0%, transparent 50%);
}
.challenge-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: auto 1fr 1.2fr 1fr;
  gap: 48px 32px;
  align-items: center;
  position: relative; z-index: 1;
}
.challenge-left { display: flex; align-items: center; justify-content: center; }
.dots-nav-pill {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 32px; padding: 14px 0;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.dots-nav-pill span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #d1d5db; display: block; transition: background .3s;
}
.dots-nav-pill span.on { background: #374151; }
.challenge-heading { display: flex; align-items: center; }
.challenge-heading .challenge-heading-title,
.challenge-heading-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}
.challenge-center { display: flex; justify-content: center; align-items: center; }
.ch-card {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.92);
  box-shadow: 0 12px 56px rgba(0,0,0,.08), 0 4px 20px rgba(0,0,0,.04);
  overflow: hidden;
 
  display: flex; align-items: center; justify-content: center;
  min-height: 420px; position: relative;
  width: 100%; max-width: 440px;
}
.ch-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 40% 50%, rgba(255,180,170,.2) 0%, transparent 55%);
  pointer-events: none;
}
.tooth-wrap { position: relative; z-index: 2; width: 100%; height: 372px; }
.ch-img {
  position: absolute; top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px; width: 400px; opacity: 0;
  transition: opacity .35s ease;
}
.ch-img.active { opacity: 1; }
.challenge-right { min-width: 0; }
.acc-item {
  border-bottom: 1px dotted #d1d5db;
  padding: 18px 0;
  cursor: default;
}
.acc-item:first-child { padding-top: 0; }
.acc-item:last-child { border-bottom: none; }
.acc-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.acc-title { font-size: 1.05rem; font-weight: 600; color: #4b5563; transition: color .25s; }
.acc-item.open .acc-title { color: #1a1a1a; }
.acc-chevron { width: 18px; height: 18px; flex-shrink: 0; color: #6b7280; transition: transform .3s, color .2s; }
.acc-item.open .acc-chevron { transform: rotate(180deg); color: #1a1a1a; }
.acc-body { overflow: hidden; max-height: 0; transition: max-height .4s ease, opacity .3s; opacity: 0; }
.acc-item.open .acc-body { max-height: 200px; opacity: 1; }
.acc-body p { font-size: .9rem; color: #6b7280; line-height: 1.7; padding-top: 10px; }
.acc-body strong { color: #1a1a1a; font-weight: 600; }

/* ─── 23K PRACTICES ─── */
.practices-section {
  padding: 80px 0 100px;
  background: #f0f3f8;
  text-align: center;
}
 .practices-container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.practices-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,.06), 0 10px 28px rgba(0,0,0,.04);
  padding-top: 80px; padding-bottom: 0px;  text-align: center;
}
.practices-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: #333;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
.practices-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  max-width: 68%;
  margin: 0 auto 40px;
}
/* Slider: 3 visible, gap between, center slide bigger */
.practice-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 24px;
  margin-bottom: 32px;
}

.practice-slider-track {
  display: flex;
  gap: 24px;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.practice-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  transform: scale(0.72);
  opacity: 0.45;
  filter: grayscale(0.35);
}
.practice-slide.active {
  transform: scale(1.25);
  z-index: 2;
  opacity: 1;
  filter: grayscale(0);
  box-shadow: 0 22px 64px rgba(0,0,0,.2);
}
.practice-slide img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 0 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c5cbd4;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  outline: none;
  padding: 0;
}
.slider-dot.active {
  background: #4b5563;
  transform: scale(1.25);
}

/* Keep CTA buttons after descriptive text/lists across pages */
.section-copy,
.int-copy {
  display: flex;
  flex-direction: column;
}
.section-copy .feature-list,
.int-copy .feature-list {
  order: 2;
}
.section-copy .btn-group,
.int-copy .btn-group,
.section-copy > .btn-secondary,
.int-copy > .btn-secondary {
  order: 3;
  margin-top: 28px;
}

/* ─── PRODUCTS ─── */
.products-section { padding: 110px 0; background: #f0f2f6; }
.eyebrow { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #9ca3af; display: block; margin-bottom: 12px; }
.prod-h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.5px; color: #1a1a1a;
}
.prod-sub { font-size: .95rem; color: #6b7280; line-height: 1.65; max-width: 480px; margin-top: 12px; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.pcard {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.03);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.pcard-top {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}
.pt1 { background: #f5f6f9; }
.pt2 { background: #f3f5f9; }
.pt3 { background: #f4f6f9; }
.pcard-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 4px 0 18px;
}
.pcard-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  display: block;
}
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,247,252,.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 28px 28px;
  opacity: 0;
  transition: opacity .25s ease;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard:hover .pcard-img,
.pcard:hover .pcard-title { opacity: 0; }
.pcard-overlay-text {
  font-size: .9rem;
  line-height: 1.5;
  color: #4b5563;
  text-align: center;
  margin: 0 0 20px;
  max-width: 260px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: #4b5563;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color .25s;
}
.pcard-btn::after {
  content: '›';
  font-size: 1rem;
}
.pcard-btn:hover { color: #111827; }
.pcard-bot { display: none; }
.prod-view-all-wrap {
  text-align: center;
  margin-top: 44px;
}
.prod-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.prod-view-all:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* ─── GLOBALLY TRUSTED ─── */
.global-section { padding: 110px 0; background: linear-gradient(160deg, #eceef2 0%, #f0f2f6 100%); }
.globe-wrap {
  width: 600px; height: 600px; max-width: 90vw; max-height: 90vw; border-radius: 50%; position: relative; overflow: hidden;
  background: radial-gradient(circle at 38% 32%, rgba(210,232,248,.92) 0%, rgba(192,215,242,.78) 22%, rgba(172,200,238,.58) 42%, rgba(155,188,228,.38) 62%, rgba(195,208,228,.25) 82%, rgba(218,222,232,.15) 100%);
  box-shadow: inset -28px -18px 55px rgba(0,0,0,.07), inset 12px 12px 38px rgba(255,255,255,.5), 0 28px 75px rgba(0,0,0,.1);
}
.globe-grid {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 26px, rgba(100,150,200,.1) 26px, rgba(100,150,200,.1) 27px),
    repeating-linear-gradient(90deg, transparent, transparent 26px, rgba(100,150,200,.1) 26px, rgba(100,150,200,.1) 27px);
  animation: gscroll 22s linear infinite;
}
@keyframes gscroll { 0% { transform: translateX(0) translateY(0); } 100% { transform: translateX(27px) translateY(27px); } }
.globe-land { position: absolute; border-radius: 40%; background: rgba(140,185,155,.38); }
.gl1 { width: 140px; height: 85px; top: 28%; left: 12%; transform: rotate(-12deg); border-radius: 42% 60% 52% 42%; }
.gl2 { width: 95px; height: 65px; top: 18%; left: 50%; transform: rotate(8deg); border-radius: 52% 42% 62% 46%; }
.gl3 { width: 72px; height: 52px; top: 54%; left: 54%; border-radius: 46% 56% 42% 52%; }
.gl4 { width: 52px; height: 42px; top: 38%; left: 68%; transform: rotate(-6deg); border-radius: 50%; }
.globe-shine { position: absolute; top: 8%; left: 10%; width: 42%; height: 44%; background: radial-gradient(ellipse at center, rgba(255,255,255,.6) 0%, transparent 70%); border-radius: 50%; }
.gl-eyebrow { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #9ca3af; margin-bottom: 12px; display: block; }
.gl-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.5px; color: #1a1a1a; margin-bottom: 14px; }
.gl-sub { font-size: .92rem; color: #6b7280; line-height: 1.7; max-width: 440px; margin-bottom: 38px; }
.stat-row { display: flex; }
.stat-c { flex: 1; border: 1px solid #d1d5db; padding: 20px 20px; }
.stat-c:first-child { border-radius: 12px 0 0 12px; }
.stat-c:last-child { border-radius: 0 12px 12px 0; }
.stat-c + .stat-c { border-left: none; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.3rem; font-weight: 500; color: #1a1a1a; margin-bottom: 5px; }
.stat-l { font-size: .8rem; color: #6b7280; display: flex; align-items: center; gap: 4px; }
.stat-l svg { width: 11px; height: 11px; }

/* ─── PROVIDERS ─── */
.providers-section { padding: 0; background: #f0f2f6; }
.provider-scroll-track {
  position: relative;
  height: 300vh;
  min-height: 300vh;
}
.provider-scroll-sticky {
  position: sticky;
  top: 85px;
  min-height: calc(100vh - 85px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0;
  box-sizing: border-box;
}
.prov-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.5px; color: #1a1a1a; text-align: center; margin-bottom: 90px; }
.prov-row { display: flex; align-items: center; gap: 80px; margin-bottom: 80px; }
.prov-row.rev { flex-direction: row-reverse; }
.prov-text { flex: 1; }
.prov-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; margin-bottom: 10px; color: #1a1a1a; }
.prov-text p { font-size: .9rem; color: #6b7280; line-height: 1.72; margin-bottom: 14px; }
.prov-text ul { list-style: none; padding: 0; margin-bottom: 22px; }
.prov-text ul li { font-size: .9rem; color: #6b7280; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.prov-text ul li::before { content: '•'; color: #e8a598; font-size: 1rem; line-height: 1.5; }
.btn-lm {
  display: inline-flex; align-items: center; background: rgba(255,255,255,.8); border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px; padding: 11px 24px; font-size: .875rem; font-weight: 500; color: #1a1a1a;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-lm:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.1); color: #1a1a1a; }
.prov-vis { flex: 0 0 520px; position: relative; height: 360px; }
.pv-line {
  position: absolute; width: 1px; left: 50%; top: 0; bottom: 0;
  background: radial-gradient(circle at 50% 40%, rgba(232,165,152,.3), transparent 70%);
}
.pv-c {
  position: absolute; border-radius: 50%; background: #fff;
  box-shadow: 0 14px 40px rgba(15,23,42,.25);
  overflow: hidden;
}
.pv-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pv-dot {
  border: 4px solid rgba(255,255,255,.9);
  cursor: pointer;
  transition: top .45s cubic-bezier(.22,.68,0,1.15), left .45s cubic-bezier(.22,.68,0,1.15), right .45s cubic-bezier(.22,.68,0,1.15), transform .45s cubic-bezier(.22,.68,0,1.15), box-shadow .3s, border-color .3s, opacity .3s;
}
.pv-dot.pv-center {
  width: 220px; height: 220px;
  left: 50%; top: 52%; transform: translate(-50%, -40px);
}
.pv-dot.pv-left {
  width: 110px; height: 110px;
  left: 0%; top: 64%; transform: translateY(-50%);
}
.pv-dot.pv-right {
  width: 110px; height: 110px;
  right: 6%; top: 18%;
}
.pv-dot.pv-center::after {
  content: 'Built For Every Provider';
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 500; color: #f9fafb;
  text-shadow: 0 2px 8px rgba(15,23,42,.6);
  white-space: nowrap;
}
.pv-dot.active { border-color: #e8a598; box-shadow: 0 22px 60px rgba(15,23,42,.35); }

/* ─── CASES ─── */
.cases-section { padding: 110px 0; background: #eaecf0; }
.cases-section .container { max-width: 1320px; padding: 0 40px; }
.cases-h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; letter-spacing: -0.5px; text-align: center; margin-bottom: 12px; }
.cases-sub { text-align: center; color: #6b7280; font-size: .95rem; line-height: 1.65; max-width: 500px; margin: 0 auto 58px; }
.cases-row { display: flex; gap: 32px; align-items: stretch; justify-content: space-between; }
.c-card { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; opacity: 1; will-change: transform, opacity; transition: transform .7s cubic-bezier(.22,.68,0,1.15), opacity .7s ease; }
.c-card.center-c { flex: 0 0 48%; height: 440px; z-index: 2; }
.c-card.side-c { flex: 0 0 26%; height: 410px; z-index: 1; opacity: .9; }
.c-card.side-c.left-c { transform: perspective(1200px) rotateY(14deg) scale(.9); }
.c-card.side-c.right-c { transform: perspective(1200px) rotateY(-14deg) scale(.9); }
.c-card:hover { transform: scale(1.02) !important; opacity: 1 !important; }
.c-card .c-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.c-bg { position: absolute; inset: 0; }
.cbg1 { background: linear-gradient(145deg, #1e2535 0%, #0e1525 100%); }
.cbg2 { background: linear-gradient(145deg, #2a1e35 0%, #1a0e28 100%); }
.cbg3 { background: linear-gradient(145deg, #1e2a25 0%, #0e1c18 100%); }
.c-person { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.c-person span { font-size: 8rem; opacity: .55; filter: grayscale(1) brightness(.55); }
.c-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.08) 55%, transparent 100%); }
.c-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.c-content h4 { font-size: .98rem; font-weight: 500; color: #fff; margin-bottom: 14px; line-height: 1.4; }
.c-badge {
  position: absolute; top: 18px; right: 18px; z-index: 3; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.btn-rd { background: rgba(255,255,255,.95); border: none; border-radius: 50px; padding: 9px 22px; font-size: .82rem; font-weight: 500; color: #1a1a1a; cursor: pointer; font-family: 'Inter'; }
.case-caption { text-align: center; font-size: .88rem; color: #6b7280; line-height: 1.72; max-width: 480px; margin: 28px auto 0; }

/* ─── CLINICIANS ─── */
.clin-section { padding: 160px 0 40px; background: #f0f2f6; text-align: center; }

/* ─── FOOTER CTA ─── */
.ftr-top {
  background: rgba(255, 255, 255, .45);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .75);
  padding: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fcta-section {
  position: relative;
  padding: 80px 0 0;
  background: #eef0f4;
  overflow: hidden;
}

@keyframes waveFloat {
  0% { transform: translateY(32px); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(32px); }
}
.fcta-card {
  background: rgba(255,255,255,.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 28px; border: 1px solid rgba(255,255,255,.8); box-shadow: 0 8px 50px rgba(0,0,0,.06);
  padding: 72px 40px; text-align: center; max-width: 680px; margin: 0 auto;
}
.fcta-card .ey { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #9ca3af; margin-bottom: 14px; display: block; }
.fcta-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.5px; color: #1a1a1a; margin-bottom: 14px; }
.fcta-card p { font-size: .95rem; color: #6b7280; line-height: 1.65; margin-bottom: 30px; max-width: 460px; margin-left: auto; margin-right: auto; }
.btn-demo2 {
  background: linear-gradient(135deg, rgba(232,196,188,.72) 0%, rgba(212,196,232,.72) 100%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 50px; padding: 14px 40px;
  font-size: .95rem; font-weight: 500; color: #1a1a1a; cursor: pointer; font-family: 'Inter'; transition: transform .25s, box-shadow .25s;
}
.btn-demo2:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,160,180,.3); }

.clin-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.45; color: #4b5563;
}
.word-cycle {
  display: inline-block; position: relative; vertical-align: bottom;
  min-width: 180px; height: 1.2em; overflow: hidden;
}
.word-cycle .word {
  position: absolute; left: 0; right: 0;
  color: #e8a598; font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0; transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22,.68,0,1.2);
  white-space: nowrap;
}
.word-cycle .word.active { opacity: 1; transform: translateY(0); }
.word-cycle .word.exit { opacity: 0; transform: translateY(-100%); }

.fcta-card {
  background: rgba(255,255,255,.5); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 28px; border: 1px solid rgba(255,255,255,.8); box-shadow: 0 8px 50px rgba(0,0,0,.06);
  padding: 72px 40px; text-align: center; max-width: 680px; margin: 0 auto;
}
.fcta-card .ey { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #9ca3af; margin-bottom: 14px; display: block; }
.fcta-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -.5px; color: #1a1a1a; margin-bottom: 14px; }
.fcta-card p { font-size: .95rem; color: #6b7280; line-height: 1.65; margin-bottom: 30px; max-width: 460px; margin-left: auto; margin-right: auto; }
.btn-demo2 {
  background: linear-gradient(135deg, rgba(232,196,188,.72) 0%, rgba(212,196,232,.72) 100%);
  border: 1px solid rgba(255,255,255,.6); border-radius: 50px; padding: 14px 40px;
  font-size: .95rem; font-weight: 500; color: #1a1a1a; cursor: pointer; font-family: 'Inter'; transition: transform .25s, box-shadow .25s;
}
.btn-demo2:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,160,180,.3); }

/* ─── FOOTER ─── */
.site-footer { background: #eef0f4; padding: 0; }
.ftr-links {
  padding: 64px 60px 56px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.fc h5 { font-size: .82rem; font-weight: 600; color: #111827; margin-bottom: 18px; }
.fc a { display: block; font-size: .82rem; color: #6b7280; text-decoration: none; margin-bottom: 11px; transition: color .2s; line-height: 1.4; }
.fc a:hover { color: #1a1a1a; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid #d1d5db; background: transparent;
  color: #6b7280; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .2s, color .2s;
}
.socials a:hover { border-color: #9ca3af; color: #1a1a1a; }
.ftr-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 60px;
  gap: 60px;
  background: #171f33;
  border-radius: 24px;
}
.ftr-signature { flex: 0 0 auto; }
.ftr-sig-svg { width: 260px; height: auto; display: block; }
.ftr-subscribe { flex: 0 0 420px; max-width: 100%; }
.ftr-subscribe .sb-h { font-size: 1.05rem; font-weight: 600; color: #e5e7eb; margin-bottom: 6px; }
.ftr-subscribe .sb-p { font-size: .875rem; color: #9ca3af; line-height: 1.6; margin-bottom: 18px; }
.email-row {
  display: flex;
  align-items: center;
  background: rgba(15,23,42,.85);
  border: 1px solid rgba(148,163,184,.6);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
}
.email-row input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: .875rem;
  color: #e5e7eb;
  font-family: 'Inter';
  padding: 6px 0;
}
.email-row input::placeholder { color: #64748b; }
.email-row button {
  background: #e5e7eb;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #020617;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.email-row button:hover {
  background: #f9fafb;
  color: #020617;
}
.email-row button svg { width: 15px; height: 15px; }
.sub-note { font-size: .72rem; color: #9ca3af; margin-top: 10px; }
.sub-note a { color: #e5e7eb; text-decoration: underline; }
.ftr-bottom {
  border-top: 1px solid rgba(0,0,0,.1); padding: 22px 60px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .76rem; color: #9ca3af;
}
.ftr-bottom a { color: #9ca3af; text-decoration: none; transition: color .2s; }
.ftr-bottom a:hover { color: #1a1a1a; }
.ftr-legal { display: flex; gap: 0; align-items: center; }
.ftr-legal a { padding: 0 12px; border-right: 1px solid #d1d5db; line-height: 1; }
.ftr-legal a:last-child { border-right: none; padding-right: 0; }

/* ─── SCROLL REVEAL ─── */
.sr {  transform: translateY(38px); transition: opacity .75s ease, transform .75s ease; }
.sr.fl { transform: translateX(-38px); }
.sr.fr { transform: translateX(38px); }
.sr.vis { opacity: 1; transform: translate(0,0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .challenge-scroll-track { height: 320vh; min-height: 320vh; }
  .challenge-scroll-sticky { padding: 80px 0 96px; }
  .challenge-wrap { grid-template-columns: 1fr; gap: 32px; }
  .challenge-left { order: 1; }
  .challenge-heading { order: 2; justify-content: center; }
  .challenge-heading .challenge-heading-title { text-align: center; }
  .challenge-center { order: 3; }
  .challenge-right { order: 4; }
  .ch-card { margin: 0 auto; max-width: 100%; min-height: 400px; }
  .tooth-wrap { height: 352px; }
  .dots-nav-pill { align-self: center; }
  .prov-row, .prov-row.rev { flex-direction: column; gap: 40px; }
  .prov-vis { height: 280px; flex: none; width: 100%; }
  .provider-scroll-track { height: 240vh; min-height: 240vh; }
  .provider-scroll-sticky { padding: 80px 0 96px; }
  .cases-row { flex-direction: column; }
  .c-card.side-c { transform: none !important; flex: 0 0 auto; width: 100%; max-width: 400px; }
  .ftr-links { grid-template-columns: repeat(2,1fr); padding: 40px 24px; }
  .ftr-mid { flex-direction: column; align-items: flex-start; padding: 40px 24px; }
  .ftr-subscribe { flex: none; width: 100%; }
  .practices-card { padding: 40px 28px 36px; }
  .practices-sub { max-width: 90%; margin-bottom: 32px; }
  .practice-slider-track { gap: 24px; justify-content: center; }
  .practice-slide { flex: 0 0 calc((100% - 48px) / 3); max-width: none; opacity: 0.45; }
  .practice-slide.active { opacity: 1; }
  .practice-slide img { height: auto; max-height: 260px; object-fit: contain; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .dots-nav-pill {
    display: none;
  }
  .hero-section {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 72px;
    justify-content: center;
  }
  /* Same fixed slot: images cross-fade; no horizontal track shift */
  .practice-slider-wrap {
    overflow: hidden;
    padding: 0 12px;
  }
  .practice-slider-track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    gap: 0;
    align-items: stretch;
    justify-items: stretch;
    padding-bottom: 0;
    transition: none;
  }
  .practice-slider-wrap .practice-slide:nth-child(n + 6) {
    display: none !important;
  }
  .practice-slider-wrap .practice-slide {
    grid-area: 1 / 1;
    flex: none;
    width: 100%;
    max-width: none;
    transform: none;
    filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.55s step-end;
    box-shadow: none;
  }
  .practice-slider-wrap .practice-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: none;
    box-shadow: none;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s step-start;
  }
  .practice-slider-wrap .practice-slide img { max-height: none; }
  .hero-content { padding: 0 16px; }
  .hero-h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.14;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
  }
  .hero-sub {
    max-width: 100%;
    font-size: .96rem;
    line-height: 1.65;
    margin: 0 auto 24px;
  }
  .hero-cta { padding: 12px 24px; font-size: .86rem; }
  .site-nav { padding: 0 18px; }
  .btn-book-demo { display: none; }
  .nav-center { display: none; }
  .nav-toggle { display: inline-flex; }
  .c-card.center-c { flex: 0 0 auto; width: 100%; max-width: 400px; }
  .stat-row { flex-direction: column; }
  .stat-c:first-child { border-radius: 12px 12px 0 0; }
  .stat-c:last-child { border-radius: 0 0 12px 12px; border-left: 1px solid #d1d5db; border-top: none; }
  .stat-c + .stat-c { border-left: 1px solid #d1d5db; border-top: none; }
  .globe-wrap { width: 260px; height: 260px; }
  .ftr-links { grid-template-columns: repeat(2,1fr); padding: 32px 20px; }
  .ftr-mid { padding: 32px 20px; }
  .ftr-bottom { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .word-cycle { min-width: 140px; }
  .practices-card { padding: 36px 20px 32px; border-radius: 20px; }
  .practices-h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); margin-bottom: 14px; }
  .practices-sub { max-width: 100%; margin-bottom: 24px; font-size: .9rem; }
  .prod-grid { grid-template-columns: 1fr; gap: 20px; }
  .pcard-top { height: 420px; }
  .pcard-overlay-text { font-size: .85rem; }
  /* Technology at True Dental — stack nicely on mobile */
  .providers-section { padding: 0; }
  .prov-h2 { margin-bottom: 48px; }
  .prov-row { gap: 32px; margin-bottom: 48px; }
  .prov-text { text-align: center; }
  .prov-text ul { margin-left: 0; }
  .prov-text ul li { justify-content: center; }
  .prov-vis { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .hero-bg-layer {
    background-position: center 88%;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .practices-container,
  .cases-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ─── LEGAL PAGES SHARED ─── */
.page-wrap { padding-top: 64px; }

/* ─── PRIVACY POLICY (privacy-policy.php) ─── */
.page-hero {
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
  background: #f0f2f6;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 320px;
  background: radial-gradient(
    ellipse at center,
    rgba(197,184,232,.28) 0%,
    rgba(240,180,165,.18) 45%,
    transparent 70%
  );
  pointer-events: none;
}
.breadcrumb-bar {
  padding: 0 0 40px;
  background: #f0f2f6;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: #9ca3af;
}
.breadcrumb-inner a {
  color: #9ca3af;
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-inner a:hover { color: #1a1a1a; }
.breadcrumb-inner svg {
  width: 10px;
  height: 10px;
  stroke: #c4c8d0;
  fill: none;
  stroke-width: 2;
}
.breadcrumb-inner span { color: #6b7280; }

.layout-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 100px;
  align-items: start;
}
.toc-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 28px 22px;
  position: sticky;
  top: 80px;
}
.toc-card h5 {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
  font-weight: 600;
  padding: 0 6px;
}
.toc-card a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: #6b7280;
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 9px;
  margin-bottom: 2px;
  transition: background .2s, color .2s;
  line-height: 1.4;
}
.toc-card a:hover,
.toc-card a.active {
  background: rgba(0,0,0,.05);
  color: #1a1a1a;
}
.toc-card a.active { font-weight: 500; }
.toc-num {
  font-size: .65rem;
  color: #c4c8d0;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: .5px;
}
.toc-card a.active .toc-num { color: #9ca3af; }
.toc-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,.07);
  margin: 12px 0;
}

.main-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 50px rgba(0,0,0,.07);
  padding: 56px 60px;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,242,246,.9);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .75rem;
  color: #9ca3af;
}
.meta-pill svg {
  width: 13px;
  height: 13px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8;
}
.meta-pill.green {
  background: rgba(16,185,129,.08);
  border-color: rgba(16,185,129,.2);
  color: #059669;
}
.meta-pill.green svg { stroke: #059669; }

.csb {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}
.csb:last-child { margin-bottom: 0; }
.sec-num {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -.3px;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}
.sec-p {
  font-size: .915rem;
  color: #4b5563;
  line-height: 1.82;
  margin-bottom: 14px;
}
.sec-p:last-child { margin-bottom: 0; }
.sec-p a {
  color: #b89fbc;
  text-decoration: none;
}
.sec-p a:hover { text-decoration: underline; }
.sec-p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.sec-div {
  border: none;
  border-top: 1px dashed #d1d5db;
  margin: 48px 0;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.info-list li {
  font-size: .915rem;
  color: #4b5563;
  line-height: 1.75;
  padding: 6px 0 6px 22px;
  position: relative;
}
.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a598;
}
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.tag-chip {
  background: rgba(240,242,246,.9);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag-chip svg {
  width: 12px;
  height: 12px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8;
}
.highlight-box {
  background: rgba(240,242,246,.65);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 20px 0;
}
.highlight-box p {
  font-size: .875rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}
.highlight-box p + p { margin-top: 10px; }
.situation-list { margin: 18px 0; }
.situation-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(240,242,246,.6);
  border: 1px solid rgba(0,0,0,.05);
  transition: background .2s;
}
.situation-item:hover { background: rgba(255,255,255,.85); }
.sit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.sit-icon svg {
  width: 14px;
  height: 14px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8;
}
.sit-text strong {
  font-size: .85rem;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 3px;
}
.sit-text span {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.55;
}
.contact-highlight {
  background: linear-gradient(
    135deg,
    rgba(197,184,232,.15) 0%,
    rgba(240,180,165,.1) 100%
  );
  border: 1px solid rgba(197,184,232,.3);
  border-radius: 18px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.ch-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ch-icon svg {
  width: 20px;
  height: 20px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.6;
}
.ch-text { flex: 1; min-width: 200px; }
.ch-text p {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.75;
  margin: 0;
}
.ch-text a {
  color: #b89fbc;
  text-decoration: none;
  font-weight: 500;
}
.ch-text a:hover { text-decoration: underline; }
.btn-contact {
  background: #0f172af5;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  font-family: 'Inter';
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-contact:hover {
  background: #2e3d4c;
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 900px) {
  .layout-grid { grid-template-columns: 1fr; }
  .toc-card { position: static; display: none; }
  .main-card { padding: 36px 28px; }
}

/* ─── ACCESSIBILITY STATEMENT (accessibility-statement.php) ─── */
.content-section {
  padding: 0 0 100px;
  background: #f0f2f6;
}
.content-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 50px rgba(0,0,0,.07);
  padding: 60px 72px;
  max-width: 860px;
  margin: 0 auto;
}
.content-section-block { margin-bottom: 52px; }
.content-section-block:last-child { margin-bottom: 0; }
.section-num {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.3px;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.2;
}
.section-p {
  font-size: .925rem;
  color: #4b5563;
  line-height: 1.82;
  margin-bottom: 14px;
}
.section-p:last-child { margin-bottom: 0; }
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.feature-item {
  background: rgba(240,242,246,.7);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .2s;
}
.feature-item:hover { background: rgba(255,255,255,.9); }
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8;
}
.feature-text { flex: 1; }
.feature-text strong {
  font-size: .85rem;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 4px;
}
.feature-text span {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.55;
}
.sec-divider {
  border: none;
  border-top: 1px dashed #d1d5db;
  margin: 48px 0;
}
.contact-highlight-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.6;
}
.contact-highlight-text { flex: 1; min-width: 200px; }
.contact-highlight-text p {
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.7;
}
.contact-highlight-text a {
  color: #b89fbc;
  text-decoration: none;
  font-weight: 500;
  transition: opacity .2s;
}
.contact-highlight-text a:hover {
  opacity: .75;
  text-decoration: underline;
}
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,242,246,.9);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .75rem;
  color: #9ca3af;
  margin-bottom: 40px;
}
.last-updated svg {
  width: 13px;
  height: 13px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8;
}

@media (max-width: 900px) {
  .layout-grid { grid-template-columns: 1fr; }
  .toc-card { position: static; }
  .feature-list { grid-template-columns: 1fr; }
  .main-card { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: 2.5rem; }
}

/* ─── ABOUT PAGE (about.php) ─── */
.page-wrap { padding-top: 64px; }

.about-hero {
  text-align: center;
  padding: 100px 20px 70px;
  background: #f0f2f6;
  position: relative;
  overflow: hidden;
}
.about-hero .hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(240,180,165,.4) 0%, rgba(220,165,200,.15) 45%, transparent 70%);
  pointer-events: none;
}
.about-hero .eyebrow {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: 18px;
}
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.06;
  color: #1a1a1a;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  position: relative;
}
.about-hero p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.78;
}

.mission-section { padding: 72px 0; background: #f0f2f6; }
.mission-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 50px rgba(0,0,0,.06);
  padding: 64px 72px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.svc-info-section { padding: 0 0 92px; background: #f0f2f6; }
.svc-info-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.svc-info-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: start;
}
.svc-info-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 40px 44px;
}
.svc-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.3px;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.15;
}
.svc-info-p {
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.85;
  margin-bottom: 12px;
}
.svc-info-p:last-child { margin-bottom: 0; }
.svc-bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.svc-bullets li {
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.75;
  padding: 7px 0 7px 22px;
  position: relative;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e8a598;
}
.svc-mini-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 34px 34px;
}
.svc-mini-kicker {
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.svc-mini-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}
.svc-mini-text { font-size: .9rem; color: #6b7280; line-height: 1.75; }
.mission-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: #2a2a2a;
  letter-spacing: -.2px;
  margin-bottom: 36px;
}
.mission-card blockquote::before { content: '\201C'; }
.mission-card blockquote::after  { content: '\201D'; }
.quote-divider {
  width: 200px;
  border: none;
  border-top: 1px solid #d1d5db;
  margin: 0 auto 28px;
}
.quote-attr-name {
  font-size: .92rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.quote-attr-role {
  font-size: .78rem;
  color: #9ca3af;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.facts-section { padding: 0 0 80px; background: #f0f2f6; }
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.qf-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 40px 44px;
  grid-column: 1;
  grid-row: 1;
}
.qf-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 28px;
}
.qf-row { display: flex; gap: 0; }
.qf-cell { flex: 1; }
.qf-cell + .qf-cell { border-left: 1px solid #e5e7eb; padding-left: 32px; }
.qf-label { font-size: .78rem; color: #9ca3af; margin-bottom: 6px; }
.qf-val { font-size: 1.05rem; font-weight: 500; color: #1a1a1a; }

.fda-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 36px 40px;
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 24px;
}
.fda-half { flex: 1; }
.fda-half + .fda-half { border-left: 1px solid #e5e7eb; padding-left: 28px; }

.impact-col {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.impact-card {
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 40px 40px;
  flex: 1;
}
.impact-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}
.big-label { font-size: .85rem; color: #6b7280; }
.fact-label { font-size: .88rem; font-weight: 500; color: #6b7280; margin-bottom: 10px; }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -1px;
}
.fact-num-glow {
  background: radial-gradient(ellipse at 40% 80%, rgba(197,184,232,.35) 0%, rgba(232,165,152,.25) 50%, transparent 80%);
  border-radius: 16px;
  padding: 20px 0 0;
  margin-top: 14px;
}

.team-section { padding: 100px 0 80px; background: #f0f2f6; }
.team-section .team-sub {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 70px;
  line-height: 1.72;
}
.team-card { display: block; }
.team-photo {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 3/3.5;
  background: linear-gradient(145deg, #d8dce8 0%, #c8d0e0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  font-size: 7rem;
}
.team-photo-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}
.team-photo-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(230,235,245,.6) 0%, transparent 100%);
}
.team-name { font-size: 1rem; font-weight: 500; color: #1a1a1a; margin-bottom: 3px; }
.team-role { font-size: .85rem; color: #9ca3af; margin-bottom: 14px; }
.team-bio { font-size: .88rem; color: #6b7280; line-height: 1.75; }

.approach-section { padding: 100px 0; background: #eaecf0; }
.approach-section .approach-sub {
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.72;
  max-width: 440px;
  margin-bottom: 0;
}
.approach-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.05);
  padding: 36px 32px;
  height: 100%;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
}
.approach-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.1); }
.approach-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.ai1 { background: linear-gradient(135deg, rgba(232,165,152,.2), rgba(232,165,152,.05)); }
.ai2 { background: linear-gradient(135deg, rgba(197,184,232,.2), rgba(197,184,232,.05)); }
.ai3 { background: linear-gradient(135deg, rgba(164,210,200,.2), rgba(164,210,200,.05)); }
.ai4 { background: linear-gradient(135deg, rgba(245,200,120,.2), rgba(245,200,120,.05)); }
.approach-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.approach-card p {
  font-size: .87rem;
  color: #6b7280;
  line-height: 1.72;
}

.dr-section { padding: 100px 0; background: #f0f2f6; }
.dr-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 50px rgba(0,0,0,.07);
  overflow: hidden;
}
.dr-photo-col {
  background: linear-gradient(145deg, #dce0ec 0%, #ccd4e4 50%, #c8cce0 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  position: relative;
}
.dr-photo-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(232,165,152,.2) 0%, transparent 60%);
}
.dr-text-col {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dr-eyebrow {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  display: block;
}
.dr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.5px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.dr-title {
  font-size: .88rem;
  color: #9ca3af;
  margin-bottom: 28px;
  font-weight: 500;
}
.dr-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.dr-para {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.78;
  margin-bottom: 16px;
}
.home-life {
  background: rgba(240,242,246,.6);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 8px;
}
.home-life h4 {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
}
.home-life p {
  font-size: .87rem;
  color: #6b7280;
  line-height: 1.72;
}
.edu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.edu-tag {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .75rem;
  color: #6b7280;
  font-weight: 500;
}

.faq-section { padding: 100px 0; background: #eaecf0; }
.faq-section .faq-sub {
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 0;
}
.faq-slider {
  position: relative;
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  aspect-ratio: 4 / 3;
}
.faq-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.faq-slide.active { opacity: 1; }
.faq-item {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: 0 6px 30px rgba(0,0,0,.07); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
}
.faq-q span {
  font-size: .95rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240,242,246,.8);
  border: 1px solid rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #0f172af5;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: #6b7280;
  stroke-width: 2;
  fill: none;
}
.faq-item.open .faq-icon svg { stroke: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}
.faq-a p {
  padding: 0 26px 22px;
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.78;
}

@media (max-width: 1100px) {
  .facts-grid { grid-template-columns: 1fr; }
  .impact-col { grid-column: 1; grid-row: auto; flex-direction: row; }
}
@media (max-width: 992px) {
  .mission-card { padding: 40px 32px; }
  .dr-text-col { padding: 40px 32px; }
}
@media (max-width: 768px) {
  .svc-info-grid { grid-template-columns: 1fr; }
  .svc-info-card { padding: 34px 26px; }
  .svc-mini-card { padding: 30px 26px; }
  .fda-card { flex-direction: column; gap: 20px; }
  .fda-half + .fda-half {
    border-left: none;
    border-top: 1px solid #e5e7eb;
    padding-left: 0;
    padding-top: 20px;
  }
  .qf-row { flex-direction: column; gap: 20px; }
  .qf-cell + .qf-cell {
    border-left: none;
    border-top: 1px solid #e5e7eb;
    padding-left: 0;
    padding-top: 16px;
  }
  .impact-col { flex-direction: column; }
}

/* ─── CONTACT PAGE (contact-us.php) ─── */
.contact-hero {
  text-align: center;
  padding: 90px 20px 60px;
  background: #f0f2f6;
}
.contact-hero .eyebrow {
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  display: block;
  margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #1a1a1a;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.contact-hero p {
  font-size: 1rem;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

.cards-section {
  padding: 48px 0 60px;
  background: #f0f2f6;
}
.contact-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  padding: 38px 36px;
  height: 100%;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,.1); }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240,242,246,.8);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #9ca3af;
  stroke-width: 1.4;
  fill: none;
}
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.contact-card p {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 12px;
  min-height: 48px;
}
.btn-dark {
  background: #0f172af5;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  font-family: 'Inter';
  display: inline-block;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-dark:hover { background: #2e3d4c; transform: translateY(-1px); color: #fff; }

.info-section {
  padding: 24px 0 60px;
  background: #f0f2f6;
}
.info-block {
  border-left: 3px solid #9ca3af;
  padding-left: 18px;
}
.info-block h4 {
  font-size: .88rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.info-block p {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.65;
}
.info-block a {
  color: #b89fbc;
  text-decoration: none;
  transition: opacity .2s;
}
.info-block a:hover {
  opacity: .75;
  text-decoration: underline;
}
.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,.08);
  margin: 0 0 60px;
}

.form-section {
  padding: 0 0 100px;
  background: #f0f2f6;
}
.form-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 8px 50px rgba(0,0,0,.07);
  padding: 56px 60px;
  max-width: 860px;
  margin: 0 auto;
}
.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.5px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.form-section-sub {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 40px;
}
.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: .3px;
  margin-bottom: 7px;
  display: block;
}
.form-ctrl {
  width: 100%;
  background: rgba(240,242,246,.7);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: .9rem;
  color: #1a1a1a;
  font-family: 'Inter';
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-ctrl:focus {
  border-color: rgba(100,120,150,.4);
  box-shadow: 0 0 0 3px rgba(100,120,150,.1);
  background: rgba(255,255,255,.9);
}
.form-ctrl::placeholder { color: #9ca3af; }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
select.form-ctrl { cursor: pointer; }
.form-group { margin-bottom: 20px; }
.btn-submit {
  background: #0f172af5;
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: 'Inter';
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-submit:hover {
  background: #2e3d4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(61,79,96,.3);
}
.form-note {
  font-size: .78rem;
  color: #9ca3af;
  margin-top: 14px;
}
.form-note a { color: #9ca3af; text-decoration: underline; }

.address-section {
  padding: 0 0 100px;
  background: #f0f2f6;
}
.address-card {
  background: rgba(255,255,255,.68);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 6px 40px rgba(0,0,0,.06);
  padding: 48px 52px;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}
.address-block {
  flex: 1;
  min-width: 220px;
}
.address-block h4 {
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
}
.address-block p {
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.75;
  font-weight: 400;
}
.address-block .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: rgba(240,242,246,.9);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: .82rem;
  font-weight: 500;
  color: #0f172af5;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.address-block .link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
}
.address-block .link-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.address-divider {
  width: 1px;
  background: rgba(0,0,0,.08);
  align-self: stretch;
  min-height: 100px;
}
.phone-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -.3px;
  display: block;
  margin-top: 6px;
  transition: opacity .2s;
}
.phone-big:hover { opacity: .7; color: #1a1a1a; }

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #d4dce8 0%, #c8d4e4 100%);
  height: 280px;
  position: relative;
  max-width: 860px;
  margin: 0 auto 0;
  box-shadow: 0 6px 40px rgba(0,0,0,.08);
  border: 1px solid rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}
.map-pin-label {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: #0f172af5;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-pin-label svg {
  width: 16px;
  height: 16px;
  stroke: #e8a598;
  fill: none;
  stroke-width: 2;
}

.success-msg {
  display: none;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: .9rem;
  color: #059669;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .form-card { padding: 36px 24px; }
  .address-card { padding: 32px 28px; gap: 32px; }
  .address-divider { display: none; }
}

/* Site-wide background tint overrides (hero uses video bg — not listed here) */
.products-section,
.providers-section,
.clin-section,
.content-section,
.mission-section,
.svc-info-section,
.facts-section,
.dr-section,
.cards-section,
.info-section,
.form-section,
.address-section {
  background: var(--page-bg);
}
.practices-section,
.faq-section,
.approach-section {
  background: var(--page-bg-soft);
}
.fcta-section,
.site-footer {
  background: var(--page-bg-alt);
}

/* Requested dark sections/cards */
.logos-strip,
.cases-section {
  background: #0f172af5;
}
.cases-h2,
.cases-sub,
.case-caption {
  color: #e5e7eb;
}
.fcta-card {
  background: #0f172af5;
  border-color: rgba(148, 163, 184, 0.35);
}
.fcta-card .ey,
.fcta-card p {
  color: #cbd5e1;
}
.fcta-card h2 {
  color: #f8fafc;
}

/* Shared CTA cards across service pages */
.sp-cta-card,
.n2-fcta-card {
  background: #0f172af5 !important;
  border-color: rgba(148, 163, 184, 0.35) !important;
}
.sp-cta-eyebrow,
.n2-fcta-card .n2-ey,
.sp-cta-p,
.n2-fcta-card p {
  color: #cbd5e1 !important;
}
.sp-cta-h2,
.n2-fcta-card h2 {
  color: #f8fafc !important;
}

/* Our Philosophy sections on all pages */
.approach-section,
.au-approach-section,
.os-approach-section,
.if-approach-section,
.n2-cases-section {
  background: #0f172af5 !important;
}
.approach-section .approach-h2,
.approach-section .approach-sub,
.au-approach-section .au-eyebrow,
.au-approach-section .au-section-h2,
.au-approach-section .au-approach-sub,
.os-approach-h2,
.if-approach-section .if-section-h2,
.n2-cases-eyebrow,
.n2-cases-h2,
.n2-cases-sub {
  color: #ffffff !important;
}

/* Service-page "True Dental Approach" cards — on mobile, stack all cards (no auto-cycling slider) for smooth scroll */
@media (max-width: 900px) {
  .n2-cases-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  .n2-c-card {
    flex: none !important;
    width: 100% !important;
    max-width: 460px !important;
    height: 320px !important;
    margin: 0 auto !important;
    transform: none !important;
    opacity: 1 !important;
    display: block !important;
    pointer-events: auto !important;
  }
}
