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

/* ══════════════════════════════════════════════
   TEAM KROH DENTAL — Premium Stylesheet
   Palette: Navy Blue · White · Clean Blue accent
   ══════════════════════════════════════════════ */

:root {
  /* Brand */
  --brand:        #3A8FD6;
  --brand-light:  #E8F3FF;
  --brand-mid:    #5CA8E0;
  --brand-dark:   #2272B5;

  /* Surfaces */
  --bg:           #090F1C;
  --bg-2:         #101828;
  --white:        #F0F6FF;

  /* Dark */
  --dark:         #F0F6FF;
  --dark-2:       #101828;

  /* Text */
  --mid:          rgba(240,246,255,0.52);
  --gray:         rgba(240,246,255,0.52);
  --light:        rgba(240,246,255,0.30);
  --border:       rgba(255,255,255,0.08);
  --light-border: rgba(255,255,255,0.06);

  /* Shadows — deeper on dark */
  --shadow-xs:    0 2px 8px rgba(0,0,0,0.25);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.30);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.40);
  --shadow-lg:    0 24px 72px rgba(0,0,0,0.55);

  /* Fonts */
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Layout */
  --radius:       20px;
  --radius-sm:    10px;
  --max-w:        1160px;
  --transition:   0.28s ease;

}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 100px 0; }
.section-alt {
  /* Light section — override variables for dark-on-white */
  --dark:         #0C1B2E;
  --mid:          rgba(12,27,46,0.55);
  --gray:         rgba(12,27,46,0.55);
  --light:        rgba(12,27,46,0.32);
  --border:       rgba(12,27,46,0.08);
  --light-border: rgba(12,27,46,0.05);
  --bg-2:         #E8F1FB;

  background: #F3F8FF;
  border-top: 1px solid rgba(12,27,46,0.06);
  border-bottom: 1px solid rgba(12,27,46,0.06);
}
/* Ensure headings + body text go dark on light sections */
.section-alt h1, .section-alt h2, .section-alt h3, .section-alt h4 { color: #0C1B2E; }
.section-alt p, .section-alt li { color: rgba(12,27,46,0.65); }
.section-alt .section-head p { color: rgba(12,27,46,0.55); }
.section-alt .section-head h2::after { background: var(--brand); }
/* Nav text override (mobile nav can appear over light sections — not needed) */
/* Cards on light sections */
.section-alt .step,
.section-alt .service-card,
.section-alt .rv-card,
.section-alt .treat-feat-card,
.section-alt .treat-sec-card,
.section-alt .ba-card,
.section-alt .review-card,
.section-alt .home-treat-item,
.section-alt .faq-item {
  background: #FFFFFF;
  border-color: rgba(12,27,46,0.08);
}
.section-alt .step h3,
.section-alt .service-card h3,
.section-alt .rv-card p,
.section-alt .review-card p { color: #0C1B2E; }
.section-alt .ba-type { background: rgba(12,27,46,0.07); color: rgba(12,27,46,0.5); }
.section-alt .ba-label { background: rgba(12,27,46,0.55); color: #fff; }
.section-alt .ba-label.after { background: rgba(58,143,214,0.8); }
.section-alt .home-testimonial-quote { color: #0C1B2E; }
.section-alt .home-testimonial-author { color: rgba(12,27,46,0.55); }
.section-alt .home-testimonial-name { color: #0C1B2E; }
/* Stars on white sections */
.section-alt .rv-stars,
.section-alt .review-card-stars,
.section-alt .rating-stars,
.section-alt .rating-stars span { color: #F5A623; }
.section-alt .rv-rh-stars { color: #F5A623; }
.section-alt .rv-rh-num { color: #0C1B2E; }
.section-alt .rv-rh-label { color: #0C1B2E; }
/* Review card avatar on white */
.section-alt .rv-av { background: rgba(58,143,214,0.12); }
.section-alt .rv-name { color: #0C1B2E; }
.section-alt .rv-text { color: rgba(12,27,46,0.7); }
.section-alt .rv-footer { border-top-color: rgba(12,27,46,0.08); }
/* BA card info strip on white */
.section-alt .ba-info { background: #fff; }
.section-alt .ba-info h4 { color: #0C1B2E; }
.section-alt .ba-info p { color: rgba(12,27,46,0.55); }
/* Section head on white */
.section-alt .section-head h2 { color: #0C1B2E; }
.section-alt .section-head p { color: rgba(12,27,46,0.55); }
/* Treat sec cards on white */
.section-alt .treat-sec-sub { color: rgba(12,27,46,0.45); }
.section-alt .treat-sec-card h3 { color: #0C1B2E; }
.section-alt .treat-sec-card p { color: rgba(12,27,46,0.6); }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; }

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-head { margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--mid); font-size: 1rem; max-width: 500px; line-height: 1.8; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
  max-width: 100%;
  word-break: break-word;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(58,143,214,0.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(58,143,214,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-wa, .btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
.btn-wa:hover, .btn-whatsapp:hover { background: #1DB954; transform: translateY(-1px); }
.btn-wa svg, .btn-whatsapp svg { fill: #fff; flex-shrink: 0; }
.btn-wa-outline {
  background: transparent;
  color: #25D366;
  border: 1.5px solid #25D366;
}
.btn-wa-outline:hover { background: #25D366; color: #fff; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.scrolled {
  border-color: rgba(255,255,255,0.06);
  background: rgba(6,12,24,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 38px; width: auto; transition: opacity 0.35s ease; mix-blend-mode: screen; border-radius: 6px; }
.nav-logo-text { font-family: var(--font-head); font-size: 1.1rem; color: rgba(240,246,255,0.9); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1px; }
.nav-links a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.845rem;
  font-weight: 500;
  color: rgba(240,246,255,0.55);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: rgba(240,246,255,0.9); background: rgba(255,255,255,0.06); }
.nav-links a.active {
  color: rgba(240,246,255,0.9);
  background: rgba(255,255,255,0.06);
  font-weight: 600;
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0.7;
}
.nav-links a.emergency { color: #FF8888; font-weight: 600; }
.nav-links a.emergency:hover { background: rgba(220,38,38,0.12); color: #FFAAAA; }
.nav.scrolled .nav-links a { color: rgba(240,246,255,0.55); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: rgba(240,246,255,0.9); background: rgba(255,255,255,0.06); }
.nav.scrolled .nav-links a.emergency { color: #FF8888; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(240,246,255,0.75); border-radius: 2px; transition: var(--transition); }
.nav.scrolled .nav-hamburger span { background: rgba(240,246,255,0.75); }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #060C18;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px 20px;
}
.nav-mobile a { padding: 13px 14px; font-size: 0.95rem; color: rgba(240,246,255,0.55); display: block; border-radius: 10px; transition: var(--transition); }
.nav-mobile a:hover { color: rgba(240,246,255,0.9); background: rgba(255,255,255,0.05); }
.nav-mobile a.active { color: rgba(240,246,255,0.9); background: rgba(255,255,255,0.06); }
.nav-mobile a.emergency { color: #FF8888; }
.nav-mobile .btn { margin-top: 8px; justify-content: center; width: 100%; }

/* ── HERO ── */
/* ── HERO — full-bleed photo, centered content ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0e1a;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Gradient overlay: darker at bottom/top edges, semi-transparent in centre so photo shows */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,8,20,0.55) 0%,
      rgba(5,8,20,0.30) 35%,
      rgba(5,8,20,0.30) 65%,
      rgba(5,8,20,0.70) 100%
    );
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 130px 32px 90px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  font-weight: 800;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  color: #2FC1FF;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 620px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-lang {
  font-size: 0.95rem;
  color: #2FC1FF;
  font-weight: 600;
  margin-bottom: 44px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  width: 100%;
  max-width: 680px;
}
.hero-stat {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #2FC1FF;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 7px;
  text-shadow: 0 0 20px rgba(47,193,255,0.4);
}
.hero-stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2FC1FF 0%, #08ACF2 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 17px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 36px rgba(47,193,255,0.50);
  border: none;
  letter-spacing: 0.01em;
}
.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(47,193,255,0.60);
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
}
.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.svc-card p { font-size: 0.85rem; color: var(--mid); line-height: 1.75; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #101828, #172234);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-initials-wrap, .team-photo-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.team-initials {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: #fff;
}
.team-body { padding: 24px 24px 26px; }
.team-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 5px; }
.team-body h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; font-family: var(--font-body); color: var(--dark); }
.team-body p { font-size: 0.83rem; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.lang-tags, .team-langs { display: flex; flex-wrap: wrap; gap: 5px; }
.lang-tag { background: rgba(58,143,214,0.13); color: var(--brand-mid); font-size: 0.68rem; font-weight: 600; border-radius: 100px; padding: 3px 10px; letter-spacing: 0.04em; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { color: #FFFFFF; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card > p,
.review-text { font-size: 0.9rem; color: var(--dark); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer, .review-author { display: flex; align-items: center; gap: 10px; }
.reviewer-av, .review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(58,143,214,0.18);
  color: var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer-name, .review-name { font-size: 0.84rem; font-weight: 600; color: var(--dark); }
.reviewer-source, .review-source { font-size: 0.72rem; color: var(--mid); margin-top: 1px; }
.g, .google-logo { color: #EA4335; font-weight: 700; }
.review-quote {
  font-family: var(--font-head);
  font-size: 2.6rem;
  color: rgba(58,143,214,0.35);
  line-height: 0.7;
  display: block;
  margin-bottom: 6px;
}
.star-row { display: flex; gap: 2px; color: #FFFFFF; font-size: 0.9rem; margin-bottom: 14px; }

/* ── BEFORE & AFTER ── */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ba-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.ba-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; position: relative; height: 300px; }
.ba-side { position: relative; overflow: hidden; }
.ba-side img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s ease;
}
.ba-card:hover .ba-side img { transform: scale(1.05); }
.ba-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.ba-label.after { background: rgba(58,143,214,0.85); left: auto; right: 10px; }
.ba-line, .ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,0.8); z-index: 2; pointer-events: none;
}
.ba-meta { padding: 14px 18px 16px; display: flex; align-items: center; justify-content: space-between; }
.ba-meta-title { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.ba-type, .ba-meta-type {
  font-size: 0.7rem; color: var(--brand-mid); font-weight: 600;
  background: rgba(58,143,214,0.14); border-radius: 100px; padding: 3px 11px;
  letter-spacing: 0.04em;
}

/* ── CTA BAND ── */
.cta-band {
  background: #101828;
  border-radius: 28px;
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 320px;
  background: radial-gradient(ellipse, rgba(58,143,214,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .label, .cta-band .tag { color: var(--brand-mid); }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.45); max-width: 460px; margin: 0 auto 36px; font-size: 0.97rem; line-height: 1.8; }
.cta-actions, .cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: #060C18;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 32px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 28px;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 16px; mix-blend-mode: screen; }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 260px; margin-bottom: 20px; }
.footer-col h5 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.84rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-col a.red { color: #F87171; }
.footer-hours { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 2.1; }
.footer-hours strong { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.18);
}
.footer-bottom a { color: rgba(255,255,255,0.28); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── WA FLOAT ── */
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  70%  { box-shadow: 0 4px 28px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-btn, .wa-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-pulse 2.8s ease-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-btn:hover, .wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.6); animation: none; }
.wa-btn svg, .wa-float-btn svg { width: 27px; height: 27px; fill: #fff; }
.wa-tip, .wa-tooltip {
  background: #101828;
  color: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.wa-float:hover .wa-tip,
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 32px 80px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(58,143,214,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--dark); margin-bottom: 20px; position: relative; }
.page-hero h1 em { color: var(--brand-mid); font-style: italic; }
.page-hero h1::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  border-radius: 2px;
  margin: 16px auto 0;
}
.page-hero p { color: var(--mid); font-size: 1rem; max-width: 480px; margin: 0 auto; position: relative; line-height: 1.8; }
.page-hero .label,
.page-hero .tag { color: var(--brand); position: relative; }

/* ── Hero nationality strip ── */
.hero-intl {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-intl-flags { display: flex; gap: 5px; }
.hero-intl-flags span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(240,246,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 6px;
  line-height: 1;
}
.hero-intl-text {
  font-size: 0.72rem;
  color: rgba(240,246,255,0.38);
  font-weight: 500;
  margin-left: 6px;
  letter-spacing: 0.03em;
}
.hero-intl-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.1);
  margin: 0 6px;
}

/* ── Section alt compatibility ── */
.section--light { background: var(--bg-2); }

/* ── BA card hover — scale image ── */
.ba-card { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1, .reveal-delay-1 { transition-delay: 0.08s; }
.d2, .reveal-delay-2 { transition-delay: 0.18s; }
.d3, .reveal-delay-3 { transition-delay: 0.28s; }
.d4, .reveal-delay-4 { transition-delay: 0.38s; }

/* ── FAQ ── */
.faq-cta-box {
  background: var(--bg-2);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-2);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; background: transparent; border: none; padding: 22px 26px;
  text-align: left; font-size: 0.94rem; font-weight: 600; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  cursor: pointer; transition: var(--transition);
}
.faq-q:hover { background: var(--bg); }
.faq-icon, .faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 1rem; flex-shrink: 0; transition: var(--transition);
  line-height: 1; font-style: normal;
}
.faq-item.open .faq-icon,
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a-inner { padding: 0 26px 22px; font-size: 0.88rem; color: var(--mid); line-height: 1.85; }
.faq-item.open .faq-a { max-height: 320px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.c-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.c-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.c-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(58,143,214,0.12); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.c-card h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; font-family: var(--font-body); }
.c-card p, .c-card a { font-size: 0.9rem; color: var(--dark); font-weight: 500; line-height: 1.65; }
.c-card a:hover { color: var(--brand); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── EMERGENCY ── */
.emg-hero {
  background: rgba(180,30,30,0.08);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  margin-bottom: 56px;
}
.emg-hero h1 { color: #F87171; margin-bottom: 16px; }
.emg-hero p { color: rgba(240,246,255,0.5); max-width: 520px; margin: 0 auto 32px; line-height: 1.8; }
.emg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; }
.emg-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.emg-item:hover { box-shadow: var(--shadow-sm); }
.emg-item-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.emg-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; color: var(--dark); font-family: var(--font-body); }
.emg-item p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }

/* ── TREATMENTS ── */
.treat-grid,
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px,1fr));
  gap: 24px;
}
.treat-card,
.treatment-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  border: 1px solid transparent;
}
.treat-card:hover,
.treatment-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border);
}
.treat-top,
.treatment-header {
  padding: 30px 26px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.treat-icon,
.treatment-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(58,143,214,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.treat-top h3,
.treatment-header h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; font-family: var(--font-body); }
.treat-top .sub,
.treatment-header p { font-size: 0.78rem; color: var(--brand); font-weight: 500; margin: 0; }
.treat-body,
.treatment-body { padding: 18px 26px 26px; }
.treat-body p,
.treatment-body > p { font-size: 0.87rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.treatment-features { display: flex; flex-direction: column; gap: 9px; }
.treat-feat,
.treatment-feature {
  font-size: 0.82rem; color: var(--dark);
  display: flex; align-items: flex-start; gap: 9px;
}
.treat-feat::before,
.treatment-feature::before { content: '✓'; color: var(--brand); font-weight: 700; flex-shrink: 0; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-checks { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 36px; }
.about-check { display: flex; gap: 14px; align-items: flex-start; }
.about-check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(58,143,214,0.15); color: var(--brand-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.about-check p { font-size: 0.9rem; color: var(--mid); line-height: 1.7; }
.about-check p strong { color: var(--dark); }
.about-stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  padding: 28px; background: var(--bg-2); border-radius: var(--radius);
  margin-bottom: 32px; box-shadow: var(--shadow-sm);
}
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--brand); display: block; line-height: 1; margin-bottom: 4px; }
.about-stat small { font-size: 0.72rem; color: var(--mid); font-weight: 500; }

/* ── RATING SUMMARY ── */
.rating-box,
.rating-summary {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 380px;
  margin: 0 auto 56px;
  box-shadow: var(--shadow-sm);
}
.rating-big { font-family: var(--font-head); font-size: 5rem; color: var(--dark); line-height: 1; margin-bottom: 10px; font-weight: 700; }
.rating-stars { color: #FFFFFF; font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 8px; }
.rating-stars span { color: #FFFFFF; font-size: 1.3rem; }
.rating-sub, .rating-label { font-size: 0.82rem; color: var(--mid); }

/* ── VIDEO / CLINIC SHOWCASE ── */
.video-section {
  background: #060C18;
  padding: 100px 0;
}
.video-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.video-text .label { color: var(--brand-mid); }
.video-text h2 { color: #fff; margin-bottom: 18px; }
.video-text p { color: rgba(255,255,255,0.5); line-height: 1.85; font-size: 0.97rem; margin-bottom: 20px; }
.video-wrap {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.clinic-showcase {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  background: #0a0a0a;
  border-radius: 22px;
  overflow: hidden;
}
.clinic-showcase-top { flex: 1; position: relative; overflow: hidden; min-height: 0; }
.clinic-showcase-top img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.clinic-showcase-fallback {
  display: none; width: 100%; height: 100%;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(145deg, #090F1C 0%, #101828 100%);
  color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500;
}
.clinic-showcase-initials {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(58,143,214,0.15);
  border: 2px solid rgba(58,143,214,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2rem; color: var(--brand-mid);
}
.clinic-showcase-bottom {
  display: flex; align-items: center; justify-content: space-around;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.clinic-showcase-stat { text-align: center; }
.clinic-showcase-num { display: block; font-family: var(--font-head); font-size: 1.4rem; color: #fff; line-height: 1; margin-bottom: 4px; font-weight: 600; }
.clinic-showcase-label { font-size: 0.65rem; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.clinic-showcase-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* ── TEAM DARK SECTION ── */
.section-dark-team { background: #060C18; color: rgba(240,246,255,0.75); }
.section-dark-team h2, .section-dark-team h3 { color: #fff; }
.section-dark-team .team-role { color: var(--brand-mid); }
.section-dark-team .team-body p { color: rgba(255,255,255,0.5); }
.section-dark-team .team-card { background: var(--dark-2); box-shadow: none; border: 1px solid rgba(255,255,255,0.06); }
.section-dark-team .team-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.section-dark-team .team-photo { background: linear-gradient(135deg, #1C1B24, #2A2640); }
.section-dark-team .team-initials { background: rgba(58,143,214,0.2); border: 2px solid rgba(58,143,214,0.3); color: var(--brand-mid); }
.section-dark-team .lang-tag { background: rgba(58,143,214,0.12); color: var(--brand-mid); border: 1px solid rgba(58,143,214,0.2); }

/* ── SECTION / HEADER ALIASES ── */
.section--light { background: var(--bg-2); }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--mid); font-size: 1rem; max-width: 500px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 16px;
}

/* ── EMERGENCY / MISC LINK ALIASES ── */
a.emergency-link { color: #F87171 !important; }
a.emergency-link:hover { color: #FCA5A5 !important; }

/* ── TRUST STRIP (kept for compatibility) ── */
.trust-strip { display: none; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .video-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .ba-grid { grid-template-columns: repeat(2,1fr); }
  .treat-featured { grid-template-columns: 1fr; }
  .treat-secondary { grid-template-columns: repeat(2,1fr); }
  .map-container { position: static; }
}

/* ══════════════════════════════════════════════
   MOBILE — 768px and below
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global ── */
  body { overflow-x: hidden; }
  .section { padding: 64px 0; }
  .container { padding: 0 22px; }
  .section-head { margin-bottom: 36px; text-align: center; }
  .section-head h2 { font-size: 1.65rem; }
  .section-head p { font-size: 0.9rem; max-width: 100%; margin: 0 auto; }
  .section-head .label { display: block; }

  /* ── Buttons — prevent text overflow on mobile ── */
  .btn { white-space: normal; word-break: break-word; }
  /* Full-width standalone CTAs in cards/sections */
  .treat-feat-card .btn,
  .dr-intro .btn,
  .steps-cta .btn,
  .emg-hero-actions .btn,
  .contact-card .btn-wa { width: 100%; justify-content: center; }

  /* ── Nav ── */
  .nav-links, .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 22px; height: 60px; gap: 12px; }
  .nav-logo img { height: 34px; }

  /* ── Hero ── */
  .hero { min-height: 100svh; background-position: 60% 85%; }
  .hero-inner { padding: 100px 20px 60px; }
  .hero h1 { font-size: clamp(2rem, 7.5vw, 2.8rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 8px; }
  .hero-lang { font-size: 0.82rem; margin-bottom: 28px; }
  .hero-stats { gap: 0; margin-bottom: 32px; max-width: 100%; }
  .hero-stat { padding: 0 8px; }
  .hero-stat-num { font-size: 1.4rem; margin-bottom: 5px; }
  .hero-stat-label { font-size: 0.55rem; letter-spacing: 0.1em; }
  .hero-cta { font-size: 0.95rem; padding: 15px 32px; width: 100%; max-width: 320px; justify-content: center; }

  /* ── Stats strip ── */
  .stats-strip { overflow: hidden; }
  .stats-strip-inner,
  .stats-strip-3 { grid-template-columns: repeat(3,1fr) !important; max-width: 100%; padding: 0; border-left: none; }
  .stats-strip-item { padding: 22px 8px; border-right: 1px solid rgba(255,255,255,0.07); }
  .stats-num { font-size: 1.6rem; }
  .stats-label { font-size: 0.64rem; letter-spacing: 0.02em; }

  /* ── All grids → single column ── */
  .services-grid, .team-grid, .reviews-grid,
  .treatments-grid, .treat-grid,
  .ba-grid { grid-template-columns: 1fr; }

  /* ── BA cards ── */
  .ba-images { height: 200px; }
  .ba-card { border-radius: 14px; }

  /* ── Treatment pills ── */
  .home-treats { gap: 8px; justify-content: center; }
  .home-treat-item { padding: 10px 16px; font-size: 0.83rem; border-radius: 100px; }

  /* ── Home testimonial ── */
  .home-testimonial-quote { font-size: 1.05rem; line-height: 1.65; }
  .home-testimonial-author { flex-direction: column; align-items: center; gap: 6px; }
  .home-testimonial-link { margin-left: 0; }

  /* ── CTA band ── */
  .cta-band { padding: 40px 22px; border-radius: 16px; }
  .cta-band h2 { font-size: 1.55rem; margin-bottom: 12px; }
  .cta-band p { font-size: 0.88rem; margin-bottom: 28px; }
  .cta-actions { flex-direction: column; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 44px 18px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand img { height: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* ── Page hero (all inner pages) ── */
  .page-hero { padding: 110px 24px 56px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .page-hero h1::after { width: 30px; margin-top: 12px; }
  .page-hero p { font-size: 0.9rem; }

  /* ── Reviews page ── */
  .rv-rating-hero { margin-bottom: 36px; }
  .rv-grid { grid-template-columns: 1fr; gap: 14px; }
  .rv-card { padding: 22px 18px; border-radius: 14px; }

  /* ── Treatments page ── */
  .treat-featured { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .treat-secondary { grid-template-columns: 1fr; gap: 12px; }
  .treat-feat-card { padding: 30px 22px; min-height: auto; border-radius: 16px; }
  .treat-feat-card::after { display: none; }
  .treat-feat-card h2 { font-size: 1.5rem; }
  .treat-sec-card { padding: 22px 18px; border-radius: 14px; }

  /* ── Team page ── */
  .t-mario { grid-template-columns: 1fr; gap: 24px; }
  .t-mario-photo { aspect-ratio: 16/9; max-height: 200px; border-radius: 16px; }
  .t-mario-name { font-size: 1.8rem; }
  .t-mario + div > div { grid-template-columns: 1fr !important; gap: 14px !important; }
  .t-card { border-radius: 14px; }

  /* ── Contact page ── */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-card { padding: 18px 16px; gap: 14px; border-radius: 14px; }
  .map-container { position: static; border-radius: 14px; overflow: hidden; }
  .map-container iframe { height: 280px; border: none; display: block; }

  /* ── Emergency page ── */
  .section-emergency { padding-top: 80px !important; padding-bottom: 56px; }
  .emergency-hero { padding: 40px 24px; border-radius: 20px; margin-bottom: 28px; }
  .emergency-icon { font-size: 2.2rem; margin-bottom: 16px; }
  .emergency-hero h1 { font-size: 2rem; margin-bottom: 14px; }
  .emergency-hero p { font-size: 0.9rem; margin-bottom: 28px; }
  .emg-hero-actions { flex-direction: column; gap: 10px; }
  .emg-hero-actions .btn { width: 100%; justify-content: center; font-size: 0.88rem; padding: 14px 18px; white-space: normal; text-align: center; word-break: break-word; }
  .hours-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
  .hours-card { padding: 18px 16px; border-radius: 14px; gap: 12px; }
  .hours-card p { font-size: 0.85rem; line-height: 1.7; }
  .hours-card h4 { font-size: 0.6rem; }
  .emergency-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 36px; }
  .emergency-item { padding: 18px 16px; border-radius: 12px; }
  .emergency-location { padding: 24px 18px; margin-top: 0; border-radius: 14px; }
  .emg-location-inner { flex-direction: column; gap: 18px; }
  .emg-location-btns { width: 100%; flex-direction: column; gap: 10px; padding-top: 0; }
  .emg-location-btns .btn { width: 100%; justify-content: center; }

  /* ── FAQ page ── */
  .faq-list { padding: 0; }
  .faq-item { border-radius: 12px; margin-bottom: 8px; }
  .faq-q { padding: 18px 18px; font-size: 0.9rem; }
  .faq-a-inner { padding: 0 18px 18px; font-size: 0.86rem; }
  .faq-cta-box { padding: 24px 18px; border-radius: 16px; }
  .faq-cta-box .btn { width: 100%; justify-content: center; }

  /* ── Before & after ── */
  .ba-section-title { font-size: 1rem; margin: 44px 0 20px; }

  /* ── WhatsApp float ── */
  .wa-float { bottom: 18px; right: 18px; }
  .wa-btn, .wa-float-btn { width: 50px; height: 50px; }
  .wa-tip, .wa-tooltip { display: none; }

  /* ── Review cards on BA page ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { padding: 22px 18px; border-radius: 14px; }

  /* ── Dr. intro ── */
  .dr-intro { grid-template-columns: 1fr !important; gap: 20px; padding: 28px 20px; border-radius: 16px; }
  .dr-intro-av { width: 72px; height: 72px; font-size: 1.4rem; }
  .dr-intro-name { font-size: 1.4rem; }

  /* ── How it works ── */
  .steps-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .step-arrow { display: none !important; }
  .step { padding: 24px 20px; border-radius: 16px; }
  .step-num { font-size: 2.2rem; margin-bottom: 10px; }

  /* ── Misc ── */
  .about-stat-row { grid-template-columns: 1fr; }
  .section-dark-team .team-grid { grid-template-columns: 1fr; }
  .emg-hero { padding: 32px 18px; border-radius: 16px; }
  .cta-band::before { display: none; }
}

/* ══════════════════════════════════════════════
   PHONE — 420px and below (small phone)
   ══════════════════════════════════════════════ */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .nav-inner { padding: 0 14px; }
  .section { padding: 44px 0; }

  /* Hero */
  .hero-inner { padding: 76px 16px 36px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 0.86rem; }
  .hero-ba-inner { height: 240px; }

  /* Stats — 3 col tight */
  .stats-strip-inner, .stats-strip-3 { padding: 0 !important; }
  .stats-strip-item { padding: 18px 4px; }
  .stats-num { font-size: 1.45rem; }
  .stats-label { font-size: 0.6rem; }

  /* Treatment pills */
  .home-treat-item { padding: 8px 12px; font-size: 0.8rem; }

  /* CTA */
  .cta-band { padding: 36px 18px; border-radius: 16px; }
  .cta-band h2 { font-size: 1.35rem; }

  /* Page hero */
  .page-hero { padding: 100px 18px 44px; }
  .page-hero h1 { font-size: 1.65rem; }

  /* Cards */
  .treat-feat-card { padding: 24px 16px; }
  .treat-sec-card { padding: 18px 14px; }
  .rv-card { padding: 18px 14px; }
  .t-card-body { padding: 18px 16px 20px; }
  .contact-card { padding: 16px 14px; }
  .hours-card { padding: 16px 14px; }
  .emergency-item { padding: 14px 12px; }
  .emergency-location { padding: 18px 14px; }

  /* Footer */
  .footer { padding: 36px 14px 24px; }
}

/* ── BA section title (before-after page) ── */
.ba-section-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--mid);
  text-align: center;
  margin: 72px 0 36px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.ba-section-title::before,
.ba-section-title::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}
.ba-section-title span { color: var(--dark); font-style: italic; }


/* ══════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════ */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}
.ct-grid-bottom { margin-bottom: 0; align-items: stretch; }

.ct-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: var(--shadow-xs);
}
.section-alt .ct-card { background: #fff; border-color: rgba(12,27,46,0.08); }

.ct-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-card-icon { font-size: 1.1rem; }

/* Contact detail rows */
.ct-rows { display: flex; flex-direction: column; gap: 0; }
.ct-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.section-alt .ct-row { border-color: rgba(12,27,46,0.07); }
.ct-row:last-child { border-bottom: none; padding-bottom: 0; }
.ct-row:first-child { padding-top: 0; }
.ct-row-icon { font-size: 1.1rem; flex-shrink: 0; width: 24px; text-align: center; margin-top: 2px; }
.ct-row-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.ct-row-val {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
}
.ct-link {
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.ct-link:hover { color: var(--brand-dark); }

.ct-socials { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.ct-social-link {
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.ct-social-link:hover { color: var(--brand); }
.ct-social-ico {
  width: 22px; height: 22px;
  background: rgba(58,143,214,0.12);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
}

/* Opening hours */
.ct-hours { display: flex; flex-direction: column; gap: 0; margin-bottom: 18px; }
.ct-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.section-alt .ct-hour-row { border-color: rgba(12,27,46,0.07); }
.ct-hour-row:last-child { border-bottom: none; }
.ct-day { color: var(--dark); font-weight: 500; }
.ct-time { color: var(--mid); }
.ct-emerg-text { color: #ef4444; font-size: 0.8rem; font-weight: 500; }

.ct-emerg-note {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.84rem;
  color: var(--dark);
  line-height: 1.65;
}
.ct-emerg-note strong { color: #ef4444; }

/* Map */
.ct-map-wrap { }
.ct-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 16px;
}
.section-alt .ct-map { border-color: rgba(12,27,46,0.1); }
.ct-map iframe { width: 100%; height: 340px; border: none; display: block; }

/* CTA card */
.ct-cta {
  background: var(--brand);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(58,143,214,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ct-cta-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 10px;
}
.ct-cta-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 22px;
}
.ct-cta-btn {
  background: #fff !important;
  color: var(--brand) !important;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ct-cta-btn:hover { background: rgba(255,255,255,0.9) !important; transform: translateY(-2px); }

/* Contact responsive */
@media (max-width: 860px) {
  .ct-grid, .ct-grid-bottom { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .ct-card { padding: 22px 18px; }
  .ct-map iframe { height: 240px; }
}

/* ══════════════════════════════════════════════
   EMERGENCY PAGE
   ══════════════════════════════════════════════ */
.emergency-hero {
  background: linear-gradient(160deg, #180808 0%, #0E0606 100%);
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: 26px;
  padding: 72px 56px;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.emergency-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(220,38,38,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.emergency-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 22px;
  position: relative;
}
.emergency-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.emergency-hero p {
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.85;
  position: relative;
}
.emergency-hero p strong { color: #FF8888; }
.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}
.emergency-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.emergency-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(220,38,38,0.2); transform: translateY(-2px); }
.emergency-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }
.emergency-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; color: var(--dark); font-family: var(--font-body); }
.emergency-item p { font-size: 0.83rem; color: var(--mid); line-height: 1.7; }

/* ── Outline button ── */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-size: 0.875rem; font-weight: 600;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: var(--transition); cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }

/* ── Emergency hero action buttons ── */
.emg-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Emergency location box ── */
.emergency-location {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 48px;
}
.emg-location-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.emg-location-text { flex: 1; min-width: 0; }
.emg-location-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 4px;
}
.emergency-location h3 { color: var(--dark); margin-bottom: 10px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
.emergency-location p { color: var(--mid); font-size: 0.88rem; line-height: 1.8; }
.emergency-location .tag { color: var(--brand-mid); }

/* Hours cards on dark page */
.hours-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 56px; }
.hours-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.hours-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(58,143,214,0.1); border: 1px solid rgba(58,143,214,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.hours-card h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.hours-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.85; }
.hours-card p strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.hours-card.urgent { border-color: rgba(220,38,38,0.15); }
.hours-card.urgent .hours-card-icon { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.15); }
.hours-card.urgent p strong { color: #FF8888; }

.ba-section-title span { color: var(--dark); font-style: italic; }

/* ══════════════════════════════════════════════
   TEAM PAGE — clean rebuild
   ══════════════════════════════════════════════ */
.t-mario {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.t-mario-photo {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(145deg, #090F1C 0%, #101828 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.t-mario-av {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.07);
  user-select: none;
}
.t-mario-stat-chip {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(58,143,214,0.15);
  border: 1px solid rgba(58,143,214,0.25);
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.t-mario-stat-n { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--brand-mid); line-height: 1; font-weight: 600; }
.t-mario-stat-l { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.t-mario-name { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); margin: 8px 0 20px; line-height: 1.1; }
.t-mario-bio { font-size: 0.92rem; color: var(--mid); line-height: 1.85; margin-bottom: 16px; }
.t-mario-row { margin-top: 24px; }
.t-mario-section-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); margin-bottom: 10px; }
.t-mario-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.t-mario-chips span {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.79rem;
  color: var(--dark);
  font-weight: 500;
}
.t-mario-chips--lang span {
  background: rgba(58,143,214,0.14);
  border-color: rgba(58,143,214,0.2);
  color: var(--brand-mid);
  color: var(--brand-dark);
  font-weight: 600;
}
.t-card {
  background: var(--bg-2);
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(58,143,214,0.3); }
.t-card-photo {
  height: 200px;
  background: linear-gradient(145deg, #090F1C, #101828);
  display: flex; align-items: center; justify-content: center;
}
.t-card-av { font-family: var(--font-head); font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.07); user-select: none; }
.t-card-body { padding: 26px 28px 30px; }
.t-card-name { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin: 4px 0 12px; font-family: var(--font-body); }
.t-card-bio { font-size: 0.875rem; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
.t-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.t-card-chips span { background: var(--bg); border: 1px solid var(--border); border-radius: 100px; padding: 3px 12px; font-size: 0.75rem; color: var(--dark); font-weight: 500; }
.t-card-langs { display: flex; flex-wrap: wrap; gap: 6px; }
.t-card-langs span { background: rgba(58,143,214,0.13); border-radius: 100px; padding: 3px 12px; font-size: 0.75rem; color: var(--brand-mid); font-weight: 600; }
@media (max-width: 900px) {
  .t-mario { grid-template-columns: 1fr; gap: 40px; }
  .t-mario-photo { aspect-ratio: 16/9; max-height: 260px; }
}
@media (max-width: 640px) {
  .t-mario + div > div { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   REVIEWS PAGE — clean rebuild
   ══════════════════════════════════════════════ */
/* Reviews — rating hero block */
.rv-rating-hero {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.rv-rh-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}
.rv-rh-num {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--dark);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.rv-rh-stars {
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: 6px;
  color: #F5A623;
  margin-top: 8px;
}
.rv-rh-divider { display: none; }
.rv-rh-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rv-rh-label {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--dark);
}
.rv-rh-sub {
  font-size: 0.88rem;
  color: var(--mid);
  max-width: 320px;
}
.rv-rh-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(234,67,53,0.08);
  border: 1px solid rgba(234,67,53,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  margin-top: 4px;
  width: fit-content;
}
.rv-rh-badge-g {
  font-size: 0.82rem;
  font-weight: 900;
  color: #EA4335;
}
.rv-rh-badge span:last-child {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--mid);
}

.rv-rating {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 32px;
  box-shadow: var(--shadow-sm);
}
.rv-rating-num { font-family: var(--font-head); font-size: 2.6rem; color: var(--dark); font-weight: 700; line-height: 1; }
.rv-rating-stars { color: #FFFFFF; font-size: 1rem; letter-spacing: 2px; margin-bottom: 3px; }
.rv-rating-label { font-size: 0.72rem; color: var(--mid); }
.rv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rv-card {
  background: var(--bg-2);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.rv-card::before {
  content: '"';
  position: absolute;
  top: -18px; right: 18px;
  font-family: var(--font-head);
  font-size: 8rem;
  color: rgba(58,143,214,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.rv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: rgba(58,143,214,0.3); }
.rv-stars { color: #FFFFFF; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.rv-text { font-size: 0.9rem; color: var(--dark); line-height: 1.8; font-style: italic; flex: 1; margin-bottom: 22px; }
.rv-footer { display: flex; align-items: center; gap: 11px; padding-top: 16px; border-top: 1px solid var(--border); }
.rv-av { width: 34px; height: 34px; border-radius: 50%; background: rgba(58,143,214,0.18); color: var(--brand-mid); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; flex-shrink: 0; }
.rv-name { font-size: 0.83rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.rv-src { font-size: 0.68rem; color: var(--mid); margin-top: 2px; }
.rv-g { color: #EA4335; font-weight: 700; }
@media (max-width: 900px) { .rv-grid { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════
   TREATMENTS — premium redesign
   ══════════════════════════════════════════════ */
.treat-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.treat-feat-card {
  border-radius: 24px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.treat-feat-card--implants {
  background: linear-gradient(145deg, #060C18 0%, #0D2040 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.treat-feat-card--veneers {
  background: linear-gradient(145deg, #0E1A2E 0%, #182A42 100%);
  border: 1px solid rgba(58,143,214,0.15);
}
.treat-feat-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -20px; right: 32px;
  font-family: var(--font-head);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.treat-feat-accent {
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,143,214,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.treat-feat-icon {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 4px;
}
.treat-feat-tag {
  display: inline-block;
  background: rgba(58,143,214,0.14);
  color: var(--brand-mid);
  border: 1px solid rgba(58,143,214,0.22);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.treat-feat-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.treat-feat-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.85;
  margin: 0;
}
.treat-feat-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.treat-feat-points span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding-left: 20px;
  position: relative;
}
.treat-feat-points span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-mid);
  font-weight: 700;
}
.treat-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.treat-sec-card {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.treat-sec-card::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 2px;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.treat-sec-card:hover::before { opacity: 1; }
.treat-sec-card:hover {
  border-color: rgba(58,143,214,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.treat-sec-card--emergency {
  border-color: rgba(220,38,38,0.2);
  background: rgba(220,38,38,0.05);
}
.treat-sec-card--emergency:hover { border-color: rgba(220,38,38,0.4); }
.treat-sec-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.treat-sec-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.treat-sec-top h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.treat-sec-sub {
  font-size: 0.72rem;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.treat-sec-card p {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.75;
}
.treat-emergency-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #F87171;
  margin-top: 4px;
  transition: var(--transition);
}
.treat-emergency-link:hover { color: #FCA5A5; }
@media (max-width: 900px) {
  .treat-featured { grid-template-columns: 1fr; }
  .treat-secondary { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .treat-secondary { grid-template-columns: 1fr; }
  .treat-feat-card { padding: 36px 28px; min-height: auto; }
}

/* ══════════════════════════════════════════════
   HOME — stats strip
   ══════════════════════════════════════════════ */
.stats-strip {
  background: #101828;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  overflow: hidden;
}
.stats-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.04);
}
.stats-strip-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
}
.stats-strip-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.04);
  text-align: center;
  position: relative;
}
.stats-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.4s ease;
}
.stats-strip-item:hover::after { width: 48px; }
.stats-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 600;
}
.stats-num em { color: var(--brand-mid); font-style: normal; }
.stats-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

/* ══════════════════════════════════════════════
   TEAM PAGE — premium redesign
   ══════════════════════════════════════════════ */
.team-feature {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.team-feature-photo {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(145deg, #090F1C 0%, #1E2D45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team-feature-initials {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.12);
  letter-spacing: -0.02em;
  user-select: none;
}
.team-feature-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 20px;
  text-align: center;
}
.team-feature-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--brand-mid);
  line-height: 1;
  font-weight: 600;
}
.team-feature-badge-label {
  display: block;
  font-size: 0.66rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.team-feature-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.team-feature-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.1;
}
.team-feature-bio {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.team-feature-section-title {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 10px;
  margin-top: 24px;
}
.team-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-feature-tags span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 500;
}
.team-feature-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-feature-langs span {
  background: rgba(58,143,214,0.13);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--brand-mid);
  font-weight: 600;
}
.team-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.team-pro-card {
  background: var(--bg-2);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.team-pro-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand); }
.team-pro-photo {
  height: 220px;
  background: linear-gradient(145deg, #090F1C 0%, #1E2D45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-pro-initials {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,0.12);
}
.team-pro-body { padding: 28px 30px 32px; }
.team-pro-role {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.team-pro-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.team-pro-bio {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.team-pro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.team-pro-tags span {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--dark);
  font-weight: 500;
}
.team-pro-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-pro-langs span {
  background: rgba(58,143,214,0.13);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.74rem;
  color: var(--brand-mid);
  font-weight: 600;
}
@media (max-width: 900px) {
  .team-feature { grid-template-columns: 1fr; gap: 40px; }
  .team-feature-photo { aspect-ratio: 16/9; max-height: 280px; }
  .team-cards-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   HOME — treatments pill list
   ══════════════════════════════════════════════ */
.home-treats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-treat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  cursor: pointer;
}
.home-treat-item:hover {
  border-color: var(--brand);
  color: var(--brand-mid);
  background: rgba(58,143,214,0.1);
  transform: translateY(-1px);
}
.home-treat-item.emergency-treat { color: #B91C1C; border-color: rgba(220,38,38,0.2); }
.home-treat-item.emergency-treat:hover { background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.4); color: #F87171; }

/* ══════════════════════════════════════════════
   HOME — single testimonial
   ══════════════════════════════════════════════ */
.home-testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.home-testimonial-stars { color: #FFFFFF; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 24px; }
.home-testimonial-quote {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
}
.home-testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.home-testimonial-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; color: #fff;
  font-weight: 600; flex-shrink: 0;
}
.home-testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.home-testimonial-src { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }
.home-testimonial-link {
  margin-left: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  border-bottom: 1px solid rgba(58,143,214,0.25);
  transition: var(--transition);
}
.home-testimonial-link:hover { color: var(--brand); border-color: var(--brand); }

/* ══════════════════════════════════════════════
   DR. INTRO — homepage trust block
   ══════════════════════════════════════════════ */
.dr-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  border-radius: var(--radius);
  padding: 52px 56px;
  border: 1px solid rgba(58,143,214,0.15);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.dr-intro::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(58,143,214,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.dr-intro-av {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.8rem; color: #fff;
  font-weight: 600; flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(58,143,214,0.25);
}
.dr-intro-name {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin-bottom: 12px;
  color: var(--dark);
}
.dr-intro-bio {
  font-size: 0.9rem; color: var(--mid); line-height: 1.85;
  margin-bottom: 18px; max-width: 600px;
}
.dr-intro-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.dr-intro-creds span {
  background: rgba(58,143,214,0.10);
  border: 1px solid rgba(58,143,214,0.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  color: var(--mid);
}

/* ══════════════════════════════════════════════
   HOW IT WORKS — 3-step process
   ══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 20px;
  align-items: center;
  margin-top: 48px;
}
.step {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.step:hover { border-color: rgba(58,143,214,0.25); box-shadow: var(--shadow-sm); }
.step-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--brand);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.step p { font-size: 0.86rem; color: var(--mid); line-height: 1.75; }
.step-arrow {
  font-size: 1.6rem;
  color: var(--brand);
  opacity: 0.35;
  flex-shrink: 0;
  text-align: center;
}

/* ══════════════════════════════════════════════
   EMERGENCY — full dark section
   ══════════════════════════════════════════════ */
.section-emergency {
  background: #101828;
  padding-top: 120px;
  padding-bottom: 80px;
}
.section-emergency .section-head h2 { color: #fff; }
.section-emergency .section-head p { color: rgba(255,255,255,0.42); }
.section-emergency .section-head .label { color: var(--brand-mid); }
.section-emergency .emergency-item {
  background: var(--dark-2);
  border-color: rgba(255,255,255,0.06);
}
.section-emergency .emergency-item:hover { border-color: rgba(220,38,38,0.2); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.section-emergency .emergency-item h4 { color: rgba(255,255,255,0.85); }
.section-emergency .emergency-item p { color: rgba(255,255,255,0.42); }

/* ══════════════════════════════════════════════
   REVIEWS — premium redesign
   ══════════════════════════════════════════════ */
.review-featured {
  background: #060C18;
  border-radius: 28px;
  padding: 64px 72px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.review-featured::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,143,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.review-featured-quote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.review-featured-quote::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--brand);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
  opacity: 0.6;
}
.review-featured-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.review-featured-av {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.5rem; color: #fff;
  font-weight: 600; flex-shrink: 0;
}
.review-featured-name {
  font-size: 0.9rem; font-weight: 600; color: #fff; text-align: center;
}
.review-featured-stars {
  color: #FFFFFF; font-size: 0.85rem; letter-spacing: 2px; text-align: center;
}
.review-featured-badge {
  background: rgba(58,143,214,0.12);
  border: 1px solid rgba(58,143,214,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--brand-mid); letter-spacing: 0.08em;
  text-align: center;
}
/* review cards enhanced */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border); }
.review-card-stars { color: #FFFFFF; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card-text {
  font-size: 0.9rem; color: var(--mid); line-height: 1.8;
  font-style: italic; flex: 1; margin-bottom: 24px;
}
.review-card-footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(58,143,214,0.18); color: var(--brand-mid);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem; flex-shrink: 0;
}
.review-card-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.review-card-src { font-size: 0.7rem; color: var(--mid); margin-top: 2px; }
.review-card-src .g-dot { color: #EA4335; font-weight: 700; }
.review-card-tag {
  margin-left: auto; flex-shrink: 0;
  background: rgba(58,143,214,0.13); color: var(--brand-mid);
  font-size: 0.64rem; font-weight: 600;
  border-radius: 100px; padding: 3px 11px;
  letter-spacing: 0.04em;
}
.review-rating-row {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-bottom: 56px;
  background: var(--bg-2); border-radius: var(--radius);
  padding: 32px 48px; box-shadow: var(--shadow-sm);
}
.review-rating-big {
  font-family: var(--font-head); font-size: 4.5rem;
  color: var(--dark); line-height: 1; font-weight: 700;
}
.review-rating-divider { width: 1px; height: 56px; background: var(--border); }
.review-rating-right { display: flex; flex-direction: column; gap: 4px; }
.review-rating-stars { color: #FFFFFF; font-size: 1.2rem; letter-spacing: 3px; }
.review-rating-label { font-size: 0.82rem; color: var(--mid); }
.review-rating-count { font-size: 0.72rem; color: var(--light); }

@media (max-width: 900px) {
  .review-featured { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .review-featured-meta { flex-direction: row; align-items: center; }
}
