/* ======================================================
   COPERGRINE HEALTH & WELLNESS — PREMIUM v3
   Multi-Page Edition
   White + Navy + Teal-Green + Blush
   ====================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #FFFFFF;
  --bg-alt: #FCFCFD;
  --bg-warm: #FBF9F7;
  --primary: #0F1B2D;
  --primary-600: #1E3A5F;
  --text: #3D4F5F;
  --text-muted: #7A8B9A;
  --text-light: #A0ADB8;
  --teal: #0D8A7C;
  --teal-hover: #0B7A6E;
  --teal-dark: #0A6E62;
  --green-deep: #14513E;
  --teal-light: #E6F5F1;
  --teal-50: #F0FAF7;
  --blush: #F5E6E0;
  --blush-bg: #FBF3F0;
  --blush-medium: #EACFC3;
  --blush-accent: #C9907F;
  --blush-dark: #A07060;
  --white: #FFFFFF;
  --glass-bg: rgba(255,255,255,0.65);
  --glass-border: rgba(255,255,255,0.88);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg,
      rgba(13,138,124,0.15) 0%,
      rgba(10,110,98,0.10) 25%,
      rgba(255,255,255,0) 50%,
      rgba(11,122,110,0.12) 75%,
      rgba(13,138,124,0.15) 100%
    ),
    var(--bg);
  font-size: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-script { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 2vw, 32px); }
.text-center { text-align: center; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--primary); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 2rem + 2.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.8vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); font-weight: 600; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.78rem); font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--teal); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); max-width: 580px; margin: 0 auto clamp(32px, 3vw, 48px); font-size: clamp(0.92rem, 0.85rem + 0.2vw, 1.05rem); }
.section {
  padding: clamp(60px, 6vw, 100px) 0; position: relative;
  background:
    linear-gradient(145deg,
      rgba(13,138,124,0.05) 0%,
      rgba(255,255,255,0) 40%,
      rgba(11,122,110,0.03) 70%,
      rgba(13,138,124,0.05) 100%
    );
}
.section-alt {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,138,124,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(10,110,98,0.04) 0%, transparent 50%),
    var(--bg-alt);
}

/* === PAGE WRAPPER — nav offset for inner pages === */
.page-wrapper {
  padding-top: clamp(56px, 5vw, 70px);
}

/* === SCROLL REVEAL SYSTEM === */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-bounce); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; } .d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }
.d7 { transition-delay: 0.7s; } .d8 { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: clamp(12px, 1vw, 15px) clamp(24px, 2.2vw, 34px); border-radius: 50px; font-weight: 600; font-size: clamp(0.84rem, 0.78rem + 0.2vw, 0.92rem);
  text-decoration: none; border: none; cursor: pointer; transition: all 0.35s var(--ease);
  font-family: inherit;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,138,124,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: rgba(255,255,255,0.12); color: #fff; border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn-blush { background: var(--blush-accent); color: #fff; }
.btn-blush:hover { background: var(--blush-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,144,127,0.3); }
.btn-sm { padding: clamp(9px, 0.8vw, 11px) clamp(18px, 1.5vw, 24px); font-size: clamp(0.8rem, 0.75rem + 0.15vw, 0.84rem); }
.btn-ghost { background: none; border: none; color: var(--teal); font-weight: 600; cursor: pointer; padding: 0; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; font-family: inherit; text-decoration: none; }
.btn-ghost:hover { gap: 10px; }
.btn-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, var(--green-deep) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(13,138,124,0.3);
}
.btn-gradient:hover {
  box-shadow: 0 8px 28px rgba(13,138,124,0.45); transform: translateY(-2px);
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent; transition: all 0.35s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 16px rgba(0,0,0,0.06); border-bottom-color: rgba(0,0,0,0.04); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 clamp(16px, 2vw, 32px); height: clamp(56px, 5vw, 70px); }
.nav-logo { display: flex; flex-direction: column; align-items: center; text-decoration: none; gap: 0; }
.nav-logo img { height: clamp(30px, 2.5vw, 38px); }
.nav-logo-sub { font-size: clamp(0.5rem, 0.45rem + 0.1vw, 0.58rem); color: var(--teal); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; font-family: 'Inter', sans-serif; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2vw, 28px); list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: clamp(0.8rem, 0.75rem + 0.15vw, 0.88rem); font-weight: 500; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--teal); transition: width 0.3s; border-radius: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: clamp(8px, 0.7vw, 10px) clamp(18px, 1.6vw, 24px); border-radius: 50px; background: var(--teal); color: #fff; font-weight: 600; font-size: clamp(0.78rem, 0.72rem + 0.15vw, 0.84rem); text-decoration: none; transition: all 0.3s var(--ease); white-space: nowrap; border: none; cursor: pointer; font-family: 'Inter', sans-serif; }
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--primary); }

/* === NAV DROPDOWN === */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; padding: 12px 0;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius); box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.05);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; color: var(--text); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
}
.nav-dropdown-link:hover, .nav-dropdown-link.active {
  background: var(--teal-light); color: var(--teal);
}
.nav-dropdown-link i { color: var(--teal); opacity: 0.6; }
.nav-dropdown-link:hover i { opacity: 1; }
/* Remove underline pseudo on the Services trigger */
.nav-dropdown > a::after { display: none; }

/* Mobile Drawer */
.mobile-backdrop { display: none; position: fixed; inset: 0; background: rgba(15,27,45,0.4); backdrop-filter: blur(4px); z-index: 1001; opacity: 0; transition: opacity 0.3s; }
.mobile-backdrop.open { display: block; opacity: 1; }
.mobile-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: rgba(255,255,255,0.98); backdrop-filter: blur(24px); z-index: 1002; padding: 24px; transition: right 0.4s var(--ease); overflow-y: auto; }
.mobile-drawer.open { right: 0; }
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-close { background: none; border: none; cursor: pointer; color: var(--text); padding: 4px; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-link { display: block; padding: 14px 16px; color: var(--text); text-decoration: none; font-weight: 500; border-radius: var(--radius-sm); transition: all 0.3s; }
.mobile-link:hover { background: var(--teal-light); color: var(--teal); }
.mobile-cta-wrap { margin-top: 24px; }
.mobile-cta { display: block; width: 100%; text-align: center; padding: 14px; background: var(--teal); color: #fff; border-radius: 50px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 1rem; }

/* Mobile Accordion for Services */
.mobile-accordion-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 16px; color: var(--text); text-decoration: none;
  font-weight: 500; border-radius: var(--radius-sm); transition: all 0.3s;
  background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1rem;
}
.mobile-accordion-toggle:hover { background: var(--teal-light); color: var(--teal); }
.mobile-accordion-toggle .chevron { transition: transform 0.3s var(--ease); }
.mobile-accordion-toggle.open .chevron { transform: rotate(180deg); }
.mobile-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.mobile-accordion-body a {
  display: block; padding: 10px 16px 10px 32px; color: var(--text-muted);
  text-decoration: none; font-size: 0.9rem; font-weight: 500;
  border-radius: var(--radius-sm); transition: all 0.2s;
}
.mobile-accordion-body a:hover { background: var(--teal-light); color: var(--teal); }

/* === HERO VIDEO — RIGHT COLUMN === */
.hero-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}
.hero-video-container::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 7%;
  background: linear-gradient(to right, #FEFEFE 0%, rgba(254,254,254,0) 100%);
  z-index: 2; pointer-events: none;
}
.hero-video-container::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.15) 0%,
      rgba(13,138,124,0.08) 30%,
      rgba(255,255,255,0.1) 60%,
      rgba(13,138,124,0.06) 100%
    );
  mix-blend-mode: normal;
  pointer-events: none; z-index: 1;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* === HERO — PREMIUM SPLIT LAYOUT === */
.hero {
  position: relative; display: grid; grid-template-columns: 48% 52%;
  min-height: auto; overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(13,138,124,0.06) 0%,
      rgba(11,122,110,0.03) 40%,
      rgba(255,255,255,0) 60%,
      rgba(10,110,98,0.05) 100%
    ),
    #FEFEFE;
  margin-bottom: clamp(32px, 4vw, 60px);
  max-width: 75%; margin-left: auto; margin-right: auto;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; top: -10%; right: 5%;
  background: radial-gradient(circle, rgba(13,138,124,0.12) 0%, transparent 70%);
}
.hero-orb-2 { width: 400px; height: 400px; bottom: 10%; left: -5%;
  background: radial-gradient(circle, rgba(201,144,127,0.1) 0%, transparent 70%);
  animation-delay: -4s;
}
.hero-orb-3 { width: 300px; height: 300px; top: 40%; right: 30%;
  background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, #fff, transparent); z-index: 3;
}
.hero-content {
  position: relative; z-index: 2; text-align: left;
  padding: 0 clamp(24px, 3vw, 48px) clamp(24px, 3vw, 48px) clamp(4%, 6%, 8%);
  display: flex; flex-direction: column; justify-content: center;
  align-self: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  background: linear-gradient(135deg, rgba(13,138,124,0.1), rgba(13,138,124,0.05));
  color: var(--teal); padding: clamp(8px, 0.7vw, 10px) clamp(14px, 1.3vw, 20px);
  border-radius: 50px; font-size: clamp(0.68rem, 0.62rem + 0.15vw, 0.76rem); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: clamp(16px, 1.5vw, 24px);
  margin-top: 25%;
  border: 1px solid rgba(13,138,124,0.15);
  animation: badgePop 0.6s 0.2s var(--ease) both;
}
@keyframes badgePop { from { opacity: 0; transform: scale(0.8) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.hero h1 { color: var(--primary); margin-bottom: clamp(16px, 1.5vw, 24px); line-height: 1.05; font-size: clamp(2.2rem, 1.8rem + 2.8vw, 3.8rem); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block; transform: translateY(110%);
  animation: lineReveal 0.9s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.6s; }
@keyframes lineReveal { to { transform: translateY(0); } }
.hero-sub { color: var(--text); margin-bottom: clamp(20px, 2vw, 32px); max-width: 580px; }
.hero-sub p { font-size: clamp(0.92rem, 0.84rem + 0.25vw, 1.05rem); line-height: 1.7; font-weight: 500; margin-bottom: clamp(10px, 1vw, 16px); }
.hero-categories {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(12px, 1.2vw, 18px);
}
.hero-cat-card {
  padding: 12px 16px; border-radius: 0;
  background: rgba(255,255,255,0.45); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: -6px 6px 18px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative; overflow: hidden;
}
.hero-cat-label {
  font-size: clamp(0.74rem, 0.68rem + 0.15vw, 0.82rem); font-weight: 800;
  color: var(--teal); text-transform: uppercase; letter-spacing: 1.2px;
  display: block; margin-bottom: 4px;
}
.hero-cat-card ul {
  list-style: disc; padding-left: 16px; margin: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-cat-card ul li {
  font-size: clamp(0.72rem, 0.66rem + 0.15vw, 0.78rem);
  color: var(--text); font-weight: 400;
}
/* Wellness Juice Shots — metallic teal→deep blue */
.hero-cat-juice.glass-mirror {
  background: linear-gradient(135deg, rgba(13,138,124,0.85) 0%, rgba(10,80,120,0.92) 50%, rgba(8,40,82,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 6px 24px rgba(8,40,82,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}
.hero-cat-juice.glass-mirror::before {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.4) 0%,
    rgba(13,138,124,0.3) 25%,
    rgba(255,255,255,0.15) 50%,
    rgba(10,80,120,0.3) 75%,
    rgba(255,255,255,0.3) 100%
  );
  opacity: 0.7;
}
.hero-cat-juice.glass-mirror:hover::before { opacity: 1; }
.hero-cat-juice.glass-mirror:hover {
  box-shadow:
    0 20px 56px rgba(8,40,82,0.4),
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}
.hero-cat-juice .glass-light {
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(13,138,124,0.3) 40%, transparent 70%);
}
.hero-cat-juice .glass-sheen {
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.25) 55%,
    transparent 70%
  ) !important;
  background-size: 250% 100% !important;
}
.hero-cat-juice .hero-cat-label {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-cat-juice ul li {
  color: rgba(255,255,255,0.9);
}
.hero-trust-bar {
  grid-column: 1 / -1; z-index: 4;
  display: flex; justify-content: center; gap: clamp(12px, 1.2vw, 20px); flex-wrap: wrap;
  padding: clamp(18px, 1.8vw, 28px) clamp(24px, 3vw, 48px);
  background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(13,138,124,0.08);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: clamp(10px, 0.8vw, 14px) clamp(16px, 1.4vw, 24px);
  border-radius: 50px; background: #fff; border: 1px solid rgba(13,138,124,0.12);
  font-size: clamp(0.85rem, 0.78rem + 0.2vw, 0.95rem); font-weight: 800; color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); letter-spacing: 0.3px;
}
.hero-pill i { color: var(--teal); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right {
  position: relative; z-index: 2;
  align-self: center;
  padding: 0 0 clamp(24px, 3vw, 48px) 0;
  margin-left: -18px;
}
.hero-glass-card {
  background: rgba(255,255,255,0.65); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 0;
  padding: 44px 40px; width: 100%; max-width: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
.hero-glass-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--primary);
  margin-bottom: 8px; font-weight: 700;
}
.hero-glass-card > p {
  font-size: 0.84rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.5;
}
.hero-stats { display: flex; flex-direction: column; gap: 20px; }
.hero-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 0;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
}
.hero-stat:hover { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateX(4px); }
.hero-stat-icon {
  width: 44px; height: 44px; border-radius: 0; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat:nth-child(1) .hero-stat-icon { background: var(--teal-light); color: var(--teal); }
.hero-stat:nth-child(2) .hero-stat-icon { background: #EDE7F6; color: #7c3aed; }
.hero-stat:nth-child(3) .hero-stat-icon { background: #FFF3E0; color: #F57C00; }
.hero-stat-info { flex: 1; }
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 1rem + 0.6vw, 1.6rem); font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-stat-label { font-size: 0.76rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.hero-stat-pulse {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); box-shadow: 0 0 8px rgba(13,138,124,0.5);
  animation: pulse-fast 1.5s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse-fast { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

/* === SERVICES SECTION === */
.services-section {
  padding: clamp(60px, 6vw, 100px) 0;
  position: relative;
  scroll-margin-top: clamp(56px, 5vw, 70px);
  background:
    linear-gradient(145deg,
      rgba(13,138,124,0.05) 0%,
      rgba(255,255,255,0) 40%,
      rgba(11,122,110,0.03) 70%,
      rgba(13,138,124,0.05) 100%
    );
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 1.4vw, 20px);
}
.service-card {
  display: flex; flex-direction: column; padding: clamp(24px, 2vw, 32px);
  text-decoration: none; border-radius: var(--radius); cursor: pointer;
  transition: all 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,1);
}
.service-card-icon {
  width: clamp(48px, 3.5vw, 56px); height: clamp(48px, 3.5vw, 56px);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(14px, 1.2vw, 18px); transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card-icon { transform: scale(1.1) rotate(6deg); }
.sc-teal { background: var(--teal-light); color: var(--teal); }
.sc-green { background: #E8F5E9; color: #388E3C; }
.sc-blush { background: var(--blush); color: var(--blush-accent); }
.sc-purple { background: #EDE7F6; color: #7c3aed; }
.sc-blue { background: #E3F2FD; color: #1976D2; }
.sc-amber { background: #FFF3E0; color: #d97706; }
.sc-deep { background: #E0F2F1; color: #0f766e; }
.service-card h3 {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem); margin-bottom: 8px; color: var(--primary);
}
.service-card p {
  font-size: clamp(0.82rem, 0.76rem + 0.15vw, 0.88rem); color: var(--text-muted); line-height: 1.6;
  flex: 1; margin-bottom: 12px;
}
.service-card-arrow {
  display: inline-flex; align-items: center; color: var(--teal);
  font-weight: 600; font-size: 0.84rem; opacity: 0;
  transform: translateX(-8px); transition: all 0.3s var(--ease);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* === HORIZONTAL STATS BAR (below service cards) === */
.hero-stats-bar {
  padding: clamp(36px, 4vw, 56px) 0;
  background:
    linear-gradient(170deg,
      rgba(13,138,124,0.05) 0%,
      rgba(255,255,255,0) 50%,
      rgba(11,122,110,0.04) 100%
    ),
    var(--bg-alt);
  border-top: 1px solid rgba(0,0,0,0.04);
}
.hero-stats-row {
  display: flex; justify-content: center; gap: clamp(28px, 3.2vw, 48px); flex-wrap: wrap;
}
.hero-stat-h {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(4px, 0.5vw, 8px); min-width: clamp(110px, 10vw, 140px);
}
.hero-stat-h-icon {
  width: clamp(42px, 3.5vw, 52px); height: clamp(42px, 3.5vw, 52px); border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-light); color: var(--teal);
  margin-bottom: 4px;
}
.hero-stat-h:nth-child(2) .hero-stat-h-icon { background: #EDE7F6; color: #7c3aed; }
.hero-stat-h:nth-child(3) .hero-stat-h-icon { background: #FFF3E0; color: #F57C00; }
.hero-stat-h:nth-child(4) .hero-stat-h-icon { background: #E8F5E9; color: var(--green-deep); }
.hero-stat-h-num {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem); font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-stat-h-label {
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.78rem); color: var(--text-muted); font-weight: 600;
}

/* === GLASS MIRROR INTERACTIVE SYSTEM === */
.glass-mirror {
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius);
  box-shadow:
    -6px 6px 18px rgba(0,0,0,0.15),
    0 8px 24px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  will-change: transform;
}
.glass-mirror:hover {
  box-shadow:
    -8px 10px 28px rgba(0,0,0,0.2),
    0 14px 36px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.85);
}
.glass-mirror .glass-light {
  position: absolute; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.15) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 1;
  left: var(--mx, -200px); top: var(--my, -200px);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.35s;
}
.glass-mirror:hover .glass-light { opacity: 1; }
.glass-mirror .glass-sheen {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.08) 55%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s var(--ease);
}
.glass-mirror:hover .glass-sheen { background-position: -50% 0; }
.glass-mirror::before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; z-index: 0;
  background: linear-gradient(
    135deg,
    rgba(13,138,124,0.0) 0%,
    rgba(13,138,124,0.15) 25%,
    rgba(200,160,220,0.12) 50%,
    rgba(13,138,124,0.15) 75%,
    rgba(13,138,124,0.0) 100%
  );
  opacity: 0; transition: opacity 0.4s;
}
.glass-mirror:hover::before { opacity: 1; }
.glass-ripple {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 3;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 50%, transparent 70%);
  animation: glassRipple 0.65s var(--ease) forwards;
}
@keyframes glassRipple {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 400px; height: 400px; opacity: 0; }
}
.glass-mirror > *:not(.glass-light):not(.glass-sheen):not(.glass-ripple) { position: relative; z-index: 4; }

/* === EXPANDABLE PRICING === */
.expand-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--primary); text-align: left;
  transition: color 0.3s;
}
.expand-trigger:hover { color: var(--teal); }
.expand-trigger .expand-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.35s var(--ease);
}
.expand-card.open .expand-trigger .expand-icon { background: var(--teal); color: #fff; transform: rotate(45deg); }
.expand-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.expand-body-inner { padding: 0 24px 24px; }
.expand-card { margin-bottom: 12px; }
.expand-card.open { border-color: var(--teal) !important; box-shadow: -6px 6px 18px rgba(0,0,0,0.15), 0 8px 24px rgba(13,138,124,0.12); }

.price-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 0.9rem; }
.price-row:last-child { border-bottom: none; }
.price-row .amt { font-weight: 700; color: var(--teal); }

/* === HYDRATION LOUNGE === */
.drip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.drip-card { padding: clamp(20px, 1.8vw, 28px) clamp(18px, 1.6vw, 24px); }
.drip-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--teal), var(--green-deep)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; z-index: 5; }
.drip-card:hover::after { transform: scaleX(1); }
.drip-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.drip-card h3 { font-size: 1.08rem; }
.drip-price { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem); font-weight: 700; color: var(--teal); }
.drip-desc { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.drip-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.drip-tag { font-size: 0.72rem; padding: 4px 10px; border-radius: 20px; background: var(--teal-light); color: var(--teal-dark); font-weight: 500; }

/* === VITAMIN INJECTIONS === */
.inj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.inj-card { padding: 24px; }
.inj-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.inj-card h3 { margin-bottom: 4px; font-size: 1.02rem; }
.inj-price { color: var(--teal); font-weight: 700; font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.inj-card p { font-size: 0.86rem; color: var(--text-muted); margin-top: 6px; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 64px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img .gradient-fallback { position: absolute; inset: 0; background: linear-gradient(180deg, #dde8e5, #b8d0ca); display: flex; align-items: center; justify-content: center; color: var(--teal); }
.about-float {
  position: absolute; bottom: -20px; right: -20px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius); padding: 20px 28px; box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about-float .af-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--teal); }
.about-float .af-label { font-size: 0.75rem; color: var(--text-muted); }
.check-list { list-style: none; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: 0.93rem; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.badge-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--teal-light); border-radius: 50px; font-size: 0.84rem; font-weight: 600; color: var(--teal-dark); margin-top: 12px; }

/* === WEIGHT LOSS === */
.wl-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 64px); align-items: start; }
.wl-step { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.wl-step:last-child { padding-bottom: 0; }
.wl-step-line { position: absolute; left: 20px; top: 44px; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--green-deep)); }
.wl-step:last-child .wl-step-line { display: none; }
.wl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; position: relative; z-index: 1; }
.wl-step h3 { font-size: 1.02rem; margin-bottom: 4px; }
.wl-step p { font-size: 0.88rem; color: var(--text-muted); }
.wl-result {
  background: linear-gradient(135deg, var(--teal), var(--green-deep)); border-radius: var(--radius);
  padding: 32px; text-align: center; color: #fff; margin-top: 16px;
}
.wl-result .big { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 1.8rem + 1.5vw, 3rem); font-weight: 700; }
.wl-result p { opacity: 0.85; font-size: 0.9rem; margin-top: 4px; }
.med-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.med-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--teal-light); border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: var(--teal-dark); }

/* === HRT === */
.hrt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.hrt-card { padding: clamp(20px, 1.8vw, 28px) clamp(18px, 1.6vw, 24px); }
.hrt-icon { width: 48px; height: 48px; border-radius: 0; background: var(--teal-light); display: flex; align-items: center; justify-content: center; color: var(--teal); margin-bottom: 14px; }

/* === AESTHETICS — LUMIERE STYLE === */
.aes-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
  background: var(--blush-bg); overflow: hidden; position: relative;
}
.aes-hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 5.5vw, 80px) clamp(32px, 4.5vw, 64px); max-width: 560px; margin-left: auto;
}
.aes-eyebrow { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem); color: var(--blush-accent); margin-bottom: 8px; }
.aes-hero-content h2 { font-size: clamp(1.8rem, 1.4rem + 2.2vw, 3rem); line-height: 1.08; margin-bottom: clamp(14px, 1.4vw, 20px); color: var(--primary); }
.aes-hero-content p { color: var(--text-muted); margin-bottom: clamp(20px, 2vw, 28px); font-size: clamp(0.9rem, 0.84rem + 0.2vw, 1rem); }
.aes-hero-image { position: relative; overflow: hidden; }
.aes-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.aes-hero-image .gradient-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f0d5cc 0%, #e8c4b8 40%, #d4a89a 100%);
  display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(255,255,255,0.5);
}

.aes-tagline-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.06); background: var(--blush-bg);
}
.aes-tagline {
  padding: 20px; text-align: center; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--blush-dark);
  border-right: 1px solid rgba(0,0,0,0.06);
}
.aes-tagline:last-child { border-right: none; }

.aes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.aes-card-img { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.aes-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; }
.aes-card-img .bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.aes-card-img .hover-overlay {
  position: absolute; inset: 0; background: rgba(15,27,45,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.aes-card:hover .hover-overlay { opacity: 1; }
.aes-card-img .hover-overlay a { padding: 10px 24px; background: #fff; color: var(--primary); border-radius: 50px; font-weight: 600; font-size: 0.84rem; text-decoration: none; }
.aes-card-body { padding: 20px; }
.aes-card-body h3 { font-size: 1.02rem; margin-bottom: 6px; }
.aes-card-body p { font-size: 0.84rem; color: var(--text-muted); }
.aes-tag { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 500; margin-top: 8px; margin-right: 4px; background: var(--blush); color: var(--blush-dark); }

/* ====== Before/After Hero Animation ====== */
.aes-ba-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.aes-ba-hero .aes-img-before {
  z-index: 2;
  -webkit-animation: beforeAfterFade 6s ease-in-out infinite;
  animation: beforeAfterFade 6s ease-in-out infinite;
}
.aes-ba-hero .aes-img-after {
  z-index: 1;
}
.aes-ba-hero .aes-ba-label {
  position: absolute;
  bottom: 18px;
  z-index: 5;
  padding: 5px 16px;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 20px;
  pointer-events: none;
}
.aes-ba-hero .aes-ba-label.before {
  left: 18px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  -webkit-animation: labelBeforeFade 6s ease-in-out infinite;
  animation: labelBeforeFade 6s ease-in-out infinite;
}
.aes-ba-hero .aes-ba-label.after {
  right: 18px;
  background: rgba(255,255,255,0.9);
  color: var(--teal-dark);
  -webkit-animation: labelAfterFade 6s ease-in-out infinite;
  animation: labelAfterFade 6s ease-in-out infinite;
}
@-webkit-keyframes beforeAfterFade {
  0%, 30% { opacity: 1; }
  45%, 80% { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@keyframes beforeAfterFade {
  0%, 30% { opacity: 1; }
  45%, 80% { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@-webkit-keyframes labelBeforeFade {
  0%, 30% { opacity: 1; }
  40%, 85% { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@keyframes labelBeforeFade {
  0%, 30% { opacity: 1; }
  40%, 85% { opacity: 0; }
  95%, 100% { opacity: 1; }
}
@-webkit-keyframes labelAfterFade {
  0%, 35% { opacity: 0; }
  50%, 75% { opacity: 1; }
  90%, 100% { opacity: 0; }
}
@keyframes labelAfterFade {
  0%, 35% { opacity: 0; }
  50%, 75% { opacity: 1; }
  90%, 100% { opacity: 0; }
}

.abg1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.abg2 { background: linear-gradient(135deg, #fce4ec, #f0d5cc); }
.abg3 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.abg4 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.abg5 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.abg6 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.abg7 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.abg8 { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.abg9 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }

/* === MEDICAL CLINIC === */
.clinic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.clinic-card { padding: 24px; text-align: center; }
.clinic-icon { width: 48px; height: 48px; border-radius: 0; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--teal); }
.clinic-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.clinic-card p { font-size: 0.84rem; color: var(--text-muted); }

/* === TESTIMONIALS === */
.carousel-wrap { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; }
.carousel-track { display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; padding: 8px 0; }
.carousel-track::-webkit-scrollbar { display: none; }
.testi-card { min-width: clamp(280px, 24vw, 340px); flex-shrink: 0; scroll-snap-align: start; padding: clamp(22px, 2.2vw, 32px); }
.stars { color: #F59E0B; font-size: clamp(0.95rem, 0.85rem + 0.2vw, 1.1rem); margin-bottom: clamp(10px, 1vw, 16px); letter-spacing: 2px; }
.testi-text { font-size: clamp(0.86rem, 0.8rem + 0.15vw, 0.93rem); line-height: 1.7; margin-bottom: clamp(14px, 1.3vw, 20px); font-style: italic; color: var(--text); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1rem; }
.av-teal { background: var(--teal); } .av-navy { background: var(--primary); }
.av-blush { background: var(--blush-accent); } .av-green { background: var(--green-deep); }
.testi-name { font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-light); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.carousel-dot.active { background: var(--teal); width: 28px; border-radius: 5px; }

/* === FAQ === */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%; padding: clamp(14px, 1.2vw, 18px) clamp(16px, 1.4vw, 20px); background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-size: clamp(0.84rem, 0.78rem + 0.15vw, 0.92rem); font-weight: 600; color: var(--primary); text-align: left; font-family: inherit;
}
.faq-q:hover { color: var(--teal); }
.faq-q-icon { transition: transform 0.3s; color: var(--teal); flex-shrink: 0; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 20px 18px; font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* === PROMOS === */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.promo-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius); padding: clamp(22px, 2.2vw, 32px); transition: all 0.35s var(--ease); }
.promo-card:hover { box-shadow: -8px 10px 28px rgba(0,0,0,0.2), 0 14px 36px rgba(0,0,0,0.15); }
.promo-badge { display: inline-flex; align-items: center; gap: 8px; padding: clamp(6px, 0.6vw, 8px) clamp(14px, 1.2vw, 18px); border-radius: 50px; background: var(--teal-light); color: var(--teal-dark); font-weight: 700; font-size: clamp(1rem, 0.85rem + 0.4vw, 1.15rem); margin-bottom: 14px; font-family: 'Playfair Display', serif; }
.weekly-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.weekly-item { padding: 14px 12px; border-radius: var(--radius-sm); background: var(--teal-50); text-align: center; font-size: 0.82rem; }
.weekly-item strong { display: block; color: var(--teal-dark); font-size: 0.75rem; margin-bottom: 2px; }

/* === CTA === */
.cta-section {
  padding: clamp(60px, 6.5vw, 100px) clamp(16px, 2vw, 24px); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 40%, var(--teal-dark) 100%);
}
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(13,138,124,0.3), transparent 70%); border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner > p { color: rgba(255,255,255,0.75); margin-bottom: 8px; font-size: 1.02rem; }
.cta-deposit { color: rgba(255,255,255,0.5); font-size: 0.84rem; margin-bottom: 28px; font-style: italic; }
.cta-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.cta-badge { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.65); font-size: 0.8rem; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: var(--primary); color: rgba(255,255,255,0.65); padding: clamp(48px, 5vw, 72px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(28px, 3.2vw, 48px); padding-bottom: clamp(32px, 3.2vw, 48px); }
.footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.86rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--teal); }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 14px; }
.footer-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer-logo-hw { font-size: 0.58rem; color: var(--teal); text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700; font-family: 'Inter', sans-serif; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }
.nl-form { display: flex; gap: 8px; margin-bottom: 14px; }
.nl-input { flex: 1; padding: 10px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.84rem; outline: none; font-family: inherit; }
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--teal); }
.nl-btn { padding: 10px 20px; border-radius: 50px; background: var(--teal); color: #fff; font-weight: 600; font-size: 0.82rem; border: none; cursor: pointer; font-family: inherit; transition: all 0.3s; }
.nl-btn:hover { background: var(--teal-dark); }
.footer-family { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.35); font-size: 0.78rem; text-decoration: none; transition: color 0.3s; }
.footer-family:hover { color: var(--teal); }
.footer-hours p { font-size: 0.84rem; margin-bottom: 4px; }
.footer-hours strong { color: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-social a:hover { color: var(--teal); }

/* === SCROLL TOP === */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: #fff;
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,138,124,0.3);
  opacity: 0; transform: translateY(20px); transition: all 0.35s var(--ease); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* === SERVICE PAGE HERO === */
.service-hero {
  padding: clamp(90px, 8vw, 120px) 0 clamp(48px, 5.5vw, 80px);
  position: relative; overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(13,138,124,0.15) 0%,
      rgba(255,255,255,0) 45%,
      rgba(11,122,110,0.12) 100%
    );
}
.service-hero .container {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.service-hero .section-label { margin-bottom: 16px; }
.service-hero h1 {
  font-size: clamp(1.9rem, 1.5rem + 2.5vw, 3.2rem); margin-bottom: clamp(14px, 1.4vw, 20px); max-width: 700px;
}
.service-hero p {
  color: var(--text-muted); font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.08rem); max-width: 600px; margin-bottom: clamp(22px, 2.2vw, 32px); line-height: 1.7;
}
.service-hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; margin-top: 8px;
}
.service-hero-stat {
  display: flex; align-items: center; gap: 8px;
  padding: clamp(9px, 0.8vw, 12px) clamp(16px, 1.6vw, 24px); border-radius: 50px;
  background: rgba(13,138,124,0.06); border: 1px solid rgba(13,138,124,0.12);
  font-size: clamp(0.78rem, 0.72rem + 0.15vw, 0.84rem); font-weight: 600; color: var(--teal-dark);
}

/* === RELATED SERVICES === */
.related-services {
  padding: clamp(48px, 5.5vw, 80px) 0;
  background:
    linear-gradient(150deg,
      rgba(13,138,124,0.15) 0%,
      rgba(255,255,255,0) 45%,
      rgba(10,110,98,0.12) 100%
    ),
    var(--bg-alt);
}
.related-services h2 {
  text-align: center; margin-bottom: clamp(28px, 2.8vw, 40px);
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.related-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(22px, 2.2vw, 32px) clamp(14px, 1.4vw, 20px); text-decoration: none; border-radius: var(--radius);
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s var(--ease);
}
.related-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--teal);
}
.related-card-icon {
  width: 56px; height: 56px; border-radius: 0; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 14px;
}
.related-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--primary); }
.related-card p { font-size: 0.82rem; color: var(--text-muted); }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 3.2vw, 48px); align-items: start;
}
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}
.contact-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 0; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.88rem; color: var(--text-muted); }
.contact-card a { color: var(--teal); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.contact-info-stack { display: flex; flex-direction: column; gap: 16px; }

.contact-hours-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
}
.contact-hours-table td {
  padding: 8px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.contact-hours-table td:first-child { font-weight: 600; color: var(--primary); }
.contact-hours-table td:last-child { text-align: right; color: var(--text-muted); }

.contact-map-placeholder {
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); height: 300px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text-muted); font-size: 0.9rem;
}

/* === 14" LAPTOP OPTIMIZATION (1200-1440px) === */
@media (max-width: 1440px) {
  .hero { max-width: 80%; }
  .hero h1 { font-size: clamp(2rem, 1.6rem + 2.5vw, 3.2rem); }
  .hero-sub { font-size: 1rem; max-width: 440px; }
  .hero-video-container { border-radius: 0; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .aes-hero { min-height: 480px; }
}
@media (max-width: 1280px) {
  .hero { max-width: 88%; }
  .hero-content { padding-left: 5%; }
  .hero-right { padding: 0; }
  .footer-grid { gap: clamp(20px, 2.5vw, 36px); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; margin-bottom: 40px; max-width: 100%; }
  .hero-content { padding: 0 32px 32px; text-align: center; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust-bar { gap: 10px; padding: 16px 20px; }
  .hero-right { align-self: auto; padding: 0 32px 40px; }
  .hero-video-container { max-width: 480px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .wl-layout { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .aes-hero { grid-template-columns: 1fr; }
  .aes-hero-content { padding: 60px 32px; max-width: 100%; margin: 0; }
  .aes-hero-image { height: 50vh; min-height: 350px; }
  .promo-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile { display: block; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { padding: 0 20px 28px; }
  .hero-right { padding: 0 20px 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .aes-hero-content { padding: 48px 24px; }
  .aes-card-img { aspect-ratio: 1/1; }
  .aes-card-img img { object-position: center center; }
  .testi-card { min-width: 290px; }
  .weekly-grid { grid-template-columns: repeat(2, 1fr); }
  .about-float { position: relative; bottom: auto; right: auto; margin-top: 16px; display: inline-block; }
  .aes-tagline-strip { grid-template-columns: 1fr; }
  .aes-tagline { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .aes-tagline:last-child { border-bottom: none; }
  .related-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 100px 0 60px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 0 16px 24px; }
  .hero-trust-bar { flex-direction: column; align-items: center; gap: 8px; }
  .hero-right { padding: 0 16px 24px; }
  .hero-video-container { height: auto; aspect-ratio: 9/10; }
  .hero-stats-row { gap: 24px; }
  .hero-stat-h { min-width: 120px; }
  .hero-stat-h-num { font-size: 1.4rem; }
  .hero-stat { padding: 12px 16px; }
  .drip-grid, .inj-grid, .aes-grid, .clinic-grid, .hrt-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-orb { display: none; }
  .service-hero-stats { flex-direction: column; align-items: center; }
}

/* ============================================================
   BOOKING PANEL — frosted glass slide-in
   ============================================================ */
.booking-backdrop {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(13,138,124,0.08);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-backdrop.open { opacity: 1; pointer-events: auto; }

.booking-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 30%; min-width: 380px; z-index: 9999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-left: 1px solid rgba(13,138,124,0.12);
  box-shadow: -8px 0 40px rgba(0,0,0,0.10);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.booking-panel.open { transform: translateX(0); }

.booking-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 28px 0;
  flex-shrink: 0;
}
.booking-title {
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
  margin: 0 0 2px;
}
.booking-subtitle {
  font-size: 0.85rem; color: var(--text-muted); margin: 0;
}
.booking-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px;
  border-radius: 0; transition: background 0.2s, color 0.2s;
}
.booking-close:hover { background: rgba(0,0,0,0.06); color: var(--primary); }

.booking-form {
  padding: 24px 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
  flex: 1;
}
.booking-field {
  display: flex; flex-direction: column; gap: 5px;
}
.booking-label {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  letter-spacing: 0.02em;
}
.booking-select,
.booking-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid rgba(13,138,124,0.18);
  border-radius: 0;
  background: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  color: var(--primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.booking-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8B9A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.booking-select:disabled {
  opacity: 0.5; cursor: not-allowed;
}
.booking-input:focus,
.booking-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,138,124,0.10);
}
.booking-textarea {
  resize: vertical; min-height: 72px;
}

.booking-price-display {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(13,138,124,0.06), rgba(13,138,124,0.12));
  border-radius: 0;
  border: 1px solid rgba(13,138,124,0.12);
}
.booking-price-label {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.booking-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--teal);
}

.booking-divider {
  border: none; border-top: 1px solid rgba(13,138,124,0.10);
  margin: 4px 0;
}

.booking-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: var(--teal); color: #fff;
  border: none; border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.booking-submit:hover { background: var(--teal-hover); transform: translateY(-1px); }
.booking-submit:active { transform: translateY(0); }
.booking-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.booking-deposit-note {
  font-size: 0.78rem; color: var(--text-muted);
  text-align: center; margin: 0;
  line-height: 1.4;
}

.booking-spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: booking-spin 0.6s linear infinite;
}
@keyframes booking-spin { to { transform: rotate(360deg); } }

/* Success state */
.booking-success {
  padding: 48px 28px;
  text-align: center;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.booking-success-icon { margin-bottom: 20px; }
.booking-success-title {
  font-size: 1.5rem; font-weight: 700; color: var(--primary);
  margin: 0 0 12px;
}
.booking-success-text {
  font-size: 0.92rem; color: var(--text);
  line-height: 1.6; margin: 0;
  max-width: 320px;
}

/* Error state */
.booking-error {
  margin: 0 28px;
  padding: 12px 16px;
  background: rgba(220,53,69,0.08);
  border: 1px solid rgba(220,53,69,0.2);
  border-radius: 0;
}
.booking-error-text {
  font-size: 0.85rem; color: #dc3545; margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-panel { width: 45%; }
}
@media (max-width: 640px) {
  .booking-panel { width: 100%; min-width: 0; }
}
