@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --purple:      #994de6;
  --purple-dark: #7a38c0;
  --purple-deep: #5c2899;
  --purple-pale: #f3eafd;
  --purple-mid:  #dcc5f9;
  --grey-light:  #e8e8ec;
  --grey-mid:    #6b6b78;
  --grey-dark:   #3a3a42;
  --charcoal:    #1e1e24;
  --off-white:   #f7f7fb;
  --white:       #ffffff;
  --text:        #2d2d35;
  --font: 'Plus Jakarta Sans', sans-serif;
  --radius: 3px;
  --ease: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p  { line-height: 1.75; }
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.label {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 0.85rem;
}
.label-light { color: #c492f7; }
.divider { width: 40px; height: 3px; background: var(--purple); margin: 1.25rem 0; border-radius: 2px; }
.divider.center { margin: 1.25rem auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease), color var(--ease);
  cursor: pointer; font-family: var(--font);
}
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(153,77,230,0.28); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--purple); border-color: var(--purple); }
.btn-outline-dark:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: var(--purple); transition: gap var(--ease); background: none; border: none; cursor: pointer; font-family: var(--font); padding: 0; }
.btn-ghost:hover { gap: 0.7rem; }
.btn-ghost::after { content: '→'; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.06);
}
/* Pages without a dark hero need scrolled state by default */
nav.nav-light {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  transition: padding var(--ease);
}
nav.scrolled .nav-inner, nav.nav-light .nav-inner { padding: 0.65rem 2rem; }
.nav-logo img { height: 62px; width: auto; transition: height var(--ease); }
nav.scrolled .nav-logo img, nav.nav-light .nav-logo img { height: 48px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links > li > a, .nav-dropdown-toggle {
  font-size: 0.83rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--ease);
  position: relative; background: none; border: none;
  font-family: var(--font); cursor: pointer; padding: 0;
  white-space: nowrap;
}
nav.scrolled .nav-links > li > a,
nav.scrolled .nav-dropdown-toggle,
nav.nav-light .nav-links > li > a,
nav.nav-light .nav-dropdown-toggle { color: var(--grey-mid); }

.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--purple);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.nav-links > li > a:hover { color: var(--white); }
.nav-links > li > a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links > li > a:hover,
nav.nav-light .nav-links > li > a:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple) !important; color: var(--white) !important;
  padding: 0.7rem 1.6rem !important; border-radius: var(--radius);
  font-size: 0.8rem !important; font-weight: 600 !important;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle::after { content: '▾'; font-size: 0.6rem; transition: transform var(--ease); }
.nav-dropdown-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
nav.scrolled .nav-dropdown-toggle:hover,
nav.nav-light .nav-dropdown-toggle:hover { color: var(--purple); }
.nav-dropdown-toggle:hover { color: var(--white); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  min-width: 210px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 200;
}
.nav-dropdown-menu.open { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a {
  display: block !important; padding: 0.65rem 1.25rem;
  font-size: 0.82rem; font-weight: 500; color: var(--grey-mid) !important;
  border-bottom: 1px solid var(--grey-light);
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--purple-pale); color: var(--purple) !important; }
.nav-dropdown-menu a::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--ease); display: block; }
nav.scrolled .hamburger span, nav.nav-light .hamburger span { background: var(--charcoal); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--grey-light);
  padding: 1.5rem 2rem; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.92rem; color: var(--text); font-weight: 500;
  padding: 0.75rem 0; border-bottom: 1px solid var(--grey-light);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-submenu { border-bottom: 1px solid var(--grey-light); }
.mobile-submenu-toggle {
  width: 100%; text-align: left; background: none; border: none;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
  padding: 0.75rem 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font);
}
.mobile-submenu-chevron { font-size: 0.6rem; transition: transform var(--ease); }
.mobile-submenu-toggle[aria-expanded="true"] .mobile-submenu-chevron { transform: rotate(180deg); }
.mobile-submenu-items { display: none; flex-direction: column; padding-left: 1rem; padding-bottom: 0.5rem; }
.mobile-submenu-items.open { display: flex; }
.mobile-submenu-items a { font-size: 0.85rem; color: var(--grey-mid); border-bottom: 1px solid var(--grey-light); }
.mobile-submenu-items a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: 0.75rem; text-align: center;
  display: block; border-radius: var(--radius);
  padding: 0.75rem !important; border-bottom: none !important;
}

/* ── HERO (video) ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero_full-bleed.png') center/cover no-repeat;
}
.hero-video-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,10,40,0.84) 0%, rgba(20,10,40,0.58) 55%, rgba(20,10,40,0.22) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 640px; padding: 10rem 0 7rem;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--purple); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; font-weight: 700; line-height: 1.1; }
.hero h1 span { color: var(--purple-mid); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap;
}
.trust-item .trust-num { font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1; }
.trust-item .trust-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* Accreditation bar */
.accred-bar { background: var(--charcoal); padding: 1rem 0; }
.accred-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.accred-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.accred-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple); display: block; flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 9rem 0 4.5rem; background: var(--charcoal); position: relative; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(153,77,230,0.12) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); margin-top: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 520px; margin-top: 1rem; font-size: 1rem; }

/* ── INTRO ── */
.intro { padding: 6rem 0; background: var(--white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.gap-sm { gap: 3.5rem; }
.col-img { border-radius: 4px; overflow: hidden; }
.col-img img { width: 100%; height: 420px; object-fit: cover; }
.col-text h2 { margin-bottom: 0.75rem; }
.col-text p { color: var(--grey-mid); line-height: 1.8; margin-bottom: 0.85rem; }
.col-text p:last-of-type { margin-bottom: 0; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }
.section-dark { background: var(--charcoal); }
.section-purple { background: var(--purple-pale); }
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header p { color: var(--grey-mid); max-width: 540px; margin-top: 0.75rem; }
.section-header.center p { margin: 0.75rem auto 0; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.5); }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.service-card {
  background: var(--charcoal); padding: 2.25rem 2rem;
  transition: background var(--ease); cursor: default; position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--purple); transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover { background: #262630; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img { width: 100%; height: 170px; object-fit: cover; border-radius: 3px; margin-bottom: 1.4rem; }
.service-card h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem; font-size: 0.8rem; font-weight: 600;
  color: var(--purple-mid); transition: gap var(--ease);
}
.service-card:hover .service-card-link { gap: 0.65rem; }
.service-card-link::after { content: '→'; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem; }
.step {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: 4px; padding: 2rem 1.75rem;
  transition: box-shadow var(--ease), transform var(--ease); position: relative;
}
.step:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.07); transform: translateY(-3px); }
.step-num { font-size: 3.2rem; font-weight: 700; color: var(--purple-pale); line-height: 1; margin-bottom: 1rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.84rem; color: var(--grey-mid); line-height: 1.75; }

/* ── INSURANCE ── */
.insurer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 2rem; }
.insurer-card {
  border: 1px solid var(--grey-light); border-radius: 4px;
  padding: 2rem 1.5rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.85rem;
  transition: border-color var(--ease), box-shadow var(--ease); min-height: 110px;
}
.insurer-card:hover { border-color: var(--purple-mid); box-shadow: 0 4px 20px rgba(153,77,230,0.08); }
.insurer-card img { max-height: 38px; max-width: 120px; object-fit: contain; filter: grayscale(1) opacity(0.55); transition: filter var(--ease); }
.insurer-card:hover img { filter: grayscale(0) opacity(1); }
.insurer-card span { font-size: 0.72rem; color: var(--grey-mid); font-weight: 500; text-align: center; }
.info-box {
  padding: 1.5rem 2rem; border-radius: 4px;
  background: var(--purple-pale); border: 1px solid rgba(153,77,230,0.15);
  font-size: 0.86rem; color: var(--grey-mid); line-height: 1.75;
}
.info-box strong { color: var(--purple); }
.info-box a { color: var(--purple); font-weight: 600; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.team-card {
  background: none; border: none; border-radius: 0; overflow: visible;
  text-align: center; transition: transform var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-card-img-wrap {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(153,77,230,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.team-card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.team-card-placeholder {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-pale), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; font-weight: 700; color: var(--purple);
  margin: 0 auto 1.5rem;
  border: 3px solid rgba(153,77,230,0.3);
}
.team-card h3 { color: var(--white); margin-bottom: 0.3rem; font-size: 1.1rem; }
.team-role { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple-mid); margin-bottom: 0.85rem; display: block; }
.team-bio { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
.team-quals { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.qual { font-size: 0.7rem; font-weight: 600; padding: 0.22rem 0.65rem; border-radius: 20px; background: var(--purple-pale); color: var(--purple); border: 1px solid rgba(153,77,230,0.15); }
.team-interests { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--grey-light); font-size: 0.78rem; color: var(--grey-mid); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: 4px; padding: 2rem;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.review-card:hover { border-color: rgba(153,77,230,0.3); box-shadow: 0 8px 28px rgba(153,77,230,0.08); }
.review-stars { color: var(--purple); letter-spacing: 0.1em; font-size: 0.78rem; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; color: var(--grey-mid); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.review-author { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.review-condition { font-size: 0.73rem; color: var(--grey-mid); margin-top: 0.2rem; }

/* ── CLINIC PHOTOS ── */
.clinic-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-top: 2.5rem; }
.clinic-grid-wide { grid-template-columns: 1fr 1fr; }
.clinic-img { border-radius: 4px; overflow: hidden; }
.clinic-img img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.clinic-img:hover img { transform: scale(1.03); }
.clinic-img.tall img { height: 340px; }

/* ── WHY / VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; padding: 2rem;
  transition: background var(--ease), border-color var(--ease);
}
.value-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(153,77,230,0.3); }
.value-num { font-size: 3rem; font-weight: 700; color: rgba(153,77,230,0.2); line-height: 1; margin-bottom: 1rem; }
.value-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.84rem; color: rgba(255,255,255,0.44); line-height: 1.75; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.75rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.why-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
  margin-top: 0.1rem;
}

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.price-card {
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: 4px; padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  position: relative; overflow: hidden;
}
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--purple); }
.price-card:hover { box-shadow: 0 12px 40px rgba(153,77,230,0.1); transform: translateY(-3px); border-color: var(--purple-mid); }
.price-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.price-duration { font-size: 0.82rem; color: var(--grey-mid); margin-bottom: 1.5rem; }
.price-amount { font-size: 3.2rem; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 1.5rem; }
.price-amount sup { font-size: 1.4rem; vertical-align: super; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.price-includes li { font-size: 0.85rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.6rem; }
.price-includes li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
  margin-top: 0.15rem;
}

/* ── FAQ ── */
.faq-category { margin-bottom: 3.5rem; }
.faq-cat-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
}
.faq-cat-label::after { content: ''; flex: 1; height: 1px; background: var(--grey-light); }
.faq-list { border: 1px solid var(--grey-light); border-radius: 4px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: var(--white);
  padding: 1.3rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; border: none; font-family: var(--font);
  font-size: 0.92rem; font-weight: 600; color: var(--charcoal);
  transition: background var(--ease), color var(--ease); gap: 1rem;
}
.faq-q:hover, .faq-item.open .faq-q { background: var(--purple-pale); color: var(--purple); }
.faq-chevron {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--grey-light); display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease);
}
.faq-item.open .faq-chevron { background: var(--purple); transform: rotate(180deg); }
.faq-chevron svg { width: 10px; height: 10px; }
.faq-item.open .faq-chevron svg path { stroke: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); background: var(--white); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; }
.faq-a-inner p { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.8; margin-bottom: 0.6rem; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; }
.contact-detail h4 { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.4); font-family: var(--font); margin-bottom: 0.5rem; }
.contact-detail p, .contact-detail a { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.6; display: block; transition: color var(--ease); }
.contact-detail a:hover { color: var(--purple-mid); }
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-book { background: rgba(153,77,230,0.15); border: 1px solid rgba(153,77,230,0.3); border-radius: 4px; padding: 1.75rem; }
.contact-book p { color: rgba(255,255,255,0.55); font-size: 0.86rem; margin-bottom: 1.25rem; line-height: 1.7; }
.map-wrap { border-radius: 4px; overflow: hidden; height: 400px; border: 1px solid rgba(255,255,255,0.07); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* Form */
.form-wrap { background: var(--off-white); border: 1px solid var(--grey-light); border-radius: 4px; padding: 2.5rem; }
.form-wrap h3 { margin-bottom: 0.4rem; }
.form-wrap > p { color: var(--grey-mid); font-size: 0.86rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.72rem 1rem;
  border: 1px solid var(--grey-light); border-radius: var(--radius);
  font-family: var(--font); font-size: 0.88rem; color: var(--text);
  background: var(--white); outline: none; transition: border-color var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.88rem; background: var(--purple); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background var(--ease); margin-top: 0.25rem; }
.form-submit:hover { background: var(--purple-dark); }
.form-note { font-size: 0.72rem; color: var(--grey-mid); text-align: center; margin-top: 0.75rem; }
.form-success { display: none; background: var(--purple-pale); border: 1px solid rgba(153,77,230,0.2); border-radius: 4px; padding: 1rem 1.25rem; text-align: center; font-size: 0.88rem; color: var(--purple); font-weight: 500; margin-top: 1rem; }

/* ── CONDITION PAGES ── */
.condition-hero { position: relative; padding: 10rem 0 5rem; background: var(--charcoal); }
.condition-hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.condition-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,8,38,0.92) 0%, rgba(18,8,38,0.65) 55%, rgba(18,8,38,0.25) 100%); }
.condition-hero-content { position: relative; z-index: 1; max-width: 620px; }
.condition-hero h1 { color: var(--white); margin: 0.5rem 0 1rem; }
.condition-hero p { color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

.symptom-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.symptom-card { background: var(--white); border: 1px solid var(--grey-light); border-radius: 4px; padding: 1.5rem; transition: border-color var(--ease), box-shadow var(--ease); }
.symptom-card:hover { border-color: var(--purple-mid); box-shadow: 0 4px 16px rgba(153,77,230,0.08); }
.symptom-card h4 { font-size: 0.92rem; margin-bottom: 0.45rem; }
.symptom-card p { font-size: 0.82rem; color: var(--grey-mid); line-height: 1.7; }

.treatment-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.treatment-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--white); border: 1px solid var(--grey-light); border-radius: 4px; font-size: 0.87rem; line-height: 1.65; }
.treatment-list li strong { display: block; font-size: 0.9rem; color: var(--charcoal); margin-bottom: 0.2rem; }
.treatment-list li span { color: var(--grey-mid); }
.treatment-num { width: 28px; height: 28px; border-radius: 50%; background: var(--purple); color: var(--white); font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.cond-faq-list { border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin-top: 2rem; }
.cond-faq-list .faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.cond-faq-list .faq-item:last-child { border-bottom: none; }
.cond-faq-list .faq-q { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.88); }
.cond-faq-list .faq-q:hover, .cond-faq-list .faq-item.open .faq-q { background: rgba(153,77,230,0.15); color: #c492f7; }
.cond-faq-list .faq-a { background: rgba(255,255,255,0.02); }
.cond-faq-list .faq-a-inner p { color: rgba(255,255,255,0.5); }

.related-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.related-link { display: inline-block; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; background: var(--purple-pale); color: var(--purple); border: 1px solid rgba(153,77,230,0.2); transition: background var(--ease), color var(--ease); }
.related-link:hover { background: var(--purple); color: var(--white); }

/* ── CTA BAND ── */
.cta-band { padding: 5rem 0; background: var(--purple); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto 2rem; }
.cta-band .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #131317; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.7; margin: 1rem 0 1.25rem; max-width: 240px; }
.footer-logo-img { height: 48px; opacity: 0.65; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge { font-size: 0.67rem; font-weight: 600; padding: 0.2rem 0.65rem; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); }
.footer-col h4 { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.45); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.28); transition: color var(--ease); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }
.footer-col address { font-style: normal; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col address p { font-size: 0.8rem; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-col address a { font-size: 0.8rem; color: rgba(255,255,255,0.28); transition: color var(--ease); }
.footer-col address a:hover { color: var(--purple-mid); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.71rem; color: rgba(255,255,255,0.18); }

/* ── COOKIE ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(110%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 680px; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.52rem 1.2rem; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 600; border: none; cursor: pointer; font-family: var(--font);
}
.cookie-accept { background: var(--purple); color: var(--white); transition: background var(--ease); }
.cookie-accept:hover { background: var(--purple-dark); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.12) !important; transition: border-color var(--ease), color var(--ease); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.3) !important; color: rgba(255,255,255,0.65); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .insurer-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .clinic-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .insurer-grid { grid-template-columns: 1fr 1fr; }
  .symptom-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.5rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .clinic-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .insurer-grid { grid-template-columns: 1fr 1fr; }
}
