/* ============================================================
   AUREA CLINIC — style.css
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:          #0A0A0A;
  --bg2:         #111111;
  --bg-dark:     #0D1117;
  --gold:        #C9A84C;
  --gold-light:  #D4AF6A;
  --gold-pale:   #E8C87A;
  --gold-dim:    rgba(201,168,76,.15);
  --gold-border: rgba(201,168,76,.25);
  --white:       #FFFFFF;
  --text:        #E8E8E8;
  --muted:       #888888;
  --muted2:      #555555;
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-in:     cubic-bezier(.55,.055,.675,.19);
  --ease-out:    cubic-bezier(.215,.61,.355,1);
  --ff-head:     'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
input, textarea, select, button { font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 2px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--bg); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s var(--ease), opacity .3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .3s, border-color .3s;
}
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower,
body:has(.treatment-card:hover) .cursor-follower {
  width: 48px; height: 48px;
  border-color: var(--gold);
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.section {
  padding: 110px 0;
  position: relative;
}
.section-dark { background: var(--bg-dark); }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 72px; }
.section-overline {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 2px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: none;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  transform: translateX(-110%);
  transition: transform .4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: linear-gradient(110deg, var(--gold), var(--gold-light));
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
}
.btn-gold:hover {
  box-shadow: 0 6px 36px rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 44px; font-size: .9rem; }
.btn-arrow-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover .btn-arrow-icon { transform: translateX(4px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 120ms);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
#navbar.scrolled {
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(201,168,76,.1);
}
.nav-container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .18em;
}
.logo-sub {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-menu {
  display: flex;
  gap: 36px;
  margin-left: auto;
}
.nav-link {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  cursor: none;
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  margin-left: 16px;
  padding: 10px 24px;
  border: 1px solid var(--gold-border);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(-45deg, #0A0A0A, #0D1117, #080812, #0A0A0A);
  background-size: 400% 400%;
  animation: gradientDrift 18s ease infinite;
}

@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.055) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1; transform: translate(-50%,-50%) scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-overline {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp .8s var(--ease) .3s forwards;
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.title-wrapper {
  overflow: hidden;
  display: block;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: revealLine 1.1s var(--ease-out) forwards;
}
.title-line.delay-1 { animation-delay: .25s; }
@keyframes revealLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp .8s var(--ease) .7s forwards;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .8s var(--ease) .95s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.6s forwards;
  z-index: 2;
}
.scroll-line-wrap {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
  border-radius: 1px;
}
.scroll-line-inner {
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s var(--ease) infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.hero-scroll-indicator span {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   TREATMENTS
   ============================================================ */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.treatment-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.treatment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.treatment-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.treatment-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(201,168,76,.07);
}
.treatment-card:hover::before { opacity: 1; }
.treatment-card:hover::after  { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
}
.card-icon svg { width: 100%; height: 100%; }

.card-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.card-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}
.card-link {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: none;
  display: inline-block;
  transition: gap .3s, letter-spacing .3s;
  margin-top: auto;
}
.treatment-card:hover .card-link { letter-spacing: .14em; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ba-item { display: flex; flex-direction: column; gap: 18px; }

.ba-treatment-name {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  text-align: center;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/4;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  border: 1px solid rgba(255,255,255,.07);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-ph { width: 100%; height: 100%; }

/* Placeholder gradients — before (cool/muted) */
.ba-ph-b1 { background: linear-gradient(155deg, #1e1e1e 0%, #2a2520 40%, #1a1a1a 100%); }
.ba-ph-b2 { background: linear-gradient(155deg, #1a1a24 0%, #22202e 40%, #1c1c22 100%); }
.ba-ph-b3 { background: linear-gradient(155deg, #1e1c1c 0%, #242020 40%, #1a1818 100%); }

/* Texture overlay on before */
.ba-ph-b1::after, .ba-ph-b2::after, .ba-ph-b3::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 35%, rgba(255,255,255,.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 70%, rgba(255,255,255,.02) 0%, transparent 50%);
}

/* Placeholder gradients — after (warm/golden) */
.ba-ph-a1 { background: linear-gradient(155deg, #2a1e0a 0%, #C9A84C55 35%, #D4AF6A44 60%, #3a2808 100%); }
.ba-ph-a2 { background: linear-gradient(155deg, #2a150a 0%, #C07850aa 35%, #D49070aa 60%, #2a1008 100%); }
.ba-ph-a3 { background: linear-gradient(155deg, #201a08 0%, #B8963Caa 35%, #C9A84Caa 65%, #2a2008 100%); }

/* Luminous sheen on after */
.ba-ph-a1::after, .ba-ph-a2::after, .ba-ph-a3::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 35%, rgba(255,220,140,.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 65% 65%, rgba(255,200,100,.1) 0%, transparent 50%);
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path .05s linear;
}
.ba-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 2px;
  pointer-events: none;
}
.ba-badge-after {
  left: auto;
  right: 16px;
  color: var(--gold);
  background: rgba(10,8,2,.5);
}

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
  transform: translateX(-50%);
}
.ba-handle-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(201,168,76,.25), 0 4px 16px rgba(0,0,0,.5);
  position: relative;
  z-index: 1;
  pointer-events: all;
  cursor: col-resize;
}
.ba-handle-btn svg { width: 20px; height: 20px; }

.ba-disclaimer {
  text-align: center;
  font-size: .75rem;
  color: var(--muted2);
  margin-top: 40px;
  font-style: italic;
}

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 60px;
  align-items: center;
}
.about-text { padding-right: 20px; }

.about-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}
.feature-dot {
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-divider-col { display: flex; justify-content: center; }
.about-divider-line {
  width: 1px;
  height: 320px;
  background: linear-gradient(to bottom, transparent, var(--gold-border), var(--gold), var(--gold-border), transparent);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 36px;
  padding-left: 20px;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 6ch;
  display: inline-block;
}
.stat-label {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   DOCTORS
   ============================================================ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doctor-card {
  background: #0A0A0E;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 4px;
  padding: 44px 32px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.doctor-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.06);
}

.doctor-avatar-wrap {
  position: relative;
  width: 100px; height: 100px;
  margin-bottom: 24px;
}
.doctor-avatar {
  width: 100%; height: 100%;
  border-radius: 50%;
}
.av-1 { background: radial-gradient(circle at 40% 35%, #9E7A3A 0%, #6B5128 40%, #3A2C18 100%); }
.av-2 { background: radial-gradient(circle at 45% 35%, #8B6A50 0%, #5A3E28 40%, #2E1E10 100%); }
.av-3 { background: radial-gradient(circle at 40% 35%, #A07848 0%, #6C5030 40%, #382818 100%); }

.doctor-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  transition: border-color .3s;
}
.doctor-card:hover .doctor-avatar-ring { border-color: var(--gold); }

.doctor-name {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.doctor-spec {
  font-size: .78rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 20px;
}
.doctor-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin-bottom: 20px;
}
.doctor-bio {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.doctor-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
}
.doctor-tags span {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 2px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 44px 36px 40px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

.pricing-featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, #141209 0%, #111111 100%);
  box-shadow: 0 0 60px rgba(201,168,76,.1), 0 0 0 1px var(--gold-border);
  transform: scale(1.02);
}
.pricing-featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--bg);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 2px;
  white-space: nowrap;
}

.pricing-top { margin-bottom: 32px; }
.pricing-tier {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.price-from {
  font-size: .8rem;
  color: var(--muted);
}
.price-amount {
  font-family: var(--ff-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.price-currency {
  font-size: .85rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 4px;
}
.pricing-tagline {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  line-height: 1.4;
}
.feat-yes { color: var(--text); }
.feat-no  { color: var(--muted2); }
.feat-icon {
  font-size: .6rem;
  flex-shrink: 0;
}
.feat-yes .feat-icon { color: var(--gold); }
.feat-no  .feat-icon { color: var(--muted2); font-size: .8rem; }

.pricing-btn { width: 100%; justify-content: center; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.form-wrapper {
  max-width: 820px;
  margin-inline: auto;
  background: #0A0A0E;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 60px 64px;
  position: relative;
}
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.form-group-spacer { pointer-events: none; }

label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.req { color: var(--gold); }
.form-group:focus-within label { color: var(--gold); }

input, textarea, select {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  color: var(--white);
  font-size: .9rem;
  padding: 13px 16px;
  width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--muted2); }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold-border);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.07);
}
input.error, select.error, textarea.error {
  border-color: #c94c4c;
  box-shadow: 0 0 0 3px rgba(201,76,76,.07);
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.5) sepia(1) saturate(3) hue-rotate(5deg);
  cursor: pointer;
}
textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 36px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: .8rem;
}
select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-error {
  font-size: .72rem;
  color: #c94c4c;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity .3s, height .3s;
}
.form-error.visible { opacity: 1; height: 18px; }

.form-group-full { margin-bottom: 32px; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--muted2);
}
.lock-icon { width: 14px; height: 14px; flex-shrink: 0; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0 20px;
}
.form-success.show { display: flex; }
.success-icon-wrap {
  width: 72px; height: 72px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.success-star {
  font-size: 1.5rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-main { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: none;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: none;
  transition: all .3s var(--ease);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--gold); }

.footer-heading {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  cursor: none;
  transition: color .3s, padding-left .3s;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .85rem;
  color: var(--muted);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--muted); transition: color .3s; cursor: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-hours { margin-top: 20px; }
.footer-hours p { font-size: .82rem; color: var(--muted); line-height: 1.8; }
.footer-hours strong { color: var(--text); }

.footer-map-section {
  height: 180px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,.04);
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0A0A10 0%, #0D1020 50%, #08080E 100%);
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.map-pulse {
  position: absolute;
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: mapPulse 2.5s ease-out infinite;
}
@keyframes mapPulse {
  0%   { transform: translate(-50%,-50%) scale(.2); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}
.map-info {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,14,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 8px 18px;
  font-size: .78rem;
  color: var(--text);
  white-space: nowrap;
}
.map-pin { width: 14px; height: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: var(--muted2); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-size: .75rem;
  color: var(--muted2);
  cursor: none;
  transition: color .3s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-divider-col { display: none; }
  .about-stats { padding-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .doctors-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  /* Nav */
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
    z-index: 999;
  }
  .nav-menu.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.2rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1001; position: relative; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Treatments */
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card { padding: 36px 28px; }

  /* About */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Form */
  .form-wrapper { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row .form-group { margin-bottom: 20px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .form-footer .btn-large { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-overline, .hero-subtitle { display: none; }
  .hero-scroll-indicator { display: none; }
  .form-wrapper { padding: 32px 20px; }
}
