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

:root {
  --navy: #0f1f33;
  --navy-dark: #080f1a;
  --navy-light: #1a3a5c;
  --green: #25D366;
  --green-dark: #1da851;
  --green-glow: rgba(37,211,102,0.4);
  --gold: #c9a227;
  --gold-light: #e8d5a3;
  --bg: #f8f9fb;
  --white: #ffffff;
  --text: #1a1a2e;
  --text-light: #64748b;
  --border: rgba(226,232,240,0.6);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 4px 24px rgba(15,31,51,0.06);
  --shadow-lg: 0 20px 60px rgba(15,31,51,0.12);
  --shadow-gold: 0 8px 32px rgba(201,162,39,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 50px; font-weight: 700; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; letter-spacing: 0.3px; white-space: nowrap; touch-action: manipulation;
  min-height: 52px; position: relative; overflow: hidden; font-family: var(--font-body);
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent);
  transform: translateX(-100%); transition: transform 0.6s;
}
.btn:hover::after { transform: translateX(100%); }
.btn-green {
  background: linear-gradient(135deg, var(--green), #128c7e);
  color: var(--white); box-shadow: 0 8px 28px var(--green-glow);
}
.btn-green:hover, .btn-green:active {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,0.45);
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(15,31,51,0.2);
}
.btn-navy:hover, .btn-navy:active {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15,31,51,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover, .btn-ghost:active {
  background: rgba(255,255,255,0.15); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
}
.btn-ghost-dark:hover, .btn-ghost-dark:active {
  background: var(--navy); color: var(--white); transform: translateY(-2px);
}
.btn-large { padding: 18px 32px; font-size: 16px; width: 100%; }

/* WhatsApp icon in buttons */
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.section { padding: 80px 0; position: relative; }
.section-title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; color: var(--navy); text-align: center;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-light); text-align: center;
  max-width: 100%; margin: 0 auto 40px; padding: 0 10px; font-weight: 400;
}
.luxury-line {
  width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--green));
  margin: 0 auto 40px; border-radius: 3px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale {
  opacity: 0; transform: scale(0.9);
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== HEADER ===== */
.sticky-header {
  position: fixed; top: 0; left: 0; right: 0; height: 64px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(226,232,240,0.5); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; transition: all 0.4s ease;
}
.sticky-header.scrolled {
  box-shadow: 0 4px 30px rgba(15,31,51,0.08);
  background: rgba(255,255,255,0.95);
  height: 60px;
}
.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--navy); letter-spacing: -0.5px;
}
.logo span { color: var(--green); font-weight: 800; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-header { padding: 10px 18px; font-size: 13px; min-height: 42px; }

/* ===== HERO ===== */
.hero {
  padding-top: 100px; padding-bottom: 60px;
  position: relative; overflow: hidden; min-height: auto;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,211,102,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.06) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1200&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.hero-grid {
  display: flex; flex-direction: column; gap: 32px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 600;
  margin-bottom: 20px; backdrop-filter: blur(8px); color: var(--gold-light);
  align-self: flex-start; letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700; line-height: 1.1; margin-bottom: 18px;
  letter-spacing: -1px; color: var(--white);
}
.hero h1 .highlight {
  color: #4ade80;
  background: linear-gradient(90deg, #4ade80, var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px; opacity: 0.88; margin-bottom: 28px;
  color: rgba(255,255,255,0.85); line-height: 1.7; font-weight: 300;
  max-width: 540px;
}
.hero-trust-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 32px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05);
  padding: 14px 14px; border-radius: 14px; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.hero-trust-item:hover {
  background: rgba(255,255,255,0.1); transform: translateY(-2px);
  border-color: rgba(255,255,255,0.15);
}
.hero-trust-item .icon { font-size: 20px; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.hero-trust-item strong { font-weight: 800; display: block; font-size: 15px; color: var(--white); }

.hero-cta-group { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.hero-cta-group .btn { width: 100%; min-width: auto; justify-content: center; }
.hero-cta-note {
  font-size: 13px; opacity: 0.8; display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); justify-content: center; margin-top: 6px;
  font-weight: 400;
}

/* ===== FORM ===== */
.form-card {
  background: rgba(255,255,255,0.97); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.5) inset;
  color: var(--text); border-top: 4px solid var(--green);
  width: 100%; backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(37,211,102,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.form-card h3 {
  font-family: var(--font-display); font-size: 22px; color: var(--navy);
  text-align: center; margin-bottom: 4px;
}
.form-card .form-sub {
  text-align: center; color: var(--text-light); font-size: 13px; margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 16px 16px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 16px; transition: all 0.3s ease;
  font-family: var(--font-body); background: var(--white);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37,211,102,0.1), 0 4px 12px rgba(37,211,102,0.08);
  transform: translateY(-1px);
}
.divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0;
  color: var(--text-light); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.form-footer {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: 11px; color: var(--text-light);
}
.form-footer .lock { color: var(--green); font-size: 14px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: 4px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.form-consent label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-consent label a {
  color: var(--green-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* Form status messages */
.form-status {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
  font-weight: 500;
}
.form-status.success { color: var(--green-dark); }
.form-status.error   { color: #dc2626; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center;
}
.trust-item {
  padding: 20px; border-radius: var(--radius-sm);
  transition: all 0.4s ease; position: relative;
}
.trust-item:hover {
  background: var(--bg); transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; display: block;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-item .lbl { font-size: 13px; color: var(--text-light); margin-top: 8px; font-weight: 500; }
.trust-item .icon { font-size: 28px; margin-bottom: 10px; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08)); }

/* ===== PRICE TABLE ===== */
.price-section { background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%); }
.price-table-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(226,232,240,0.5);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
}
.price-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.price-table th {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); padding: 18px 14px; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; white-space: nowrap;
  font-family: var(--font-body);
}
.price-table th:nth-child(2),
.price-table th:nth-child(4) {
  background: linear-gradient(135deg, var(--green), #128c7e);
  font-size: 12px;
}
.price-table td { padding: 22px 14px; border-bottom: 1px solid var(--border); transition: background 0.3s; }
.price-table tr:hover td { background: rgba(248,249,251,0.5); }
.price-table tr:last-child td { border-bottom: none; }
.treatment-name { font-weight: 700; color: var(--navy); font-size: 15px; display: block; margin-bottom: 4px; font-family: var(--font-display); }
.treatment-note { font-size: 12px; color: var(--text-light); font-weight: 400; }
.price-old { font-size: 15px; color: var(--text-light); text-decoration: line-through; font-weight: 500; }
.price-new {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: var(--green); line-height: 1;
  text-shadow: 0 2px 8px rgba(37,211,102,0.15);
}
.price-save {
  display: inline-block; background: linear-gradient(135deg, #fef2f2, #fff5f5); color: #dc2626;
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 800; margin-top: 8px;
  border: 1px solid rgba(220,38,38,0.1);
}
.price-cta-box {
  padding: 32px; text-align: center; background: linear-gradient(180deg, #f8fafc, var(--white));
  border-top: 1px solid var(--border);
}
.price-cta-box p { color: var(--text-light); font-size: 14px; margin-bottom: 18px; font-weight: 400; }

/* ===== TIMELINE ===== */
.timeline-section { background: var(--white); }
.timeline {
  display: flex; flex-direction: column; gap: 0; position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: ''; position: absolute; top: 28px; bottom: 28px; left: 28px; width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--green), var(--gold));
  z-index: 0; border-radius: 3px;
}
.step {
  display: flex; gap: 20px; align-items: flex-start;
  text-align: left; position: relative; z-index: 1;
  padding-bottom: 32px;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--white);
  border: 3px solid var(--navy); color: var(--navy); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.1), 0 0 0 4px var(--white);
  flex-shrink: 0; margin: 0; font-family: var(--font-display);
  transition: all 0.4s ease;
}
.step:hover .step-num {
  transform: scale(1.1); border-color: var(--green); color: var(--green);
  box-shadow: 0 8px 24px rgba(37,211,102,0.2), 0 0 0 4px var(--white);
}
.step:nth-child(5) .step-num { border-color: var(--green); color: var(--green); }
.step h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: var(--font-display); }
.step p { font-size: 15px; color: var(--text-light); line-height: 1.7; font-weight: 400; }
.timeline-cta { text-align: center; margin-top: 44px; }

/* ===== BEFORE / AFTER TOGGLE ===== */
.ba-section { background: linear-gradient(180deg, var(--bg), var(--white)); }
.ba-grid {
  display: flex; flex-direction: column; gap: 28px;
}
.ba-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,31,51,0.15);
}
.ba-toggle-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e2e8f0;
}
.ba-toggle-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ba-toggle-img.hidden {
  opacity: 0;
  pointer-events: none;
}
.ba-toggle-buttons {
  display: flex;
  border-top: 1px solid var(--border);
}
.ba-toggle-btn {
  flex: 1;
  padding: 14px;
  border: none;
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ba-toggle-btn:first-child { border-radius: 0 0 0 var(--radius-sm); }
.ba-toggle-btn:last-child { border-radius: 0 0 var(--radius-sm) 0; }
.ba-toggle-btn.active {
  background: linear-gradient(135deg, var(--green), #128c7e);
  color: var(--white);
}
.ba-toggle-btn:not(.active):hover {
  background: #e2e8f0;
  color: var(--navy);
}
.ba-info { padding: 28px 24px; }
.ba-name { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 17px; margin-bottom: 4px; }
.ba-meta { font-size: 13px; color: var(--text-light); margin-bottom: 14px; font-weight: 500; }
.ba-quote {
  font-size: 14px; color: var(--text); line-height: 1.7;
  border-left: 3px solid var(--gold); padding-left: 16px; font-style: italic;
}
.ba-save { color: var(--green); font-weight: 800; font-size: 14px; margin-top: 12px; display: block; }

/* ===== WHY US ===== */
.why-section { background: var(--white); }
.why-grid {
  display: flex; flex-direction: column; gap: 20px;
}
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border); text-align: left;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--green), var(--gold));
  transform: scaleY(0); transition: transform 0.4s ease; transform-origin: top;
}
.why-card:hover::before { transform: scaleY(1); }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,211,102,0.2);
}
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.1);
  transition: all 0.4s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(37,211,102,0.2);
}
.why-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; font-weight: 400; }

/* ===== CLINIC ===== */
.clinic-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2a4d7a 50%, #1e3a5f 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.clinic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.clinic-section .container { position: relative; z-index: 1; }
.clinic-section .section-title { color: var(--white); }
.clinic-section .section-sub { color: rgba(255,255,255,0.6); }
.clinic-grid {
  display: flex; flex-direction: column; gap: 20px;
}
.clinic-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.clinic-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.7s ease; }
.clinic-card:hover img { transform: scale(1.08); }
.clinic-card .clinic-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,31,51,0.9));
  padding: 40px 24px 24px;
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
}

/* ===== TEAM ===== */
.team-section { background: linear-gradient(180deg, var(--bg), var(--white)); }
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.team-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); text-align: center; border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(15,31,51,0.12);
}
.team-photo {
  height: 300px; background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex; align-items: center; justify-content: center; color: var(--text-light);
  font-size: 14px; overflow: hidden; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 32px 28px; }
.team-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.team-role { font-size: 13px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.team-creds { list-style: none; text-align: left; max-width: 100%; margin: 0 auto; padding: 0 14px; }
.team-creds li {
  font-size: 14px; color: var(--text-light); padding: 6px 0;
  display: flex; align-items: flex-start; gap: 10px; font-weight: 400;
}
.team-creds li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; font-size: 16px; }
.team-lang { margin-top: 18px; font-size: 13px; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }

/* ===== VIDEO ===== */
.video-section { 
  background: linear-gradient(135deg, var(--navy-dark), var(--navy)); 
  color: var(--white); 
}
.video-section .section-title { color: var(--white); }
.video-section .section-sub { color: rgba(255,255,255,0.6); }

.video-grid {
  display: flex; 
  flex-direction: column; 
  gap: 24px;
}

.video-card {
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); 
  padding: 28px; 
  text-align: center;
  transition: all 0.5s ease; 
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.video-thumb {
  width: 100%; 
  height: 200px; 
  background-color: #000; 
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 20px;
  overflow: hidden; 
  position: relative;
}

.video-thumb::before {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Glass glow play button — TOP LEFT */
.video-thumb .play-btn {
  width: 48px; 
  height: 48px; 
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 18px; 
  color: var(--white);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 16px; 
  left: 16px;
  z-index: 3;
}

.video-card:hover .play-btn { 
  transform: scale(1.1); 
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.2);
  background: rgba(37, 211, 102, 0.35);
}

.video-card h4 { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 6px; 
  font-family: var(--font-display); 
  color: var(--white); 
}
.video-card p { 
  font-size: 14px; 
  opacity: 0.7; 
  font-weight: 400; 
  color: var(--white); 
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  z-index: 1001;
  width: 90vw;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1002;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* ===== REVIEWS ===== */
.reviews-section { background: linear-gradient(180deg, var(--bg), var(--white)); }
.reviews-grid {
  display: flex; flex-direction: column; gap: 20px;
}
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.review-card::after {
  content: '"'; position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display); font-size: 80px; color: var(--gold);
  opacity: 0.08; line-height: 1;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-weight: 400; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15,31,51,0.2);
}
.review-name { font-weight: 700; font-size: 15px; color: var(--navy); font-family: var(--font-display); }
.review-meta { font-size: 13px; color: var(--text-light); font-weight: 400; }
.review-save { font-size: 13px; color: var(--green); font-weight: 800; margin-top: 6px; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 100%; }
.faq-item {
  background: var(--bg); border-radius: 14px; margin-bottom: 12px;
  overflow: hidden; transition: all 0.4s ease;
  border: 1px solid transparent;
}
.faq-item:hover { border-color: var(--border); }
.faq-q {
  padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 14px; font-family: var(--font-display); transition: all 0.3s ease;
}
.faq-a {
  padding: 0 22px 20px; color: var(--text-light); font-size: 15px; line-height: 1.8;
  display: none; font-weight: 400;
}
.faq-item.open {
  background: linear-gradient(135deg, #f0f7ff, #f8fbff);
  border-left: 4px solid var(--navy-light);
  box-shadow: var(--shadow);
}
.faq-item.open .faq-a { display: block; animation: fadeIn 0.4s ease; }
.faq-item.open .faq-q { color: var(--navy-light); }
.faq-icon {
  font-size: 24px; font-weight: 300; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  color: var(--text-light); flex-shrink: 0; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--white);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--green), #128c7e);
  color: var(--white);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.faq-cta { text-align: center; margin-top: 40px; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white); text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(37,211,102,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.05) 0%, transparent 50%);
}
.final-cta h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.final-cta p { font-size: 17px; opacity: 0.85; margin-bottom: 32px; font-weight: 300; position: relative; z-index: 1; }
.final-trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-top: 32px; font-size: 13px; opacity: 0.7; position: relative; z-index: 1;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer .container { padding: 0 24px; }

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-col { color: rgba(255,255,255,0.65); }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.footer-brand-name span { color: var(--green); font-weight: 800; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  font-weight: 400;
}
.footer-stats {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
  font-weight: 400;
}
.footer-links a:hover { color: var(--green); }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-contact-list .ic { flex-shrink: 0; font-size: 15px; line-height: 1.3; }
.footer-contact-list a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-contact-list a:hover { color: var(--green); }

.footer-legal-links {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal-links li { margin-bottom: 8px; }
.footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-bottom {
  text-align: center;
  padding-top: 8px;
}
.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.2px;
}

/* ===== FLOATING WA ===== */
.fab-wa {
  position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), #128c7e);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45); z-index: 999;
  animation: pulse-wa 2.5s infinite; transition: all 0.4s ease;
  border: 2px solid rgba(255,255,255,0.2);
}
.fab-wa svg { width: 28px; height: 28px; fill: currentColor; }
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.fab-label {
  position: absolute; bottom: 72px; right: 0;
  background: var(--navy); color: var(--white); padding: 8px 16px;
  border-radius: 10px; font-size: 12px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0; animation: showLabel 8s forwards;
  font-family: var(--font-body);
}
@keyframes showLabel {
  0%, 100% { opacity: 0; transform: translateY(8px); }
  8%, 92% { opacity: 1; transform: translateY(0); }
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
  .container { padding: 0 32px; }
  .section { padding: 100px 0; }
  .section-title { font-size: 44px; }
  .section-sub { font-size: 18px; max-width: 600px; margin-bottom: 56px; }
  .luxury-line { width: 80px; margin-bottom: 56px; }

  .sticky-header { height: 72px; padding: 0 40px; }
  .logo { font-size: 26px; }
  .btn-header { padding: 14px 28px; font-size: 15px; }

  .hero { padding-top: 160px; padding-bottom: 120px; min-height: 100vh; }
  .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; }
  .hero h1 { font-size: 58px; margin-bottom: 24px; }
  .hero-desc { font-size: 19px; max-width: 540px; margin-bottom: 40px; }
  .hero-trust-row { display: flex; gap: 20px; }
  .hero-trust-item { padding: 16px 20px; border-radius: 16px; }
  .hero-cta-group { align-items: flex-start; }
  .hero-cta-group .btn { width: auto; min-width: 340px; }
  .hero-cta-note { justify-content: flex-start; }

  .form-card { padding: 44px 36px; }
  .form-card h3 { font-size: 26px; }

  .trust-bar { padding: 48px 0; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .trust-item { padding: 28px 20px; }
  .trust-item .num { font-size: 40px; }
  .trust-item .lbl { font-size: 15px; }
  .trust-item .icon { font-size: 32px; }

  .price-table { min-width: auto; }
  .price-table th { padding: 24px 20px; font-size: 13px; }
  .price-table td { padding: 32px 24px; }
  .treatment-name { font-size: 18px; }
  .price-new { font-size: 36px; }
  .price-cta-box { padding: 40px; }

  .timeline {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
    padding-left: 0;
  }
  .timeline::before {
    top: 36px; left: 80px; right: 80px; bottom: auto; width: auto; height: 2px;
  }
  .step { flex-direction: column; text-align: center; padding-bottom: 0; }
  .step-num { width: 72px; height: 72px; font-size: 24px; margin: 0 auto 22px; }
  .step h4 { font-size: 18px; }
  .step p { font-size: 15px; }
  .timeline-cta { margin-top: 64px; }

  .ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .ba-toggle-wrap { height: 320px; }
  .ba-info { padding: 32px 28px; }

  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .why-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .why-icon { margin: 0 auto 20px; width: 72px; height: 72px; font-size: 32px; }
  .why-card h3 { font-size: 19px; margin-bottom: 10px; }
  .why-card p { font-size: 15px; line-height: 1.6; }

  .clinic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .clinic-card img { height: 320px; }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .team-photo { height: 340px; }

  .video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .video-thumb { height: 240px; }

  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .review-card { padding: 40px 32px; }

  .faq-list { max-width: 850px; margin: 0 auto; }
  .faq-q { padding: 24px 28px; font-size: 18px; }
  .faq-a { padding: 0 28px 24px; font-size: 16px; }
  .faq-cta { margin-top: 56px; }

  .final-cta { padding: 120px 32px; }
  .final-cta h2 { font-size: 48px; }
  .final-cta p { font-size: 20px; }
  .final-trust { gap: 40px; font-size: 15px; }

  .fab-wa { width: 68px; height: 68px; bottom: 32px; right: 32px; }
  .fab-wa svg { width: 32px; height: 32px; }
  .fab-label { bottom: 82px; padding: 10px 18px; font-size: 14px; }

  /* Desktop footer — 4 columns */
  .footer { padding: 64px 0 28px; }
  .footer .container { padding: 0 40px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 36px;
    margin-bottom: 28px;
  }
  .footer-brand-name { font-size: 22px; margin-bottom: 16px; }
  .footer-tagline { font-size: 14px; max-width: 360px; }
  .footer-col-title { font-size: 15px; margin-bottom: 20px; }
  .footer-legal { font-size: 12px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  .btn { padding: 14px 22px; font-size: 14px; }
  .btn-large { padding: 16px 26px; }
  .hero-trust-row { gap: 10px; }
  .hero-trust-item { padding: 12px; font-size: 12px; }
  .hero-trust-item strong { font-size: 14px; }
  .trust-item .num { font-size: 26px; }
  .price-new { font-size: 22px; }
  .ba-toggle-wrap { height: 220px; }
}

/* ===== BEFORE/AFTER — Show more (mobile) ===== */
.ba-card-extra.hidden-mobile { display: none; }
.ba-card-extra.show-mobile {
  display: block;
  animation: fadeIn 0.5s ease;
}
.ba-more-wrap { text-align: center; margin-top: 24px; }
.ba-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ba-more-btn:hover, .ba-more-btn:active {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,31,51,0.15);
}
.ba-more-icon { font-size: 22px; line-height: 1; font-weight: 300; }

@media (min-width: 769px) {
  .ba-card-extra.hidden-mobile { display: block; }
  .ba-more-wrap { display: none; }
}

/* ===== COOKIE CONSENT BANNER ===== */
#kc-cookie-root {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  top: auto !important;
  width: 380px !important;
  max-width: calc(100vw - 40px) !important;
  z-index: 2147483647 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: rgba(15, 31, 51, 0.55) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
  backdrop-filter: blur(24px) saturate(1.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.25) inset !important;
  opacity: 0 !important;
  transform: translateY(24px) !important;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
  pointer-events: none !important;
  visibility: hidden !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
#kc-cookie-root.kc-open {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

#kc-cookie-backdrop { display: none !important; }

#kc-cookie-card {
  position: relative !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  margin: 0 !important;
  max-width: none !important;
}
#kc-cookie-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--gold, #c9a227), var(--green, #25D366)) !important;
  opacity: 0.9 !important;
  z-index: 2 !important;
}

.kc-card-body { padding: 20px 22px 18px !important; display: block !important; }

.kc-header-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 10px !important;
  position: relative !important;
}
.kc-icon {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--green, #25D366) !important;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25), 0 0 8px rgba(37, 211, 102, 0.6) !important;
  display: inline-block !important;
  font-size: 0 !important;
  color: transparent !important;
  flex-shrink: 0 !important;
}
.kc-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  flex: 1 !important;
}
.kc-title::before {
  content: 'PRIVACY' !important;
  display: block !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600 !important;
  margin-bottom: 6px !important;
}

#kc-cookie-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  cursor: pointer !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: inherit !important;
  font-weight: 400 !important;
  padding: 0 !important;
  z-index: 3 !important;
  transition: all 0.2s ease !important;
}
#kc-cookie-close:hover { background: rgba(255, 255, 255, 0.2) !important; color: #fff !important; }

.kc-content { display: block !important; }

.kc-text {
  font-size: 12.5px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.55 !important;
  margin: 0 0 14px 0 !important;
  font-weight: 400 !important;
}
.kc-text a {
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
  text-decoration-color: var(--gold, #c9a227) !important;
  font-weight: 500 !important;
}
.kc-text a:hover { text-decoration-color: var(--green, #25D366) !important; }

.kc-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 8px !important;
}

.kc-btn {
  font-family: 'Inter', sans-serif !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 11px 10px !important;
  transition: all 0.25s ease !important;
  min-height: auto !important;
  line-height: 1.2 !important;
  text-align: center !important;
  white-space: nowrap !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.kc-btn-link {
  display: flex !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px) !important;
  font-size: 11.5px !important;
  padding: 11px 8px !important;
}
.kc-btn-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.kc-btn-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px) !important;
}
.kc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.kc-btn-primary {
  background: linear-gradient(135deg, var(--green, #25D366), var(--green-dark, #128c7e)) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
}
.kc-btn-primary:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45) !important;
}

.kc-details {
  display: none !important;
  padding: 0 22px 18px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(0, 0, 0, 0.1) !important;
  margin-top: 4px !important;
}
.kc-details.kc-show {
  display: block !important;
  animation: kcSlideDown 0.3s ease !important;
}
@keyframes kcSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.kc-detail-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.kc-detail-row:last-of-type { border-bottom: none !important; }

.kc-detail-info { flex: 1 !important; }
.kc-detail-name {
  font-weight: 600 !important;
  color: #fff !important;
  font-size: 13px !important;
  margin-bottom: 3px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}
.kc-badge {
  background: rgba(37, 211, 102, 0.2) !important;
  color: #4ade80 !important;
  padding: 2px 8px !important;
  border-radius: 10px !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: 1px solid rgba(37, 211, 102, 0.3) !important;
}
.kc-detail-desc {
  font-size: 11.5px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.5 !important;
}
.kc-details-actions {
  margin-top: 14px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}
.kc-btn-full { width: 100% !important; }

.kc-toggle {
  position: relative !important;
  width: 42px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  display: inline-block !important;
  margin-top: 2px !important;
}
.kc-toggle input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}
.kc-slider {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 24px !important;
  transition: 0.3s !important;
  cursor: pointer !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.kc-slider::before {
  content: '' !important;
  position: absolute !important;
  height: 18px !important;
  width: 18px !important;
  left: 2px !important;
  bottom: 2px !important;
  background: #fff !important;
  border-radius: 50% !important;
  transition: 0.3s !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3) !important;
}
.kc-toggle input:checked + .kc-slider {
  background: var(--green, #25D366) !important;
  border-color: var(--green, #25D366) !important;
}
.kc-toggle input:checked + .kc-slider::before { transform: translateX(18px) !important; }
.kc-toggle.kc-disabled { cursor: not-allowed !important; opacity: 0.8 !important; }
.kc-toggle.kc-disabled .kc-slider {
  background: var(--green, #25D366) !important;
  border-color: var(--green, #25D366) !important;
}

@media (max-width: 600px) {
  #kc-cookie-root {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    max-width: none !important;
  }
  .kc-actions {
    grid-template-columns: 1fr 1fr !important;
  }
  .kc-btn-link {
    grid-column: 1 / -1 !important;
    font-size: 12px !important;
  }
}

@media (min-width: 769px) {
  #kc-cookie-root {
    bottom: 32px !important;
    left: 32px !important;
  }
}
/* ===== END COOKIE BANNER ===== */
