/* ===== DESIGN TOKENS — Healing Aesthetics Palette ===== */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Fonts */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* LIGHT MODE — Warm Beige + Deep Brown (Healing Aesthetics Brand) */
:root, [data-theme="light"] {
  --color-bg:             #FAF7F2;
  --color-surface:        #F5F0E8;
  --color-surface-2:      #FFFFFF;
  --color-surface-offset: #EDE8DE;
  --color-divider:        #D9CEBE;
  --color-border:         #C9B5A0;

  --color-text:           #2C1810;
  --color-text-muted:     #6B5B4E;
  --color-text-faint:     #A89888;
  --color-text-inverse:   #FAF7F2;

  --color-primary:        #421F02;
  --color-primary-hover:  #5A2E08;
  --color-primary-active: #341900;
  --color-primary-highlight: #EDE1D0;

  --color-accent:         #4B916D;
  --color-accent-hover:   #3D7A5B;

  --shadow-sm: 0 1px 2px rgba(66, 31, 2, 0.06);
  --shadow-md: 0 4px 12px rgba(66, 31, 2, 0.08);
  --shadow-lg: 0 12px 32px rgba(66, 31, 2, 0.12);
}

/* DARK MODE */
[data-theme="dark"] {
  --color-bg:             #1A1410;
  --color-surface:        #231C16;
  --color-surface-2:      #2C231B;
  --color-surface-offset: #1E1712;
  --color-divider:        #3A3028;
  --color-border:         #4A3E32;

  --color-text:           #E8DFD4;
  --color-text-muted:     #A89888;
  --color-text-faint:     #6B5B4E;
  --color-text-inverse:   #1A1410;

  --color-primary:        #C9B5A0;
  --color-primary-hover:  #DBC8B2;
  --color-primary-active: #E8DFD4;
  --color-primary-highlight: #2C231B;

  --color-accent:         #6BAF8A;
  --color-accent-hover:   #7FC39E;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1A1410;
    --color-surface:        #231C16;
    --color-surface-2:      #2C231B;
    --color-surface-offset: #1E1712;
    --color-divider:        #3A3028;
    --color-border:         #4A3E32;
    --color-text:           #E8DFD4;
    --color-text-muted:     #A89888;
    --color-text-faint:     #6B5B4E;
    --color-text-inverse:   #1A1410;
    --color-primary:        #C9B5A0;
    --color-primary-hover:  #DBC8B2;
    --color-primary-active: #E8DFD4;
    --color-primary-highlight: #2C231B;
    --color-accent:         #6BAF8A;
    --color-accent-hover:   #7FC39E;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

/* ===== GLOBAL STYLES ===== */
body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) var(--space-6);
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-nav a:hover {
  color: var(--color-text);
}

.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--color-primary-hover);
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-6);
    gap: var(--space-4);
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(from var(--color-bg) l c h / 0.92) 0%,
    oklch(from var(--color-bg) l c h / 0.7) 45%,
    oklch(from var(--color-bg) l c h / 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-16) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content--centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 80px);
}

.hero-text {
  max-width: 560px;
}

.hero-text--centered {
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
}

[data-theme="dark"] .hero-tag {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
}

[data-theme="dark"] .hero h1 em {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: var(--space-12) var(--space-4);
    text-align: center;
  }
  .hero-content--centered {
    align-items: center;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-text--centered { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: var(--text-2xl); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--color-primary);
  padding: var(--space-10) var(--space-6);
}

.stats-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-1);
}

[data-theme="dark"] .stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

[data-theme="dark"] .stat-item h3 {
  color: var(--color-accent);
}

[data-theme="dark"] .stat-item p {
  color: var(--color-text-muted);
}

.stat-item p {
  font-size: var(--text-xs);
  color: oklch(from var(--color-text-inverse) l c h / 0.7);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* ===== SECTION CONTAINER ===== */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}

.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-10);
}

/* ===== WHAT IS SCULPTRA ===== */
.what-is {
  background: var(--color-surface);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.what-is-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.what-is-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-is-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.what-is-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.what-is-text .highlight-box {
  background: var(--color-primary-highlight);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-4) var(--space-6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-6);
}

.highlight-box p {
  font-style: italic;
  color: var(--color-text) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .what-is-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

[data-theme="dark"] .benefit-icon {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.benefit-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ===== WHY CHOOSE DR. SAAD ===== */
.why-drsaad-section {
  background: var(--color-surface);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.why-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.why-card--featured {
  grid-column: 1 / -1;
  background: var(--color-primary);
  color: #FFFFFF;
  border-color: transparent;
}

[data-theme="dark"] .why-card--featured {
  background: var(--color-accent);
  color: #1A1410;
}

.why-card--featured .why-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

[data-theme="dark"] .why-card--featured .why-icon {
  background: oklch(from #1A1410 l c h / 0.15);
  color: #1A1410;
}

.why-card--featured h3 {
  color: #FFFFFF !important;
  font-size: var(--text-xl);
  font-weight: 600;
}

[data-theme="dark"] .why-card--featured h3 {
  color: #1A1410;
}

.why-card--featured p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--text-base);
}

[data-theme="dark"] .why-card--featured p {
  color: oklch(from #1A1410 l c h / 0.75);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-primary);
}

[data-theme="dark"] .why-icon {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card--featured {
    grid-column: auto;
  }
}

/* ===== HOW IT WORKS / TIMELINE ===== */
.how-it-works {
  background: var(--color-surface);
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-divider);
}

.timeline-step {
  position: relative;
  padding-left: 64px;
  padding-bottom: var(--space-10);
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.timeline-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== TREATMENT AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.area-tag {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.area-tag svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ===== RESULTS / JOURNEY ===== */
.results-section {
  background: var(--color-surface);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.result-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.result-card .week-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.result-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.result-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== DOCTOR SECTION ===== */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

.doctor-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-height: 520px;
  background: var(--color-surface-offset);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.doctor-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.doctor-info .credentials {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.doctor-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.doctor-values {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.value-item {
  text-align: center;
}

.value-item .value-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: var(--space-2);
}

@media (max-width: 768px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .doctor-photo {
    max-height: 360px;
    max-width: 320px;
    margin: 0 auto;
  }
  .doctor-values { justify-content: center; }
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.contact-info p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.contact-detail svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-accent);
}

.contact-detail a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
}

.contact-detail a:hover {
  color: var(--color-accent);
}

.contact-detail span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-form {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: border-color var(--transition-interactive);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px oklch(from var(--color-accent) l c h / 0.15);
}

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

.form-submit {
  margin-top: var(--space-6);
}

.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
}

.form-message {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}

.form-message.success {
  display: block;
  background: oklch(from var(--color-accent) l c h / 0.12);
  color: var(--color-accent);
  border: 1px solid oklch(from var(--color-accent) l c h / 0.25);
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

[data-theme="dark"] .form-message.error {
  background: #2c1b1b;
  color: #fca5a5;
  border-color: #4a2020;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-12) var(--space-6);
}

[data-theme="dark"] .site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  color: var(--color-text);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
}

.footer-brand p {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-top: var(--space-4);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  margin-bottom: var(--space-2);
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  max-width: var(--content-wide);
  margin: var(--space-8) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid oklch(from var(--color-text-inverse) l c h / 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  opacity: 0.6;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: var(--color-divider);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

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

.testimonial-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Carousel container */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 calc(-1 * var(--space-6));
  padding: 0 var(--space-6);
}

.testimonial-track {
  display: flex;
  gap: var(--space-6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 280px;
}

.testimonial-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.testimonial-text strong {
  color: var(--color-accent);
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.author-via {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-interactive);
}

.carousel-btn:hover {
  background: var(--color-surface-offset);
  box-shadow: var(--shadow-lg);
}

.carousel-btn--prev { left: -8px; }
.carousel-btn--next { right: -8px; }

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-divider);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-interactive);
}

.carousel-dot.active {
  background: var(--color-accent);
  width: 28px;
}

/* CTA link to Google */
.testimonial-cta {
  text-align: center;
  margin-top: var(--space-8);
}

.google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  padding: var(--space-3) var(--space-5);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  transition: all var(--transition-interactive);
}

.google-link:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Responsive testimonials */
@media (max-width: 1023px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 639px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  .carousel-btn--prev { left: 4px; }
  .carousel-btn--next { right: 4px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FORM LOADING STATE ===== */
.btn-primary.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-primary.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: var(--space-2);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== PAGE HERO (Results & Payment Plans) ===== */
.page-hero {
  padding: calc(80px + var(--space-16)) var(--space-6) var(--space-12);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.page-hero-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding-top: var(--space-12);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-interactive);
}

.filter-btn:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}

[data-theme="dark"] .filter-btn.active {
  background: var(--color-accent);
  color: #1A1410;
  border-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--space-6);
}

.gallery-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-label {
  padding: var(--space-4) var(--space-5);
}

.gallery-area {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.gallery-disclaimer {
  margin-top: var(--space-10);
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-divider);
}

.gallery-disclaimer p {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  line-height: 1.6;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  animation: fadeIn 0.3s ease;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  padding: var(--space-2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Nav active state */
.nav-active {
  color: var(--color-text) !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PAYMENT PLANS PAGE ===== */
.payment-hero-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
  color: var(--color-primary);
}

[data-theme="dark"] .payment-hero-icon {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}

.payment-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.payment-feature-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.payment-feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
}

[data-theme="dark"] .payment-feature-icon {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}

.payment-feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.payment-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.payment-cta-box {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.payment-cta-box h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.payment-cta-box p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.payment-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

.payment-phone a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.payment-phone a:hover {
  text-decoration: underline;
}

.patientfi-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-highlight);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
}

[data-theme="dark"] .patientfi-badge {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .payment-features {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .payment-features {
    grid-template-columns: 1fr;
  }
}

/* ===== ENGAGEMENT ENHANCEMENTS ===== */

/* --- Reading Progress Bar --- */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  z-index: 200;
  transition: width 50ms linear;
  will-change: width;
}

/* --- Animated Stats Counter --- */
.stat-item h3 {
  transition: transform 0.3s ease;
}
.stat-item:hover h3 {
  transform: scale(1.08);
}

/* --- Card Hover Micro-interactions --- */
.benefit-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.result-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-tag {
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.area-tag:hover {
  transform: translateY(-2px);
  background: var(--color-surface-offset);
  border-color: var(--color-accent);
}

/* --- FAQ hover --- */
.faq-question {
  transition: color 0.2s ease;
}
.faq-item:hover .faq-question {
  color: var(--color-accent);
}

/* --- Header scroll shadow --- */
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

/* --- Floating Mobile CTA --- */
.floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: var(--space-3) var(--space-4);
    background: oklch(from var(--color-bg) l c h / 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-divider);
    gap: var(--space-3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .floating-cta.visible {
    transform: translateY(0);
  }
  .floating-cta a {
    flex: 1;
    text-align: center;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
  }
  .floating-cta .cta-book {
    background: var(--color-primary);
    color: var(--color-text-inverse);
  }
  .floating-cta .cta-call {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
  }
  /* Prevent footer from being hidden behind floating CTA */
  .site-footer {
    padding-bottom: calc(var(--space-8) + 60px);
  }
}

/* --- Inline CTA Banners (between sections) --- */
.inline-cta {
  background: var(--color-primary);
  padding: var(--space-10) var(--space-6);
  text-align: center;
}
.inline-cta .inline-cta-inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.inline-cta h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-3);
}
.inline-cta p {
  font-size: var(--text-base);
  color: oklch(from var(--color-text-inverse) l c h / 0.8);
  margin-bottom: var(--space-6);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.inline-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-text-inverse);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.inline-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

[data-theme="dark"] .inline-cta {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme="dark"] .inline-cta h3 {
  color: var(--color-text);
}
[data-theme="dark"] .inline-cta p {
  color: var(--color-text-muted);
}
[data-theme="dark"] .inline-cta .btn-cta {
  background: var(--color-accent);
  color: var(--color-text-inverse);
}

/* --- Internal Link Cards --- */
.internal-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (max-width: 640px) {
  .internal-links {
    grid-template-columns: 1fr;
  }
}
.internal-link-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.internal-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
.internal-link-card .link-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  color: var(--color-primary);
}
[data-theme="dark"] .internal-link-card .link-icon {
  background: var(--color-surface-offset);
  color: var(--color-accent);
}
.internal-link-card .link-text h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.internal-link-card .link-text p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== MINI BEFORE/AFTER GALLERY ===== */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (max-width: 768px) {
  .mini-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
}
.mini-gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-surface-2);
}
.mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mini-gallery-item:hover img {
  transform: scale(1.04);
}
.mini-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ===== DR. SAAD VIDEO ===== */
.doctor-video {
  margin-top: var(--space-12);
}
.video-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-wrapper video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 640px) {
  .video-wrapper {
    border-radius: var(--radius-md);
  }
}
