/* Fonts loaded via <link> in HTML for performance. */

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --gold: #C5A059;
  --gold-light: #D4AF37;
  --gold-glow: rgba(197,160,89,0.25);
  --green: #10B981;
  --red: #EF4444;
  
  /* Dark defaults */
  --bg: #050810;
  --surface: rgba(255,255,255,0.10);
  --surface-2: rgba(255,255,255,0.16);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.14);
  --text-1: #FFFFFF;
  --text-2: rgba(255,255,255,0.65);
  --text-3: rgba(255,255,255,0.38);
  --blur: blur(30px);
  --radius: 20px;
  --radius-lg: 28px;
}

/* ═══════════════════════════════════════════════
   LIGHT THEME OVERRIDES (06:00—18:00)
═══════════════════════════════════════════════ */
body.light-theme {
  --bg: #F0F4FF;
  --surface: rgba(255,255,255,0.72);
  --surface-2: rgba(255,255,255,0.95);
  --border: rgba(0,0,0,0.07);
  --border-2: rgba(0,0,0,0.12);
  --text-1: #0D1117;
  --text-2: #374151;
  --text-3: #9CA3AF;
}
body.light-theme { background-color: #F0F4FF; }
body.light-theme::before { background: radial-gradient(circle, rgba(197,160,89,0.35) 0%, transparent 70%); }
body.light-theme::after  { background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%); }
body.light-theme .orb-blue { background: rgba(99,102,241,0.18); }
body.light-theme .orb-purple { background: rgba(168,85,247,0.15); }
body.light-theme .top-bar { background: rgba(254,226,226,0.8); border-bottom-color: rgba(239,68,68,0.15); }
body.light-theme .top-bar .scarcity-inner { color: #B91C1C; }
body.light-theme .pulsing-dot { background: #DC2626; box-shadow: 0 0 8px #DC2626; }
body.light-theme .clinic-brand .brand-text { color: var(--gold); }
body.light-theme .brand-line { background: var(--gold); }
body.light-theme .stat-card { background: rgba(255,255,255,0.75); border-color: rgba(0,0,0,0.06); }
body.light-theme .step-dot { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); color: var(--text-2); }
body.light-theme .step-dot.active { background: var(--gold); border-color: var(--gold); color: #fff; }
body.light-theme .input-group input { background: rgba(255,255,255,0.9); color: #0D1117; border-color: rgba(0,0,0,0.12); }
body.light-theme .input-group label { color: #6B7280; }
body.light-theme .input-group input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(197,160,89,0.18); }
body.light-theme .btn-primary { background: #0D1117; color: #fff; }
body.light-theme .btn-primary:hover { background: #1a2035; }
body.light-theme .btn-ghost { color: #6B7280; }
body.light-theme .btn-ghost:hover { color: #0D1117; }
body.light-theme .phone-flag { background: rgba(0,0,0,0.06); color: #374151; border-color: rgba(0,0,0,0.1); }
body.light-theme .privacy-note { color: #6B7280; }
body.light-theme .testimonial-card { background: rgba(255,255,255,0.8); border-color: rgba(0,0,0,0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
body.light-theme .t-quote { color: rgba(197,160,89,0.3); }
body.light-theme .t-text { color: #374151; }
body.light-theme .t-name { color: #0D1117; }
body.light-theme .t-avatar { background: #F3F4F6; border-color: rgba(0,0,0,0.08); color: var(--gold); }
body.light-theme .section-label { color: var(--gold); }
body.light-theme .section-title { color: #0D1117; }
body.light-theme .section-sub { color: #6B7280; }
body.light-theme .hero-label { color: var(--gold); }
body.light-theme .hero-specialty { color: #6B7280; }
body.light-theme .hero-sub { color: #4B5563; }
body.light-theme .form-step-header p { color: #6B7280; }
body.light-theme .clinical-footer { background: rgba(255,255,255,0.7); color: #374151; }
body.light-theme .site-footer { background: rgba(0,0,0,0.04); border-top-color: rgba(0,0,0,0.06); }
body.light-theme .footer-sub, body.light-theme .footer-copy { color: #9CA3AF; }
body.light-theme .footer-brand { color: #0D1117; }
body.light-theme .testi-dot { background: rgba(0,0,0,0.15); }
body.light-theme .testi-dot.active { background: var(--gold); }
body.light-theme .progress-track { background: rgba(0,0,0,0.08); }
body.light-theme .hero-scroll-cta { border-color: rgba(0,0,0,0.15); color: #374151; }
body.light-theme .hero-scroll-cta:hover { background: rgba(0,0,0,0.05); }
body.light-theme .form-step-header h3 { color: #0D1117; }
body.light-theme .dot-label { color: #6B7280;}
body.light-theme .glass-form-card { box-shadow: 0 30px 70px rgba(0,0,0,0.08); }
body.light-theme .ring-1 { border-color: rgba(197,160,89,0.3); }
body.light-theme .ring-2 { border-color: rgba(197,160,89,0.15); }

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text-1);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 1.2s ease, color 1.2s ease;
}

/* ═══════════════════════════════════════════════
   BACKGROUND ORBS (ambient lighting)
═══════════════════════════════════════════════ */
/* ORBS: Static gradients — no blur/animation for low-RAM mobile performance */
.orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  opacity: 1;
}
.orb-gold   { width: 500px; height: 500px; top: -180px; left: -200px; background: radial-gradient(circle, rgba(197,160,89,0.45) 0%, transparent 70%); }
.orb-blue   { width: 400px; height: 400px; bottom: 20%; right: -150px; background: radial-gradient(circle, rgba(56,189,248,0.35) 0%, transparent 70%); }
.orb-purple { width: 300px; height: 300px; top: 50%; left: 10%; background: radial-gradient(circle, rgba(168,85,247,0.28) 0%, transparent 70%); }

/* ═══════════════════════════════════════════════
   STICKY TOP BAR
═══════════════════════════════════════════════ */
.top-bar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,8,16,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(239,68,68,0.12);
  padding: 0.7rem 1rem;
  transition: background 1.2s;
}
.scarcity-inner {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: #FCA5A5;
  max-width: 700px; margin: 0 auto;
}
.pulsing-dot {
  width: 8px; height: 8px; background: #EF4444; border-radius: 50%;
  box-shadow: 0 0 10px #EF4444; flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.2;transform:scale(0.7);} }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2,0.8,0.2,1), transform 0.7s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}
.hero-content { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; max-width: 600px; }

/* Brand line */
.clinic-brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-text { font-size: 0.75rem; letter-spacing: 4px; font-weight: 700; color: var(--gold); text-transform: uppercase; }
.brand-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.4; width: 40px; }

/* Doctor ring */
.doctor-ring-wrap { position: relative; width: 170px; height: 170px; }
.ring {
  position: absolute; border-radius: 50%; border: 1px solid transparent;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ring-1 { width: 100%; height: 100%; border-color: rgba(197,160,89,0.4); animation: spinRing 12s linear infinite; }
.ring-2 { width: 115%; height: 115%; border-color: rgba(197,160,89,0.15); animation: spinRing 20s linear infinite reverse; }
@keyframes spinRing { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-doctor-img {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 148px; height: 148px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px var(--gold-glow);
}

/* Hero text */
.hero-label { font-size: 0.8rem; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; font-weight: 600; }
.hero-name { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1.1; font-weight: 700; }
.hero-specialty { font-size: 0.9rem; color: var(--text-3); font-weight: 400; letter-spacing: 0.5px; }

.hero-cta-area { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.vip-badge-hero {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border-2);
  backdrop-filter: blur(10px); font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.5px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem); line-height: 1.25; font-weight: 600; color: var(--text-1);
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 480px; }

.hero-scroll-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.8rem; border-radius: 50px;
  border: 1px solid var(--border-2); color: var(--text-2);
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.hero-scroll-cta:hover { background: var(--surface-2); color: var(--text-1); transform: translateY(3px); }
.cta-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(5px);} }

/* ═══════════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════════ */
.stats-section { position: relative; z-index: 1; padding: 0 1.5rem 5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 600px; margin: 0 auto; }

.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.stat-card--highlight { border-color: var(--gold-glow); background: rgba(197,160,89,0.06); }

.stat-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-suffix { font-size: 1rem; color: var(--gold); font-weight: 600; margin-top: -0.2rem; }
.stat-label { font-size: 0.75rem; color: var(--text-3); font-weight: 500; letter-spacing: 0.3px; margin-top: 0.3rem; }

/* ═══════════════════════════════════════════════
   SECTION HEADERS (shared)
═══════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 2rem; }
.section-label { font-size: 0.75rem; letter-spacing: 3px; font-weight: 700; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 700; color: var(--text-1); line-height: 1.2; margin-bottom: 0.75rem; }
.section-sub { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; max-width: 480px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   CLINICAL PROOF SECTION
═══════════════════════════════════════════════ */
.proof-section { position: relative; z-index: 1; padding: 0 1.5rem 5rem; }
.clinical-card {
  max-width: 540px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transition: transform 0.4s ease;
}
.clinical-card:hover { transform: translateY(-4px); }
.clinical-img-wrap { position: relative; }
.clinical-img-wrap img { width: 100%; display: block; }
.clinical-badge {
  position: absolute; top: 1rem; padding: 0.3rem 0.8rem;
  border-radius: 50px; font-size: 0.7rem; font-weight: 800; letter-spacing: 2px;
}
.clinical-badge--before { left: 1rem; background: rgba(239,68,68,0.85); color: #fff; }
.clinical-badge--after  { right: 1rem; background: rgba(16,185,129,0.85); color: #fff; }
.clinical-footer {
  display: flex; align-items: center; gap: 0.8rem; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.02);
  font-size: 0.85rem; color: var(--text-2); font-style: italic; line-height: 1.5;
  transition: all 1.2s;
}
.clinical-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   BOOKING FORM SECTION
═══════════════════════════════════════════════ */
.form-section { position: relative; z-index: 1; padding: 0 1.5rem 5rem; }
.form-section-inner { max-width: 540px; margin: 0 auto; }

/* Step Progress */
.step-progress { max-width: 400px; margin: 0 auto 2.5rem; }
.progress-track { height: 3px; background: var(--border); border-radius: 2px; margin-bottom: 1.2rem; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; width: 50%; transition: width 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.step-dots { display: flex; justify-content: space-between; }
.step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: var(--surface); border: 1px solid var(--border);
  width: 40px; height: 40px; border-radius: 50%; cursor: default;
  transition: all 0.4s ease; position: relative;
  justify-content: center;
}
.dot-num { font-size: 0.85rem; font-weight: 700; line-height: 1; }
.dot-label { position: absolute; bottom: -1.5rem; font-size: 0.7rem; color: var(--text-3); white-space: nowrap; font-weight: 500; }
.step-dot.active { background: var(--gold); border-color: var(--gold); color: #000; box-shadow: 0 0 20px var(--gold-glow); }
.step-dot.done { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.4); color: var(--green); }

/* Glass Form Card */
.glass-form-card {
  position: relative;
  background: var(--surface);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 2.5rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  transition: box-shadow 1.2s;
}
.glass-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
@media (min-width: 480px) { .glass-form-card { padding: 2.5rem 2.5rem 3rem; } }

.form-step-header { text-align: center; margin-bottom: 2rem; }
.form-step-header h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-1); margin-bottom: 0.4rem; }
.form-step-header p { font-size: 0.9rem; color: var(--text-2); }

/* Step Slide Viewport */
.step-viewport { overflow: hidden; }
.step-container { display: flex; width: 200%; transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1); }
.form-step { width: 50%; flex-shrink: 0; padding: 0 4px; }

/* Inputs */
.input-group { position: relative; margin-bottom: 2rem; }
.input-group input {
  width: 100%; padding: 1.3rem 3rem 0.6rem 1.2rem;
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
  border-radius: 14px; color: var(--text-1);
  font-family: 'Inter', sans-serif; font-size: 1rem;
  outline: none; transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}
.input-group label {
  position: absolute; top: 1rem; left: 1.2rem;
  color: var(--text-3); font-size: 0.95rem;
  transition: all 0.25s ease; pointer-events: none; cursor: text;
}
.input-group input::placeholder { color: transparent; }
.input-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.07); box-shadow: 0 0 0 4px rgba(197,160,89,0.12); }
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group input.has-value ~ label { top: 0.38rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; color: var(--text-3); }
.input-group input:focus ~ label { color: var(--gold); }

.input-icon { position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1rem; pointer-events: none; opacity: 0.5; }

.error-text { font-size: 0.73rem; color: #FCA5A5; position: absolute; bottom: -20px; left: 14px; opacity: 0; transform: translateY(-4px); transition: all 0.3s ease; pointer-events: none; }
.input-group.is-error input  { border-color: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.1); }
.input-group.is-error label  { color: #FCA5A5 !important; }
.input-group.is-error .error-text { opacity: 1; transform: translateY(0); }
.input-group.is-valid input  { border-color: rgba(16,185,129,0.6); }

/* Phone field */
.phone-flag-wrap { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0; }
.phone-flag {
  display: flex; align-items: center; gap: 0.4rem; white-space: nowrap;
  padding: 1.1rem 0.9rem; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1.5px solid var(--border);
  font-size: 0.85rem; font-weight: 600; color: var(--text-2);
  flex-shrink: 0; margin-top: 0; transition: all 1.2s;
}
.input-group--phone { flex: 1; margin-bottom: 2rem; }

.privacy-note {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-3); margin-bottom: 1.5rem; margin-top: -1.4rem;
}
.privacy-note svg { flex-shrink: 0; opacity: 0.6; }

/* Buttons */
.btn-primary {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.15rem; border: none; border-radius: 14px; cursor: pointer;
  background: #fff; color: #000; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.btn-primary:hover { background: #F0F0F0; transform: scale(0.98); box-shadow: 0 8px 25px rgba(255,255,255,0.12); }
.btn-primary:active { transform: scale(0.96); }

.btn-gold {
  width: 100%; display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; border: none; border-radius: 14px; cursor: pointer;
  background: linear-gradient(135deg, #C5A059 0%, #9B7220 100%);
  color: #fff; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.3px;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
  box-shadow: 0 8px 25px rgba(197,160,89,0.35);
}
.btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.btn-gold:hover { transform: scale(0.98); box-shadow: 0 14px 35px rgba(197,160,89,0.45); }
.btn-gold:active { transform: scale(0.96); }
.btn-gold.is-loading { opacity: 0.6; pointer-events: none; }

.btn-ghost {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem; border: none; border-radius: 14px; cursor: pointer;
  background: transparent; color: var(--text-3);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500;
  margin-top: 0.75rem; transition: all 0.25s ease;
}
.btn-ghost:hover { color: var(--text-1); background: var(--surface); }

.loader { display: none; width: 22px; height: 22px; border: 2.5px solid rgba(255,255,255,0.25); border-left-color: #fff; border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.error-banner { color: #FCA5A5; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; padding: 0.85rem; font-size: 0.88rem; text-align: center; margin-top: 1rem; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials-section { position: relative; z-index: 1; padding: 0 1.5rem 5rem; }
.testi-carousel-wrap { max-width: 540px; margin: 0 auto; position: relative; }

.testimonial-card {
  display: none;
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: revealCard 0.5s cubic-bezier(0.2,0.8,0.2,1) forwards;
  transition: box-shadow 1.2s, background 1.2s, border 1.2s;
}
.testimonial-card.active { display: block; }
@keyframes revealCard { from { opacity:0; transform: translateY(12px) scale(0.98); } to { opacity:1; transform: none; } }

.t-quote { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.5; color: rgba(197,160,89,0.2); margin-bottom: 1rem; }
.t-text { font-size: 0.97rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; }
.t-footer { display: flex; align-items: center; gap: 0.9rem; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--gold); transition: all 1.2s; }
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--text-1); display: block; transition: color 1.2s; }
.t-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }

.testi-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
  background: rgba(5,8,16,0.4);
  backdrop-filter: blur(20px);
  transition: all 1.2s;
}
.footer-inner { max-width: 500px; margin: 0 auto; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin-bottom: 0.5rem; transition: color 1.2s; }
.footer-sub { font-size: 0.85rem; color: var(--text-3); margin-bottom: 1.5rem; transition: color 1.2s; }
.footer-copy { font-size: 0.78rem; color: var(--text-3); transition: color 1.2s; }

/* ═══════════════════════════════════════════════
   OVERLAY SUCCESS MODAL
═══════════════════════════════════════════════ */
.overlay-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.overlay-modal.is-active { opacity: 1; visibility: visible; }
.modal-content {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 3rem 2rem; width: 90%; max-width: 440px; text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.overlay-modal.is-active .modal-content { transform: none; }

.success-icon-wrap { width: 80px; height: 80px; margin: 0 auto 1.8rem; position: relative; }
.success-icon {
  width: 100%; height: 100%; border-radius: 50%;
  background: rgba(16,185,129,0.12); border: 1.5px solid rgba(16,185,129,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--green);
  box-shadow: 0 0 30px rgba(16,185,129,0.2), inset 0 0 20px rgba(16,185,129,0.1);
  position: relative; z-index: 2;
}
.success-icon-wrap::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--green); opacity: 0;
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing { 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.7);opacity:0;} }

.modal-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-1); margin-bottom: 0.5rem; }
.modal-divider { width: 50px; height: 2px; background: var(--gold); margin: 1rem auto 1.2rem; opacity: 0.5; border-radius: 1px; }
.modal-content p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.65; }
.modal-subtitle { font-size: 0.85rem !important; color: rgba(255,255,255,0.45) !important; margin-top: 0.8rem; }
.modal-close-btn {
  margin-top: 2rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 0.95rem 2.5rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease;
}
.modal-close-btn:hover { background: #fff; color: #000; }

/* ═══════════════════════════════════════════════
   RETURN VISITOR GREETING BANNER
═══════════════════════════════════════════════ */
@keyframes revealDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.return-banner {
  position: sticky; top: var(--topbar-h, 44px); z-index: 150;
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border-bottom: 1px solid rgba(16,185,129,0.2);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 1.25rem;
}
body.light-theme .return-banner {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.04));
  border-bottom-color: rgba(16,185,129,0.25);
}
.return-banner-inner {
  display: flex; align-items: center; gap: 0.8rem;
  max-width: 680px; margin: 0 auto;
}
.return-emoji { font-size: 1.4rem; flex-shrink: 0; }
.return-greeting { font-size: 0.9rem; font-weight: 700; color: var(--text-1); }
.return-sub { font-size: 0.75rem; color: var(--text-2); margin-top: 0.1rem; }
.return-badge {
  margin-left: auto; flex-shrink: 0;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
  font-size: 0.72rem; font-weight: 700; color: var(--green); white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   QUIZ RETURN SUMMARY CARD (inside form section)
═══════════════════════════════════════════════ */
.quiz-return-card {
  background: rgba(197,160,89,0.06); border: 1px solid rgba(197,160,89,0.2);
  border-radius: 16px; padding: 1.1rem 1.25rem; margin-bottom: 1.25rem;
  position: relative; overflow: hidden;
  animation: screenIn 0.5s ease;
}
.quiz-return-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.qrc-header {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.85rem; flex-wrap: wrap;
}
.qrc-icon { font-size: 1rem; }
.qrc-title { font-size: 0.78rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; flex: 1; }
.qrc-check { font-size: 0.72rem; color: var(--green); font-weight: 600; background: rgba(16,185,129,0.1); padding: 0.2rem 0.6rem; border-radius: 50px; border: 1px solid rgba(16,185,129,0.2); }
.qrc-rows { display: flex; flex-direction: column; gap: 0.45rem; }
.qrc-row { display: flex; align-items: flex-start; gap: 0.6rem; }
.qrc-k { font-size: 0.7rem; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; min-width: 75px; flex-shrink: 0; padding-top: 0.05rem; }
.qrc-v { font-size: 0.85rem; color: var(--text-1); font-weight: 500; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}
.wa-float-btn {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.25s ease, padding 0.25s ease;
  overflow: hidden;
  max-width: 54px;
}
.wa-float-btn .wa-label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}
.wa-float-btn:hover {
  transform: scale(1.05);
  max-width: 180px;
  padding: 0.75rem 1.3rem;
}
.wa-float-btn:hover .wa-label {
  max-width: 120px;
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.faq-section {
  padding: 3rem 1.5rem 3rem;
}
.faq-list {
  display: flex; flex-direction: column; gap: 0;
  max-width: 600px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item summary {
  list-style: none;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.faq-item[open] summary {
  color: var(--gold);
}
.faq-item p {
  padding: 0 0 1.1rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

