/* =========================================
   COSMO CLINIC ISRAEL — Global Stylesheet
   RTL | Hebrew | Elegant Minimalist
   ========================================= */

/* --- No external fonts — using system Helvetica Neue --- */

/* --- CSS Custom Properties --- */
:root {
  --color-primary:    #C9956A;
  --color-primary-dk: #A8784E;
  --color-primary-text: #9A6D45; /* AA-compliant on white (4.52:1) */
  --color-cream:      #EEE9E2;
  --color-bg-light:   #FAF7F4;
  --color-dark:       #1C1C1C;
  --color-mid:        #5A5A5A;
  --color-border:     #E0D8CF;
  --color-white:      #FFFFFF;

  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-display: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --nav-h: 76px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --transition: 0.3s ease;
}

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

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

body {
  direction: rtl;
  font-family: var(--font-body);
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--color-mid); max-width: 65ch; }

/* --- Orphan-word prevention on mobile --- */
@media (max-width: 600px) {
  h1, h2, h3, h4, p, .process-step p, .value-card p,
  .section-label, .products-hero__sub {
    text-wrap: balance;
  }
}

/* --- Utility --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section    { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--cream { background: var(--color-cream); }
.section--light { background: var(--color-bg-light); }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-text);
  margin-bottom: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover { background: var(--color-primary-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,149,106,0.35); }

.btn--outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); }

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--color-white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn--wa {
  background: var(--color-primary);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(201,149,106,0.25);
}
.btn--wa:hover {
  background: var(--color-primary-dk, #b8845c);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,106,0.4);
}
.btn--wa svg { opacity: 0.85; }

/* =========================================
   NAVIGATION
   ========================================= */
.site-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo__img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--color-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  background: var(--color-white, #fff);
  border: 1px solid rgba(28,28,28,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 100;
  list-style: none;
  margin-top: 0.4rem;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-mid);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover,
.nav-dropdown li a.active {
  background: rgba(201,149,106,0.08);
  color: var(--color-primary);
}

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn--wa {
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  gap: 0.45rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); right: 0; left: 0; bottom: 0;
  background: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--color-dark);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--color-primary); }

/* =========================================
   HERO — cinematic split (film top / text below)
   ========================================= */
.hero {
  display: flex;
  flex-direction: column;
}

/* ── Film panel ── */
.hero__film {
  position: relative;
  height: clamp(540px, 84vh, 960px);
  overflow: hidden;
  flex-shrink: 0;
}
.hero__film-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Cream fade at the bottom — bleeds into the text section */
.hero__film::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, var(--color-cream) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero__film-video { display: none; }
}

/* ── Text / stage panel ── */
.hero__stage {
  background: var(--color-cream);
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(2.5rem, 5vh, 4rem);
}

/* Eyebrow */
.hero__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: hero-fade-in 0.6s ease both;
  animation-delay: 0.15s;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Eyebrow — mobile adjustments */
@media (max-width: 600px) {
  .hero__eyebrow {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    gap: 0.35rem;
  }
  .hero__eyebrow::before { display: none; }
}

/* Title — big serif, the hero of the page */
.hero__title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.08;
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}
.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}
.hero__title-line {
  display: block;
  overflow: hidden;
  animation: hero-clip-up 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__title-line:nth-child(1) { animation-delay: 0.28s; }
.hero__title-line:nth-child(2) { animation-delay: 0.46s; }

/* Footer row — CTA + rating side by side */
.hero__foot {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: hero-fade-in 0.7s ease both;
  animation-delay: 0.62s;
}

/* Rating — inline, no box */
.hero__rating {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero__rating strong { color: var(--color-dark); }

/* ── Hero keyframes ── */
@keyframes hero-clip-up {
  from {
    clip-path: inset(110% 0 0 0);
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    clip-path: inset(0% 0 0 0);
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title-line,
  .hero__foot {
    animation: none;
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}

/* =========================================
   HERO MARQUEE
   ========================================= */
.hero-marquee {
  background: var(--color-primary);
  overflow: hidden;
  padding: 0.88rem 0;
  direction: ltr;
}
.hero-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.hero-marquee__track span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.5rem;
}
.hero-marquee__track .sep {
  color: rgba(255, 255, 255, 0.38);
  padding: 0 0.2rem;
  font-size: 0.85rem;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee__track { animation: none; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--color-dark);
  padding: 2.5rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-left: none; }
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.stat-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

/* =========================================
   TREATMENTS
   ========================================= */
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header p { margin-top: 0.75rem; font-size: 1.05rem; }

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

.treatment-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 20px rgba(0,0,0,0.055);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.11);
}

/* Image container */
.treatment-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.treatment-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s ease;
}
.treatment-card:hover .treatment-card__img img { transform: scale(1.06); }

/* Gradient overlay at bottom of image */
.treatment-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, rgba(28,28,28,0.18));
  pointer-events: none;
}

/* Category tag pill on image */
.treatment-card__tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  z-index: 1;
}

/* Body */
.treatment-card__body {
  padding: 1.5rem 1.5rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.treatment-card:hover .treatment-card__body { border-top-color: var(--color-primary); }

.treatment-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
  color: var(--color-dark);
  line-height: 1.3;
}
.treatment-card__body p {
  font-size: 0.875rem;
  line-height: 1.68;
  flex: 1;
  max-width: none;
}
.treatment-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1.2rem;
  transition: gap 0.2s ease;
}
.treatment-card__link svg { transition: transform 0.2s ease; }
.treatment-card__link:hover { gap: 0.7rem; }
.treatment-card__link:hover svg { transform: translateX(-3px); }

/* =========================================
   TREATMENT SPLIT — homepage path chooser
   ========================================= */
.treatment-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.treatment-split__card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  cursor: pointer;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease;
}
.treatment-split__card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 52px 100px rgba(0,0,0,0.22);
}

/* Full-bleed background image */
.treatment-split__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.treatment-split__bg img,
.treatment-split__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.treatment-split__card:hover .treatment-split__bg img,
.treatment-split__card:hover .treatment-split__bg video {
  transform: scale(1.07);
}

/* ── Video Showcase ── */
.video-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.video-showcase__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.video-showcase__embed iframe,
.video-showcase__embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.video-showcase__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1rem;
  color: var(--color-dark);
}
.video-showcase__desc {
  font-size: 0.88rem;
  color: var(--color-mid);
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .video-showcase { grid-template-columns: 1fr; gap: 2rem; }
}

/* Dark gradient overlay — heavy at bottom */
.treatment-split__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(14, 10, 6, 0.93) 0%,
    rgba(14, 10, 6, 0.48) 45%,
    rgba(14, 10, 6, 0.1)  100%
  );
  transition: opacity 0.4s ease;
}
.treatment-split__card:hover .treatment-split__overlay { opacity: 0.97; }

/* Floating pill count — top left */
.treatment-split__count {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.04em;
}

/* Body — sits over gradient */
.treatment-split__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2.5rem 2.25rem;
  text-align: right;
}

.treatment-split__eyebrow {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(201,149,106,0.18);
  border: 1px solid rgba(201,149,106,0.38);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  margin-bottom: 0.85rem;
}

.treatment-split__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

/* Treatment name pills */
.treatment-split__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
}
.treatment-split__pills li {
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.28rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.88);
}

/* CTA button */
.treatment-split__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-primary);
  color: white;
  border-radius: 100px;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(201,149,106,0.45);
  transition: background 0.22s ease, gap 0.25s ease;
}
.treatment-split__card:hover .treatment-split__btn {
  background: #b8845c;
  gap: 0.9rem;
}

@media (max-width: 768px) {
  .treatment-split { grid-template-columns: 1fr; gap: 1rem; }
  .treatment-split__card { min-height: 440px; }
  .treatment-split__title { font-size: 2rem; }
  .treatment-split__body { padding: 2rem 1.75rem; }
}

/* =========================================
   CATEGORY DIVIDER — treatments.html
   ========================================= */
.category-divider {
  background: var(--color-cream);
  padding: 3.5rem 0 0;
  scroll-margin-top: 90px;
}
.category-divider__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(201,149,106,0.2);
}
.category-divider__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
}
.category-divider__text {}
.category-divider__label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-dark);
  display: block;
  line-height: 1.15;
}
.category-divider__sub {
  font-size: 0.85rem;
  color: var(--color-mid);
  margin-top: 0.2rem;
  display: block;
}
.category-divider__count {
  margin-right: auto;
  background: rgba(201,149,106,0.12);
  border: 1px solid rgba(201,149,106,0.25);
  border-radius: 100px;
  padding: 0.35rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

/* =========================================
   WHY US
   ========================================= */
#why-us { background: var(--color-cream); }

.why-us__grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 4rem;
  align-items: center;
}
.why-us__image {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 2/3;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), 20px 20px 0 0 rgba(201,149,106,0.14);
}
.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.why-us__image:hover img { transform: scale(1.04); }

/* Floating dual-stat badge on image */
.why-us__badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid rgba(201,149,106,0.15);
}
.why-us__badge-stat { text-align: center; }
.why-us__badge-divider {
  width: 1px;
  height: 34px;
  background: rgba(201,149,106,0.22);
  flex-shrink: 0;
}
.why-us__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1;
}
.why-us__badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-top: 0.3rem;
  white-space: nowrap;
}

.why-us__content .section-header { margin-bottom: 1.75rem; }
.why-us__content .section-header p { max-width: none; }

/* Clean feature list with CSS counters */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: wc;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(201,149,106,0.15);
  counter-increment: wc;
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child  { border-bottom: none; padding-bottom: 0; }
.why-item__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,149,106,0.08);
  border: 1.5px solid rgba(201,149,106,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.why-item:hover .why-item__icon {
  background: rgba(201,149,106,0.15);
  border-color: rgba(201,149,106,0.4);
}
.why-item__text h4::before {
  content: "0" counter(wc);
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  opacity: 0.65;
  margin-bottom: 0.18rem;
}
.why-item__text h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--color-dark); }
.why-item__text p  { font-size: 0.875rem; line-height: 1.65; max-width: none; }

/* Bottom CTA link */
.why-us__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease, opacity 0.2s;
}
.why-us__cta:hover { gap: 0.9rem; opacity: 0.8; }

/* =========================================
   PROCESS / HOW IT WORKS
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--color-bg-light);
}
.process-step h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.85rem; max-width: none; }

/* =========================================
   TESTIMONIALS
   ========================================= */
/* --- Trust Badges Bar --- */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-badge__icon { flex-shrink: 0; }
.trust-badge__rating { display: flex; align-items: center; gap: 0.4rem; }
.trust-badge__score {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}
.trust-badge__stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.trust-badge__label {
  font-size: 0.78rem;
  color: var(--color-mid);
  margin-top: 2px;
}
.trust-badge__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* --- Testimonials Grid --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.75rem;
}
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}
.testimonial-card__stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-card__source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-mid);
  background: var(--color-bg-light);
  padding: 3px 8px;
  border-radius: 4px;
}
.testimonial-card__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-mid);
  margin-bottom: 1.25rem;
  font-style: italic;
  max-width: none;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.88rem; color: var(--color-dark); }
.testimonial-card__meta { font-size: 0.75rem; color: var(--color-mid); }

/* --- Testimonials CTA --- */
.testimonials-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.testimonials-cta__text {
  font-size: 0.95rem;
  color: var(--color-mid);
  margin-bottom: 1rem;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--color-dark);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,149,106,0.15) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner .tag { color: rgba(201,149,106,0.8); }
.cta-banner h2 { color: white; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin: 0 auto 2rem; max-width: 50ch; }
.cta-banner__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: none; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); color: white; }

.footer-col h5 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--color-primary); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-item span:first-child { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================
   PRESS / MEDIA — quiet credibility strip
   ========================================= */
.press-section {
  background: var(--color-bg-light);
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
}
.press-section .section-header { margin-bottom: 2.5rem; }

.press-section .press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.press-card__logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-card__logo img {
  width: auto;
  height: 100%;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0.5) opacity(0.6);
  transition: filter 0.3s ease;
}
.press-card:hover .press-card__logo img {
  filter: grayscale(0) opacity(1);
}

.press-card__name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-mid);
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .press-section .press-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .press-card { padding: 1.5rem 1rem 1rem; }
  .press-card__logo { height: 44px; }
}
@media (max-width: 480px) {
  .press-section .press-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .press-card { padding: 1.25rem 0.75rem 0.75rem; border-radius: 8px; }
  .press-card__logo { height: 36px; }
  .press-card__logo img { max-width: 110px; }
  .press-card__name { font-size: 0.72rem; }
}

/* =========================================
   COMPACT TREATMENT CARDS (tcard)
   Used for new treatments on treatments.html
   ========================================= */
.tcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

.tcard {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,149,106,0.14);
  box-shadow: 0 2px 20px rgba(0,0,0,0.042);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.09);
}

.tcard__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.1rem;
}

.tcard__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark);
}

.tcard__desc {
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(28,28,28,0.62);
  flex: 1;
}

.tcard__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

.tcard__area {
  background: rgba(201,149,106,0.1);
  color: var(--color-primary);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
  font-size: 0.71rem;
  font-weight: 600;
}

.tcard__cta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  padding: 0.7rem 1.5rem;
}

@media (max-width: 900px) {
  .tcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tcard-grid { grid-template-columns: 1fr; gap: 1rem; }
  .tcard { padding: 1.5rem 1.25rem; }
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); animation: none; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
  .hero__film { height: clamp(440px, 72vh, 720px); }

  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges { gap: 1.25rem; padding: 1rem 1.25rem; }
  .trust-badge__score { font-size: 1.15rem; }

  .why-us__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-us__image { aspect-ratio: 16/9; max-height: 380px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .nav-links { display: none; }
  .nav-cta > a { display: none; }
  .nav-hamburger { display: flex; }

  .hero__film { height: 82vw; min-height: 390px; }
  .hero__film-video { object-position: 65% top; }
  .hero__title { font-size: clamp(2.6rem, 9vw, 3.8rem); }
  .hero__foot {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .hero__foot .btn { width: auto; min-width: 260px; justify-content: center; }

  .treatments-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .trust-badge__divider { width: 60%; height: 1px; }

  .process-steps { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* =========================================
   FOCUS STYLES (Accessibility)
   ========================================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(201,149,106,0.25);
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 0;
}

/* =========================================
   2026 DESIGN REFRESH — Modern Enhancements
   ========================================= */

/* --- Button shimmer effect --- */
@keyframes btn-shimmer {
  0%   { left: -75%; }
  100% { left: 125%; }
}
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  transform: skewX(-20deg);
  transition: none;
}
.btn--primary:hover::after {
  animation: btn-shimmer 0.6s ease forwards;
}

/* --- Treatment split cards: smoother hover --- */
.treatment-split__card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.treatment-split__card:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,149,106,0.1);
}

/* --- Testimonial cards: glassmorphic lift --- */
.testimonial-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(201,149,106,0.12), 0 0 0 1px rgba(201,149,106,0.15);
  border-color: rgba(201,149,106,0.2);
}

/* --- Process step circles: glow effect --- */
.process-step__num {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.process-step:hover .process-step__num {
  box-shadow: 0 0 0 8px rgba(201,149,106,0.1), 0 8px 24px rgba(201,149,106,0.2);
  transform: scale(1.08);
}

/* --- Why-us icon: subtle bounce on hover --- */
.why-item__icon {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-item:hover .why-item__icon {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(201,149,106,0.08);
}

/* --- Animated gradient mesh for cream sections --- */
@keyframes mesh-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33%  { transform: translate(30px, -20px) scale(1.05); opacity: 0.6; }
  66%  { transform: translate(-20px, 15px) scale(0.95); opacity: 0.45; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
}
.section--cream { position: relative; overflow: hidden; }
.section--cream::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,106,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: mesh-drift 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.section--cream > .container { position: relative; z-index: 1; }

.section--light { position: relative; overflow: hidden; }
.section--light::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,106,0.06) 0%, transparent 70%);
  bottom: -150px; left: -80px;
  animation: mesh-drift 15s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}
.section--light > .container { position: relative; z-index: 1; }

/* --- Smooth section dividers --- */
.stats-bar {
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(28,28,28,0.03));
  pointer-events: none;
}

/* --- Trust badges: glassmorphic upgrade --- */
.trust-badges {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,149,106,0.1);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

/* --- Video showcase items: hover lift --- */
.video-showcase__item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
  border-radius: 12px;
}
.video-showcase__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- CTA banner: enhanced glow --- */
.cta-banner {
  position: relative;
  overflow: hidden;
}
@keyframes cta-glow {
  0%   { opacity: 0.4; transform: scale(1); }
  50%  { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 0.4; transform: scale(1); }
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,106,0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: cta-glow 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.cta-banner > .container { position: relative; z-index: 1; }

/* --- Reduced motion: disable all 2026 enhancements --- */
@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover::after { animation: none; }
  .section--cream::before,
  .section--light::before,
  .cta-banner::after { animation: none; }
  .process-step__num,
  .why-item__icon,
  .testimonial-card,
  .video-showcase__item { transition: none; }
}

/* =========================================
   PRINT STYLESHEET
   ========================================= */
@media print {
  .site-nav, .nav-mobile, .wa-float, .cta-banner,
  .cn, .cf, footer, .nav-cta, video, iframe { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  main { padding-top: 0; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 1rem 0; break-inside: avoid; }
  img { max-width: 100% !important; }
}
