/* ============================================================
   AETHERIA AESTHETICS — Premium Breast Augmentation Landing Page
   style.css — Complete Production Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-primary: #c9a86a;
  --color-primary-dark: #b8860b;
  --color-primary-light: #e8d5b0;
  --color-secondary: #f7f3ee;
  --color-accent: #b8860b;
  --color-text: #1d1d1d;
  --color-text-muted: #6b6b6b;
  --color-text-light: #9a9a9a;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f3ee;
  --color-bg-dark: #0f0f0f;
  --color-border: #e8e0d5;
  --color-border-gold: rgba(201, 168, 106, 0.3);
  --color-success: #2d7d46;
  --color-error: #c0392b;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-md: 1.125rem; /* 18px */
  --text-lg: 1.25rem; /* 20px */
  --text-xl: 1.5rem; /* 24px */
  --text-2xl: 1.875rem; /* 30px */
  --text-3xl: 2.25rem; /* 36px */
  --text-4xl: 3rem; /* 48px */
  --text-5xl: 3.75rem; /* 60px */
  --text-6xl: 4.5rem; /* 72px */

  /* Font Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-loose: 1.8;

  /* 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;

  /* Layout */
  --container-max: 1240px;
  --container-pad: 1.5rem;
  --section-pad: 5rem;
  --header-height: 76px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 32px rgba(201, 168, 106, 0.25);
  --shadow-gold-hover: 0 12px 40px rgba(201, 168, 106, 0.4);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base: 1;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
  --z-floating: 500;
}

/* ============================================================
   2. Reset & Normalize
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
}

p {
  line-height: var(--leading-normal);
}

address {
  font-style: normal;
}

blockquote {
  font-family: var(--font-heading);
}

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

/* ============================================================
   3. Typography Utilities
   ============================================================ */
.text-gold {
  color: var(--color-primary);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-center {
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   4. Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad) 0;
}

/* ============================================================
   5. Button System
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

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

/* Primary */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 168, 106, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    #9a7009 100%
  );
  box-shadow: var(--shadow-gold-hover);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Gold (for dark backgrounds) */
.btn-gold {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* White outline (for dark backgrounds) */
.btn-white-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--color-white);
}
.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--text-xs);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}
.btn-full {
  width: 100%;
}

/* Pulse animation */
.btn-pulse {
  animation: btnPulse 2.5s infinite;
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.35);
  }
  50% {
    box-shadow: 0 4px 30px rgba(201, 168, 106, 0.65);
  }
}

/* ============================================================
   6. Sticky Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--color-primary);
}

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

.footer-logo .logo-img {
  height: 38px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon svg {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.22em;
  color: var(--color-primary);
  margin-top: 2px;
}

/* Nav */
.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  justify-content: center;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(201, 168, 106, 0.08);
}

.header-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.hamburger:hover {
  background: var(--color-secondary);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: linear-gradient(135deg, #3d2e1e 0%, #6b4c2a 50%, #2a1e0f 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* strong left-side darkening for text legibility, lighter on right */
  background: linear-gradient(
    105deg,
    rgba(10, 8, 5, 0.75) 0%,
    rgba(10, 8, 5, 0.6) 45%,
    rgba(10, 8, 5, 0.2) 100%
  );
}

/* Inner layout: two columns over the bg */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

/* LEFT: content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 168, 106, 0.18);
  border: 1px solid rgba(201, 168, 106, 0.55);
  color: #e8c87a;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  width: fit-content;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, var(--text-5xl));
  font-weight: var(--weight-black);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-subheadline {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-loose);
  max-width: 520px;
  margin-bottom: var(--space-6);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.trust-item {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

.trust-check {
  color: #e8c87a;
  font-weight: var(--weight-bold);
  margin-right: 3px;
}

.trust-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: var(--weight-light);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

/* White outline button variant for dark hero bg */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

/* Float review card — inline in content, not absolutely positioned */
.hero-float-card {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 106, 0.45);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  max-width: 340px;
}

.float-star {
  display: block;
  color: #e8c87a;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.hero-float-card p {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-style: italic;
  line-height: var(--leading-snug);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-1);
}

.float-author {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--weight-medium);
}

/* RIGHT: Glassmorphism form panel */
.hero-form-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 106, 0.25);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero-form-panel-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.form-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border-radius: var(--radius-lg);
  color: #fff;
  flex-shrink: 0;
}

.form-panel-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 2px;
}

.form-panel-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-privacy-note {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  text-align: center;
  justify-content: center;
}

/* ============================================================
   8. Form Styles
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-size: var(--text-sm);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

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

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group input.valid,
.form-group textarea.valid {
  border-color: var(--color-success);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

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

.form-group {
  margin-bottom: var(--space-4);
}
.form-row .form-group {
  margin-bottom: 0;
}

.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  display: block;
  min-height: 1.2em;
  margin-top: 2px;
}

.required {
  color: var(--color-primary);
}
.optional {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  font-weight: var(--weight-regular);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  animation: fadeInUp 0.5s ease;
}

.form-success p {
  font-size: var(--text-md);
  color: var(--color-text);
  margin-top: var(--space-4);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-top: var(--space-3);
}

.success-icon {
  display: block;
  margin: 0 auto var(--space-3);
}

.success-icon svg {
  margin: 0 auto;
}

.checkmark-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.6s 0.3s ease forwards;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

/* ============================================================
   9. Stats / Trust Section
   ============================================================ */
.stats-section {
  background: var(--color-secondary);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: 0 var(--space-8);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--weight-black);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
  flex-shrink: 0;
}

.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
}

.trust-badge-sep {
  color: var(--color-primary);
  opacity: 0.5;
}

/* ============================================================
   10. Benefits Section
   ============================================================ */
.benefits-section {
  background: var(--color-bg);
}

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

.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 106, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

/* ============================================================
   11. Procedure / Overview Section
   ============================================================ */
.procedure-section {
  background: var(--color-secondary);
}

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

.procedure-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.candidate-box {
  background: var(--color-white);
  border: 1px solid var(--color-border-gold);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-6) 0;
}

.candidate-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
}

.candidate-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.candidate-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: var(--weight-medium);
}

.candidate-check {
  color: var(--color-primary);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.procedure-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-2);
}

.procedure-image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.procedure-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #d4c5a9 0%, #c9a86a 100%);
}

.procedure-image-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1.2;
}

.badge-small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}

/* ============================================================
   12. Implant Options
   ============================================================ */
.implants-section {
  background: var(--color-bg);
}

/* ── Expectations Grid ─────────────────────────────────── */
.expectations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.expectation-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
}

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

.expectation-can {
  border-top: 3px solid #2d7d46;
}

.expectation-cannot {
  border-top: 3px solid #c0392b;
}

.expectation-know {
  border-top: 3px solid var(--color-primary);
}

.expectation-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.expectation-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expectation-icon--positive {
  background: rgba(45, 125, 70, 0.1);
  color: #2d7d46;
}

.expectation-icon--negative {
  background: rgba(192, 57, 43, 0.1);
  color: #c0392b;
}

.expectation-icon--info {
  background: rgba(201, 168, 106, 0.12);
  color: var(--color-primary);
}

.expectation-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
}

.expectation-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.expectation-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

.exp-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  border-radius: var(--radius-full);
  margin-top: 2px;
}

.exp-icon--check {
  background: rgba(45, 125, 70, 0.12);
  color: #2d7d46;
}

.exp-icon--cross {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
}

.expectation-list--info .exp-icon--check {
  background: rgba(201, 168, 106, 0.15);
  color: var(--color-primary);
}

/* ============================================================
   12A. Breast Augmentation At A Glance
   ============================================================ */
.glance-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(201, 168, 106, 0.12) 0%,
      rgba(201, 168, 106, 0) 45%
    ),
    linear-gradient(180deg, #f9f6f1 0%, #fdfbf8 100%);
}

.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.glance-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

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

.glance-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  background: rgba(201, 168, 106, 0.16);
  color: var(--color-primary-dark);
}

.glance-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.glance-text {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
}

.implant-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.implant-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  position: relative;
  transition: all var(--transition-base);
}

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

.implant-featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.implant-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.implant-icon {
  margin-bottom: var(--space-5);
}

.implant-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.implant-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.implant-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.implant-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-4);
  position: relative;
}

.implant-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.implant-subsection {
  margin-bottom: var(--space-12);
}

.implant-subheading {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

/* Shape */
.shape-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 720px;
}

.shape-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}

.shape-visual {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.shape-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.shape-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

/* Profile */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: 600px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: all var(--transition-base);
}

.profile-card:hover {
  border-color: var(--color-primary);
  background: rgba(201, 168, 106, 0.05);
}

.profile-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Placement */
.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 720px;
}

.placement-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.placement-diagram {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.placement-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.placement-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

/* ============================================================
   13. Patient Journey Timeline
   ============================================================ */
.journey-section {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.journey-section .section-eyebrow {
  color: var(--color-primary);
}
.journey-section .section-title {
  color: var(--color-white);
}
.journey-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.journey-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-timeline::-webkit-scrollbar {
  display: none;
}

.journey-step {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
}

.journey-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    rgba(201, 168, 106, 0.3)
  );
  margin-top: 40px;
  position: relative;
}

.journey-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(45deg);
  opacity: 0.6;
}

.journey-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: rgba(201, 168, 106, 0.15);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.journey-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 106, 0.1);
  border: 1.5px solid rgba(201, 168, 106, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.journey-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.journey-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-loose);
}

/* ============================================================
   14. Before & After Gallery
   ============================================================ */
.gallery-section {
  background: var(--color-secondary);
}

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

.gallery-filter {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.gallery-filter:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.gallery-filter.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--color-border);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-before,
.gallery-after {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
}

.gallery-placeholder-before {
  background: linear-gradient(145deg, #d4c8b8 0%, #c0b09a 50%, #afa088 100%);
}

.gallery-placeholder-after {
  background: linear-gradient(145deg, #e8d8c0 0%, #d4bc9a 50%, #c9a86a 100%);
}

.gallery-label {
  position: absolute;
  bottom: var(--space-2);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.gallery-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--color-white);
}

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

.gallery-detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.gallery-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--leading-loose);
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-modal[hidden] {
  display: none;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: 900px;
  width: 90%;
  padding: var(--space-4);
}

.lightbox-body {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.lightbox-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--color-border);
}

.lightbox-before,
.lightbox-after {
  position: relative;
  aspect-ratio: 3/4;
}

.lightbox-ph {
  width: 100%;
  height: 100%;
}

.lightbox-info {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev,
.lightbox-next {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 106, 0.4);
}

/* ============================================================
   15. Why Aetheria
   ============================================================ */
.why-section {
  background: var(--color-bg);
}

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

.why-card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 106, 0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

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

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

/* ============================================================
   16. Surgeon Section
   ============================================================ */
.surgeon-section {
  background: var(--color-secondary);
}

.surgeon-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-16);
  align-items: center;
}

.surgeon-image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: visible;
}

.surgeon-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(145deg, #d4c5a9 0%, #b8a07a 50%, #8b6914 100%);
  display: block;
}

.surgeon-credential-badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-6));
  background: var(--color-white);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.cred-badge-icon {
  display: block;
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.surgeon-credentials-line {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-6);
  letter-spacing: 0.02em;
}

.surgeon-quote {
  background: rgba(201, 168, 106, 0.08);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}

.surgeon-quote p {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--color-text);
  line-height: var(--leading-snug);
}

.surgeon-creds-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.surgeon-creds-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.surgeon-creds-list li span {
  color: var(--color-primary);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.surgeon-stats-row {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.surgeon-stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  color: var(--color-primary);
}

.surgeon-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   17. Recovery Section
   ============================================================ */
.recovery-section {
  background: var(--color-bg);
}

.recovery-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
  margin-bottom: var(--space-12);
  position: relative;
}

.recovery-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-radius: 2px;
}

.recovery-phase {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  margin-top: var(--space-6);
  position: relative;
  transition: all var(--transition-base);
}

.recovery-phase::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.recovery-phase:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.recovery-phase-header {
  margin-bottom: var(--space-4);
}

.recovery-phase-tag {
  display: inline-block;
  background: rgba(201, 168, 106, 0.15);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}

.recovery-phase-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.recovery-phase p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
}

.aftercare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.aftercare-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.aftercare-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 106, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aftercare-item span {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

/* ============================================================
   18. Testimonials Section
   ============================================================ */
.testimonials-section {
  background: var(--color-secondary);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--transition-slow);
  will-change: transform;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  flex: 0 0 calc(33.333% - var(--space-4));
  min-width: calc(33.333% - var(--space-4));
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  color: var(--color-text);
}

.testimonial-age {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: var(--text-sm);
  letter-spacing: 1px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  border: none;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.carousel-prev,
.carousel-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  background: var(--color-white);
}

.carousel-prev:hover,
.carousel-next:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.carousel-dots {
  display: flex;
  gap: var(--space-2);
}

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

.carousel-dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

.testimonials-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-6);
}

/* ============================================================
   19. Consultation CTA Section
   ============================================================ */
.consult-cta-section {
  background: var(--color-bg);
}

.consult-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.consult-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.consult-point:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

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

.consult-point h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.consult-point p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.consult-cta-wrap {
  text-align: center;
}

/* ============================================================
   20. FAQ Section
   ============================================================ */
.faq-section {
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(201, 168, 106, 0.14) 0%,
      rgba(201, 168, 106, 0) 42%
    ),
    linear-gradient(180deg, #f8f4ef 0%, #f3ece4 100%);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 168, 106, 0.24);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 106, 0.45);
}

.faq-item.active {
  box-shadow: var(--shadow-gold);
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast);
}

.faq-question:hover {
  background: rgba(201, 168, 106, 0.08);
  color: var(--color-primary);
}

.faq-question[aria-expanded='true'] {
  background: rgba(201, 168, 106, 0.1);
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  transition:
    transform var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

.faq-question[aria-expanded='true'] .faq-icon {
  transform: rotate(180deg);
  border-color: var(--color-primary);
  background: rgba(201, 168, 106, 0.14);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  border-top: 1px solid rgba(201, 168, 106, 0.24);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  font-size: var(--text-sm);
  color: #5f574b;
  line-height: var(--leading-loose);
  padding-top: var(--space-4);
}

/* ============================================================
   21. Lead Capture Form Section
   ============================================================ */
.form-section {
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(201, 168, 106, 0.11) 0%,
      rgba(201, 168, 106, 0) 42%
    ),
    linear-gradient(180deg, #fffefc 0%, #f8f3ec 100%);
}

.form-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

.form-section-content {
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 168, 106, 0.22);
}

.form-section-sub {
  font-size: var(--text-base);
  color: #5f574b;
  margin-bottom: var(--space-8);
  line-height: var(--leading-loose);
}

.form-trust-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: #514a3f;
  font-weight: var(--weight-medium);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(201, 168, 106, 0.18);
}

.form-section-form {
  position: relative;
}

.form-section-form::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-radius: var(--radius-2xl);
  background: rgba(201, 168, 106, 0.14);
  z-index: 0;
}

.main-form {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border: 1px solid rgba(201, 168, 106, 0.28);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-xl);
}

/* ============================================================
   22. Final CTA Section
   ============================================================ */
.final-cta-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1508 50%, #2a1f05 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  isolation: auto;
  z-index: 1;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 106, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.final-cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: var(--weight-black);
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.final-cta-body {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-10);
  line-height: var(--leading-loose);
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   23. Footer
   ============================================================ */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-16);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo .logo-name {
  color: var(--color-white);
}
.footer-logo .logo-sub {
  color: var(--color-primary);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin: var(--space-3) 0 var(--space-6);
  line-height: var(--leading-normal);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(201, 168, 106, 0.08);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-4);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
}
.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-left p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

.footer-disclaimer {
  padding: var(--space-5) 0 var(--space-8);
}

.footer-disclaimer p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.25);
  line-height: var(--leading-loose);
  max-width: 800px;
}

/* ============================================================
   24. Floating Buttons
   ============================================================ */
.floating-cta-group {
  position: fixed;
  bottom: calc(var(--space-6) + 56px);
  right: var(--space-6);
  z-index: var(--z-floating);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
  pointer-events: none;
}

.floating-cta-group.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}

.floating-book {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-dark)
  );
  color: var(--color-white);
}

.floating-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.floating-call {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary-light);
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
}

.floating-call:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: calc(var(--space-6) + 56px);
  left: var(--space-6);
  z-index: var(--z-floating);
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  opacity: 0;
  transform: scale(0.8);
}

.whatsapp-btn.visible {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   25. Scroll CTA Bar
   ============================================================ */
.scroll-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 450;
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-3) var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.scroll-cta-bar.visible {
  transform: translateY(0);
}

.scroll-cta-bar[hidden] {
  display: none;
}

.scroll-cta-bar p {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.scroll-cta-close {
  position: absolute;
  right: var(--space-4);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.scroll-cta-close:hover {
  color: var(--color-white);
}

/* ============================================================
   26. Exit Intent Popup
   ============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.exit-popup-content {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-10);
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  animation: popupSlideIn 0.4s var(--transition-spring);
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.exit-popup-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.exit-popup-close:hover {
  background: var(--color-secondary);
  color: var(--color-text);
}

.exit-popup-badge {
  text-align: center;
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.exit-popup-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-3);
}

.exit-popup-sub {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.exit-popup-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* ============================================================
   27. Reveal / Animation Classes
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-up {
  transform: translateY(30px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger for grids */
.benefit-card:nth-child(1) {
  transition-delay: 0.05s;
}
.benefit-card:nth-child(2) {
  transition-delay: 0.1s;
}
.benefit-card:nth-child(3) {
  transition-delay: 0.15s;
}
.benefit-card:nth-child(4) {
  transition-delay: 0.2s;
}
.benefit-card:nth-child(5) {
  transition-delay: 0.25s;
}
.benefit-card:nth-child(6) {
  transition-delay: 0.3s;
}

.why-card:nth-child(1) {
  transition-delay: 0.05s;
}
.why-card:nth-child(2) {
  transition-delay: 0.1s;
}
.why-card:nth-child(3) {
  transition-delay: 0.15s;
}
.why-card:nth-child(4) {
  transition-delay: 0.2s;
}
.why-card:nth-child(5) {
  transition-delay: 0.25s;
}
.why-card:nth-child(6) {
  transition-delay: 0.3s;
}

.journey-step:nth-child(1) {
  transition-delay: 0.05s;
}
.journey-step:nth-child(3) {
  transition-delay: 0.15s;
}
.journey-step:nth-child(5) {
  transition-delay: 0.25s;
}
.journey-step:nth-child(7) {
  transition-delay: 0.35s;
}
.journey-step:nth-child(9) {
  transition-delay: 0.45s;
}

/* ============================================================
   28. Animations
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   29. Responsive — 1280px
   ============================================================ */
@media (max-width: 1280px) {
  :root {
    --container-pad: 2rem;
  }

  .hero-content {
    padding: var(--space-12) var(--space-12) var(--space-10) var(--space-12);
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: var(--space-6);
  }
}

/* ============================================================
   30. Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 4rem;
    --header-height: 68px;
  }

  /* Header */
  .main-nav {
    display: none;
  }
  .hamburger {
    display: none;
  }

  .header-actions {
    gap: var(--space-2);
  }

  .header-phone-text {
    display: none;
  }

  .header-phone {
    width: 38px;
    height: 38px;
    justify-content: center;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 50%;
    padding: 0;
  }

  .header-cta {
    display: inline-flex;
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
  }

  /* Mobile nav open */
  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: var(--z-overlay);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
  }

  .main-nav.open .nav-list {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .main-nav.open .nav-link {
    font-size: var(--text-xl);
    padding: var(--space-3) var(--space-6);
  }

  /* Hero — narrow to a smaller right column */
  .hero-inner {
    grid-template-columns: 1fr 360px;
    gap: var(--space-8);
  }

  /* Grids */
  .benefits-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expectations-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .glance-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .implant-types-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .procedure-grid,
  .surgeon-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .surgeon-credential-badge {
    right: var(--space-4);
  }

  .recovery-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .recovery-timeline::before {
    display: none;
  }

  .recovery-phase::before {
    display: none;
  }

  .aftercare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-timeline {
    padding: 0 0 var(--space-4);
    gap: var(--space-2);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--space-3));
    min-width: calc(50% - var(--space-3));
  }

  .form-section-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .form-section-content {
    padding: var(--space-6);
  }

  .form-section-form::before {
    inset: 10px -8px -10px 8px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .stat-divider {
    display: none;
  }

  .placement-grid,
  .shape-grid {
    max-width: 100%;
  }
}

/* ============================================================
   31. Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 3rem;
    --container-pad: 1.25rem;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  /* Stack vertically on mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .hero-form-panel {
    padding: var(--space-5);
    order: -1;
  }

  .hero-float-card {
    max-width: 100%;
  }

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

  .hero-trust-badges {
    flex-wrap: wrap;
  }

  .trust-divider {
    display: none;
  }

  .benefits-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .expectations-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .glance-card {
    padding: var(--space-6);
  }

  .shape-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-grid {
    grid-template-columns: 1fr;
  }

  .recovery-timeline {
    grid-template-columns: 1fr;
  }

  .aftercare-grid {
    grid-template-columns: 1fr 1fr;
  }

  .consult-points-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .journey-timeline {
    flex-direction: column;
    overflow: visible;
  }

  .journey-connector {
    display: none;
  }

  .journey-step {
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .surgeon-grid {
    grid-template-columns: 1fr;
  }

  .surgeon-stats-row {
    gap: var(--space-5);
  }

  .main-form {
    padding: var(--space-6);
  }

  .faq-question {
    font-size: var(--text-sm);
    padding: var(--space-4) var(--space-4);
  }

  .faq-answer {
    padding: 0 var(--space-4) var(--space-4);
  }

  .scroll-cta-bar p {
    font-size: var(--text-xs);
  }

  .floating-book span {
    display: none;
  }

  .floating-book {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
}

/* ============================================================
   32. Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root {
    --section-pad: 2.5rem;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .hero-heading {
    font-size: var(--text-3xl);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

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

  .implant-types-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aftercare-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .procedure-grid {
    grid-template-columns: 1fr;
  }

  .surgeon-stats-row {
    flex-direction: column;
    gap: var(--space-4);
  }

  .trust-badges-row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .trust-badge-sep {
    display: none;
  }
}

/* ============================================================
   33. Print Styles
   ============================================================ */
@media print {
  .site-header,
  .floating-cta-group,
  .whatsapp-btn,
  .scroll-cta-bar,
  .exit-popup,
  .lightbox-modal {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 2rem 0;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   34. Focus & Accessibility
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip to main content */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  z-index: calc(var(--z-sticky) + 10);
  transition: top var(--transition-fast);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
  outline: 2px solid var(--color-primary-dark);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-pulse {
    animation: none;
  }
}
