/* ===== DESIGN TOKENS ===== */
:root {
  --bg-primary: #FAF8F5;
  --bg-alt: #F5EDE8;
  --bg-dark: #1B3A5C;
  --text-primary: #2D2D2D;
  --text-light: #6B6B6B;
  --text-white: #FFFFFF;
  --accent-gold: #C6A664;
  --accent-gold-light: #E8D5A3;
  --accent-rose: #D4A0A0;
  --accent-navy: #1B3A5C;
  --accent-orange: #E8A838;
  --accent-lila: #9B8BB4;
  --accent-silver: #A8A8A8;
  --accent-blue: #2E86AB;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 32px rgba(198, 166, 100, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

section[id] {
  scroll-margin-top: 60px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.gold-text {
  color: var(--accent-gold);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.navbar.menu-open .nav-logo {
  opacity: 0;
  pointer-events: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent-gold) !important;
  color: var(--text-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #b8963a !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-header,
.mobile-menu-footer {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .mobile-toggle span {
  background: var(--text-primary);
}

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

.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(135deg, rgba(27, 58, 92, 0.85) 0%, rgba(27, 58, 92, 0.5) 50%, rgba(198, 166, 100, 0.3) 100%);
  z-index: 1;
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 20px;
}

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

.hero-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #b8963a);
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(198, 166, 100, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--text-white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
}

/* ===== WHAT IS SECTION ===== */
.what-is {
  padding: 100px 0;
  background: var(--bg-primary);
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-is-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.what-is-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.what-is-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-gold-light);
  pointer-events: none;
}

.what-is-content h2 {
  margin-bottom: 20px;
}

.what-is-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.what-is-content .highlight-box {
  background: linear-gradient(135deg, var(--bg-alt), rgba(232, 213, 163, 0.2));
  border-left: 4px solid var(--accent-gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.highlight-box strong {
  color: var(--accent-gold);
}

/* ===== BENEFITS CAROUSEL ===== */
.benefits {
  padding: 100px 0;
  background: var(--bg-alt);
}

.benefits-swiper .swiper-wrapper {
  align-items: stretch;
}

.benefits-swiper .swiper-slide {
  height: auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent-gold-light);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text-white);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.benefit-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.swiper {
  padding-bottom: 50px !important;
}

.swiper-pagination-bullet {
  background: var(--accent-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-gold) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem !important;
}

/* ===== TREATMENTS ===== */
.treatments {
  padding: 100px 0;
  background: var(--bg-primary);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.treatment-card-header {
  padding: 32px 28px 24px;
  position: relative;
}

.treatment-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.treatment-card[data-color="orange"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-orange), #f0c060);
}

.treatment-card[data-color="rose"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-rose), #e8c0c0);
}

.treatment-card[data-color="silver"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-silver), #d0d0d0);
}

.treatment-card[data-color="lila"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-lila), #c4b8d8);
}

.treatment-card[data-color="gold"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.treatment-card[data-color="blue"] .treatment-card-header::before {
  background: linear-gradient(90deg, var(--accent-blue), #4fa8c8);
}

.treatment-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.treatment-icon svg {
  width: 24px;
  height: 24px;
}

.treatment-card[data-color="orange"] .treatment-icon {
  background: rgba(232, 168, 56, 0.12);
  color: var(--accent-orange);
}

.treatment-card[data-color="rose"] .treatment-icon {
  background: rgba(212, 160, 160, 0.15);
  color: var(--accent-rose);
}

.treatment-card[data-color="silver"] .treatment-icon {
  background: rgba(168, 168, 168, 0.12);
  color: var(--accent-silver);
}

.treatment-card[data-color="lila"] .treatment-icon {
  background: rgba(155, 139, 180, 0.12);
  color: var(--accent-lila);
}

.treatment-card[data-color="gold"] .treatment-icon {
  background: rgba(198, 166, 100, 0.12);
  color: var(--accent-gold);
}

.treatment-card[data-color="blue"] .treatment-icon {
  background: rgba(46, 134, 171, 0.12);
  color: var(--accent-blue);
}

.treatment-card h3 {
  margin-bottom: 4px;
}

.treatment-card .treatment-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.treatment-card-body {
  padding: 0 28px 28px;
}

.treatment-card-body ul {
  margin-bottom: 20px;
}

.treatment-card-body li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.treatment-card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent-gold);
}

.treatment-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px 24px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 40px 28px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid var(--accent-gold);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.process-card-number {
  position: absolute;
  top: -10px;
  right: 12px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(198, 166, 100, 0.18);
  line-height: 1;
  pointer-events: none;
}

.process-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.process-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--bg-primary);
}

.gallery-swiper .swiper-slide {
  width: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-swiper .swiper-slide:hover {
  transform: scale(1.03);
}

.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-gold-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 8px;
}

.about-role {
  color: var(--accent-gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-badges {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 166, 100, 0.1);
  border: 1px solid var(--accent-gold-light);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-gold);
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2a5580 50%, var(--accent-gold) 150%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(198, 166, 100, 0.15) 0%, transparent 70%);
}

.cta-final h2 {
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-final .btn {
  position: relative;
  font-size: 1.1rem;
  padding: 16px 40px;
}

.cta-phone {
  color: var(--accent-gold-light);
  font-size: 1.2rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--accent-gold);
}

.footer-col h4 {
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #FFFFFF;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 48px 140px;
    gap: 0;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-rose), var(--accent-gold-light));
  }

  .nav-links a {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(198, 166, 100, 0.25);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active a:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active a:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active a:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active a:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active a:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.active a:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links .nav-cta {
    margin-top: 100px;
    border-bottom: none;
    text-align: center;
    border-radius: 50px;
    padding: 14px 32px;
  }


  /* Mobile menu details */
  .mobile-menu-header,
  .mobile-menu-footer {
    display: block;
  }

  .mobile-menu-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 28px 48px 0;
  }

  .mobile-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
  }

  .mobile-logo span {
    color: var(--accent-gold);
  }

  .mobile-divider {
    width: 40px;
    height: 1px;
    background: rgba(198, 166, 100, 0.3);
    border-radius: 2px;
    margin-top: 16px;
  }

  .mobile-menu-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 48px 40px;
  }

  .mobile-menu-footer .mobile-divider {
    margin-bottom: 16px;
    margin-top: 0;
  }

  .mobile-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
  }

  .mobile-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--accent-gold);
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle.active span {
    background: var(--text-primary);
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .what-is-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-is-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    text-align: center;
  }

  .about-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-badges {
    justify-content: center;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 140px 0 80px;
  }
}

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

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 72px 0 !important;
  }
}