/* ============================================================
   AETHERIA LASER CLINIC — Premium CSS
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --primary: #c9a86a;
  --primary-dark: #b8860b;
  --primary-light: #e8d4a8;
  --secondary: #f7f3ee;
  --accent: #b8860b;
  --text: #1d1d1d;
  --text-light: #6b6b6b;
  --text-muted: #9a9a9a;
  --background: #ffffff;
  --border: rgba(201, 168, 106, 0.2);
  --border-light: rgba(201, 168, 106, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 32px rgba(201, 168, 106, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

/* ---- SCREEN READER ONLY ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 40px rgba(201, 168, 106, 0.4);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ---- SECTION COMMON ---- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--border);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title--light {
  color: #fff;
}

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.section-subtitle--left {
  text-align: left;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in-up:nth-child(2) {
  animation-delay: 0.15s;
}
.fade-in-up:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in-up:nth-child(4) {
  animation-delay: 0.45s;
}
.fade-in-up:nth-child(5) {
  animation-delay: 0.6s;
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.btn-phone:hover {
  color: var(--primary);
}

.nav-book-btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(29, 29, 29, 0.82) 0%,
    rgba(29, 29, 29, 0.65) 45%,
    rgba(29, 29, 29, 0.25) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid rgba(201, 168, 106, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--primary);
}

.hero-subheadline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.trust-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-card-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.form-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Form elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e0ddd8;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--background);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}

.form-input.error,
.form-select.error {
  border-color: #e05252;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #e05252;
  margin-top: 0.3rem;
  min-height: 1em;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.form-privacy--center {
  justify-content: center;
  margin-top: 1rem;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon {
  margin: 0 auto 1rem;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.form-success p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ============================================================
   TRUST STATS
   ============================================================ */
.trust-stats {
  padding: 5rem 0;
  background: var(--secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.stat-unit {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  padding: 2.25rem;
  background: var(--secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 106, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   TREATMENT AREAS
   ============================================================ */
.treatment-areas {
  background: var(--secondary);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.treatment-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.treatment-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.treatment-visual {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  transition: all var(--transition);
}

.treatment-card:hover .treatment-visual {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.treatment-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.treatment-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.treatment-card--cta {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-color: transparent;
  color: #fff;
}

.treatment-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.treatment-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.treatment-cta-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.treatment-card--cta .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.treatment-card--cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: #fff;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
  align-items: stretch;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: calc(12.5% + 1rem);
  right: calc(37.5% + 1rem);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-light),
    var(--primary)
  );
  z-index: 0;
}

.process-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-machine-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  display: block;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201, 168, 106, 0.12);
  line-height: 1;
  margin-bottom: 1rem;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.35);
  position: relative;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.process-step-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.process-step-features li {
  font-size: 0.83rem;
  color: var(--text-light);
  padding-left: 1.25rem;
  position: relative;
}
.process-step-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.process-connector {
  display: none;
}

.process-cta {
  text-align: center;
}

/* ============================================================
   BEFORE & AFTER
   ============================================================ */
.results-section {
  background: var(--secondary);
}

.before-after-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.before-after-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  z-index: 1;
  filter: grayscale(40%) brightness(0.85);
}

.ba-after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-label {
  position: absolute;
  bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  color: #fff;
  z-index: 5;
  pointer-events: none;
}
.ba-label--before {
  left: 1.25rem;
  background: rgba(0, 0, 0, 0.5);
}
.ba-label--after {
  right: 1.25rem;
  background: rgba(201, 168, 106, 0.85);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #fff;
  z-index: 10;
  cursor: col-resize;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  transition: box-shadow var(--transition);
}

.ba-divider:hover .ba-handle,
.ba-divider:focus .ba-handle {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ba-divider:focus-visible {
  outline: 3px solid var(--primary);
}

.results-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.result-stat {
  text-align: center;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.result-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.result-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
  background: #fff;
}

.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: center;
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--secondary);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 106, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #fff;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose-image {
  position: relative;
}

.clinic-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.clinic-image-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   MID CTA BANNER
   ============================================================ */
.mid-cta-banner {
  background: linear-gradient(135deg, #1d1d1d 0%, #2d2d2d 100%);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.mid-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 168, 106, 0.12) 0%,
    transparent 70%
  );
}

.mid-cta-content {
  position: relative;
  text-align: center;
}

.mid-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.mid-cta-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* ============================================================
   SPECIALIST
   ============================================================ */
.specialist {
  background: var(--secondary);
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.specialist-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.specialist-image-wrapper {
  position: relative;
  flex-shrink: 0;
}

.specialist-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
}

.specialist-info {
  margin-top: 1.75rem;
  flex: 1;
}

.specialist-credentials {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.5rem;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.specialist-name-block {
  margin-bottom: 1.5rem;
}

.specialist-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.specialist-title {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.specialist-quote {
  background: var(--secondary);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.specialist-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.qualifications-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.qualifications-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.qualifications-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.qualifications-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--secondary);
  overflow: hidden;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transition: transform var(--transition);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testimonial-avatar--initials {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-rating {
  margin-left: auto;
}
.stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-treatment {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.google-reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.google-rating {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.google-stars {
  color: #f5a623;
  font-size: 0.9rem;
}

.google-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   WHY CONSULT
   ============================================================ */
.consultation-section {
  background: #fff;
}

.consultation-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}

.consultation-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.consultation-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.consult-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.consult-point-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.consult-point h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.consult-point p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--secondary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-question[aria-expanded='true'] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  overflow: hidden;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ============================================================
   LEAD CAPTURE
   ============================================================ */
.lead-capture {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2020 100%);
  position: relative;
  overflow: hidden;
}

.lead-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(201, 168, 106, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(201, 168, 106, 0.05) 0%,
      transparent 50%
    );
}

.lead-capture-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 5rem;
  align-items: center;
}

.lead-capture-content .section-tag {
  margin-bottom: 1rem;
}

.lead-capture-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.lead-capture-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.lead-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.lead-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.lead-form-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.lead-form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.75rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.success-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(29, 29, 29, 0.75) 0%,
    rgba(29, 29, 29, 0.88) 100%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.final-cta-title em {
  font-style: italic;
  color: var(--primary);
}

.final-cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.footer-logo .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.75rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  padding: 0.2rem 0;
}
.footer-nav a:hover {
  color: var(--primary);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}
.contact-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.contact-list a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.contact-list a:hover {
  color: var(--primary);
}

.hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hours-table td {
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.55);
}

.hours-table td:last-child {
  text-align: right;
  color: rgba(255, 255, 255, 0.75);
}

.footer-certifications {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(201, 168, 106, 0.35);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--primary);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.floating-whatsapp {
  background: #25d366;
  color: #fff;
}
.floating-call {
  background: var(--primary);
  color: #fff;
}

.floating-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
}

.floating-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

/* ============================================================
   SCROLL CTA BAR
   ============================================================ */
.scroll-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1d1d1d;
  border-top: 1px solid rgba(201, 168, 106, 0.3);
  padding: 0.875rem 1.5rem;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-cta.visible {
  transform: translateY(0);
}
.scroll-cta[hidden] {
  display: none;
}

.scroll-cta-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scroll-cta-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.scroll-cta-close {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  padding: 0.25rem;
}
.scroll-cta-close:hover {
  color: #fff;
}

/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.popup-overlay[hidden] {
  display: none;
}

.popup-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.4s ease;
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: 50%;
  transition: all var(--transition);
}
.popup-close:hover {
  color: var(--text);
  background: var(--secondary);
}

.popup-icon {
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.popup-card h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.popup-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.popup-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.popup-features span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(201, 168, 106, 0.1);
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.popup-dismiss {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}
.popup-dismiss:hover {
  color: var(--text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .why-choose-inner {
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
  }
  .specialists-grid {
    gap: 1.5rem;
  }
  .lead-capture-inner {
    grid-template-columns: 1fr 480px;
    gap: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .treatments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-container {
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
  }
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-choose-image {
    display: none;
  }
  .specialists-grid {
    grid-template-columns: 1fr;
  }
  .consultation-inner {
    grid-template-columns: 1fr;
  }
  .consultation-image {
    display: none;
  }
  .lead-capture-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .lead-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-image-col {
    grid-column: 1 / -1;
  }
  .process-machine-img {
    max-height: 320px;
  }
  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
  }
  .nav-cta {
    display: flex;
    gap: 0.5rem;
  }
  .btn-phone span {
    display: none;
  }
  .btn-phone {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    justify-content: center;
    background: var(--secondary);
    flex-shrink: 0;
  }
  .nav-book-btn {
    font-size: 0.78rem;
    padding: 0.55rem 0.95rem;
    white-space: nowrap;
  }

  .hero {
    padding: 3rem 0 5rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-headline {
    font-size: 2.25rem;
  }
  .hero-form-card {
    padding: 1.75rem;
    order: -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .specialist-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-buttons {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }

  .hero-cta-buttons {
    flex-direction: column;
  }
  .hero-cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-headline {
    font-size: 1.9rem;
  }
  .hero-subheadline {
    font-size: 0.95rem;
  }
  .hero-trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .results-stats {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }
  .process-image-col {
    grid-column: auto;
  }

  .process-step {
    padding: 1.75rem 1.25rem;
  }

  .popup-card {
    padding: 2rem 1.5rem;
  }

  .before-after-slider {
    aspect-ratio: 3/4;
  }

  .btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.925rem;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .floating-buttons,
  .scroll-cta,
  .popup-overlay,
  .hero-scroll-indicator {
    display: none !important;
  }
  body {
    font-size: 12pt;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .hero-background {
    display: none;
  }
  .hero-headline {
    color: #000;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .fade-in,
  .fade-in-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   HIGH CONTRAST
   ============================================================ */
@media (forced-colors: active) {
  .btn-primary {
    border: 2px solid ButtonText;
  }
  .hero-overlay,
  .final-cta-overlay,
  .lead-capture::before {
    background: none;
  }
}


/* ============================================================
   FORM SUBMIT SPINNER
   ============================================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}
