/* ============ Scroll progress bar ============ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: #fff; z-index: 200; transition: width 0.05s linear; pointer-events: none; box-shadow: 0 0 12px rgba(255,255,255,0.4); }

/* ============ Marquee strips ============ */
.marquee { overflow: hidden; background: #050505; border-top: 1px solid #0e0e0e; border-bottom: 1px solid #0e0e0e; padding: 28px 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 0; white-space: nowrap; animation: marqueeScroll 40s linear infinite; will-change: transform; }
.marquee-reverse .marquee-track { animation: marqueeScrollReverse 40s linear infinite; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 56px); letter-spacing: 4px; color: #fff; padding: 0 32px; line-height: 1; flex-shrink: 0; }
.marquee-dot { color: #444; font-size: 24px; padding: 0 4px; flex-shrink: 0; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeScrollReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============ Reset & base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============ Shared section styles ============ */
.section { position: relative; padding: 140px 0; overflow: hidden; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.eyebrow { font-size: 11px; letter-spacing: 4px; color: #888; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.title { font-family: 'Inter', sans-serif; font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 16px 0; line-height: 1.1; }
.sub { font-size: 16px; color: #999; max-width: 580px; margin: 0 0 48px 0; }
.lead { font-size: 18px; color: #ccc; font-weight: 500; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Buttons ============ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 2px; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.2s; border: 1px solid transparent; cursor: pointer; font-family: inherit; }
.btn-primary { background: #fff; color: #000; }
.btn-primary:hover { background: #ddd; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-wa { background: #25d366; color: #fff; width: 100%; text-decoration: none; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.contact-or { text-align: center; color: #666; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin: 18px 0 12px; position: relative; }
.contact-or::before, .contact-or::after { content: ''; position: absolute; top: 50%; width: calc(50% - 30px); height: 1px; background: #222; }
.contact-or::before { left: 0; }
.contact-or::after { right: 0; }
.chat-wa-link { color: #25d366; text-decoration: underline; font-weight: 600; }
.chat-wa-link:hover { color: #1ebe5a; }
.booking-wa-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; background: #25d366; color: #fff; text-decoration: none; border-radius: 2px; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-top: 12px; transition: background 0.2s; }
.booking-wa-cta:hover { background: #1ebe5a; }
.btn-ghost:hover { background: #fff; color: #000; }
.btn-lg { padding: 18px 36px; font-size: 13px; }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; transition: background 0.3s, backdrop-filter 0.3s; }
.nav.scrolled { background: rgba(0,0,0,0.78); backdrop-filter: blur(14px); }
.nav-logo-img { height: 32px; width: auto; filter: invert(1) brightness(1.1); display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.nav-links a { color: #ccc; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: #fff; color: #000 !important; padding: 10px 20px; border-radius: 2px; font-weight: 700; letter-spacing: 1.2px; }
.nav-cta:hover { background: #ddd; }
.nav-burger { display: none; background: none; border: none; color: #fff; font-size: 30px; }
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; right: 0; flex-direction: column; background: rgba(0,0,0,0.95); padding: 28px; gap: 18px; border-left: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .nav { padding: 16px 20px; }
  .nav-logo-img { height: 26px; }
}

/* ============ HERO — Variant A: Brand-first ============ */
.hero {
  position: relative;
  height: 100vh; height: 100svh; height: 100dvh;
  min-height: 100vh; min-height: 100svh;
  width: 100vw; max-width: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}

.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: brightness(1.25) contrast(1.05) saturate(1.1); }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 25%, transparent 75%, rgba(0,0,0,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 20px; width: 100%; }

.hero-logo { height: 55vh; max-height: 620px; width: auto; filter: invert(1) brightness(1.15); opacity: 0; transform: scale(0.92); animation: logoEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; will-change: opacity, transform, filter; }

@keyframes logoEntrance {
  0% { opacity: 0; transform: scale(0.92); filter: invert(1) brightness(1.15) drop-shadow(0 0 0 rgba(255,255,255,0)); }
  60% { opacity: 1; transform: scale(1.02); filter: invert(1) brightness(1.5) drop-shadow(0 0 60px rgba(255,255,255,0.6)); }
  100% { opacity: 1; transform: scale(1); filter: invert(1) brightness(1.15) drop-shadow(0 0 18px rgba(255,255,255,0.18)); }
}

.hero-tagline { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4.5vw, 64px); letter-spacing: clamp(4px, 0.6vw, 8px); font-weight: 400; margin-top: 24px; color: #fff; opacity: 0; transform: translateY(20px); animation: textRise 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards; }
.hero-sub { font-size: 11px; letter-spacing: 8px; font-weight: 600; color: #888; margin-top: 12px; opacity: 0; transform: translateY(10px); animation: textRise 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards; }

@keyframes textRise { to { opacity: 1; transform: translateY(0); } }

.hero-cta { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 3; display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 4px; font-weight: 700; text-transform: uppercase; color: #fff; padding: 14px 28px; border: 1px solid rgba(255,255,255,0.45); background: rgba(0,0,0,0.25); backdrop-filter: blur(6px); border-radius: 2px; opacity: 0; animation: textRise 1s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.hero-cta:hover { background: #fff; color: #000; border-color: #fff; transform: translateX(-50%) translateY(-2px); }
.hero-cta .arrow { animation: bounceDown 2s ease-in-out infinite; display: inline-block; }
@keyframes bounceDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 768px) {
  .hero-logo { height: 42vh; }
  .hero-tagline { letter-spacing: 4px; }
  .hero-cta { bottom: 24px; font-size: 10px; padding: 12px 22px; }
}

.section .container { position: relative; z-index: 2; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ DESPRE (cu poză fundal Iustin lucrând) ============ */
.despre { background: #050505; padding: 160px 0; overflow: hidden; }
.despre-bg-image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.9) contrast(1.05);
  pointer-events: none;
  will-change: transform;
}
.despre-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.55) 75%, rgba(5,5,5,0.8) 100%);
  pointer-events: none;
}
/* Text containers need text-shadow for legibility over image */
.despre-container .title,
.despre-container .despre-quote,
.despre-container .despre-lead,
.despre-container .stat-num,
.despre-container .stat-label,
.despre-container .eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.despre-container { max-width: 820px; text-align: center; }
.despre-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 32px; }
.despre-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3.8vw, 48px); letter-spacing: 4px; line-height: 1.15; color: #fff; margin: 0 0 40px 0; }
.despre-lead { font-size: clamp(15px, 1.4vw, 18px); color: #bbb; max-width: 640px; margin: 0 auto 64px auto; line-height: 1.7; }

.stats-horizontal { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
.stat-divider { width: 1px; height: 48px; background: #222; }
@media (max-width: 700px) { .stats-horizontal { gap: 24px; } .stat-divider { display: none; } }
.stat { display: flex; flex-direction: column; align-items: center; min-width: 140px; }
.stat-num { font-size: clamp(36px, 4vw, 48px); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 11px; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-top: 12px; font-weight: 600; }

/* ============ SERVICII (cu poză fundal cupping) ============ */
.servicii { background: #000; padding: 160px 0; overflow: hidden; }
.servicii-bg-image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.95) contrast(1.05);
  pointer-events: none;
}
.servicii-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 75%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
/* Mobile: bg image se vede mai clar — tiles devin glassmorphic */
@media (max-width: 700px) {
  .servicii-bg-image {
    filter: saturate(0.95) brightness(1.1) contrast(1.05);
    object-position: center 20%;
  }
  .servicii-bg-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 100%);
  }
  /* Tiles, therapies, packages devin semi-transparente cu blur — poza se vede prin ele */
  .servicii .zone-tile:not(.zone-tile-wide):not(.zone-tile-cta) {
    background: rgba(10, 10, 10, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.08);
  }
  .servicii .zone-tile-cta {
    background: rgba(10, 10, 10, 0.45);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .servicii .therapy {
    background: rgba(10, 10, 10, 0.72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.08);
  }
  .servicii .package {
    background: rgba(10, 10, 10, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
  }
}
/* Text legibility over image */
.servicii .container .eyebrow,
.servicii .container > .title,
.servicii .container > .sub,
.servicii .sub-section-title { text-shadow: 0 2px 16px rgba(0,0,0,0.7); }

/* Zone grid editorial — outcome-focused copy + bigger typography */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 56px 0 96px 0; }
@media (max-width: 900px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .zones-grid { grid-template-columns: 1fr; gap: 12px; } }

.zone-tile { position: relative; background: #0a0a0a; border: 1px solid #161616; border-radius: 4px; padding: 28px 24px 24px 24px; text-align: left; cursor: pointer; transition: background 0.3s, border-color 0.3s, transform 0.3s; font-family: inherit; color: inherit; text-decoration: none; display: flex; flex-direction: column; min-height: 240px; overflow: hidden; }
.zone-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.zone-tile::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.06) 0%, transparent 50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.zone-tile:hover { border-color: #3a3a3a; background: #0f0f0f; transform: translateY(-4px) scale(1.01); }
.zone-tile:hover::before { transform: scaleX(1); }
.zone-tile:hover::after { opacity: 1; }
.zone-tile-featured { border-color: #fff; background: #0f0f0f; }
.zone-tile-featured::before { transform: scaleX(1); height: 3px; }

/* Lombar — featured wide tile cu foto bg */
.zone-tile-wide { grid-column: span 2; min-height: 280px; padding: 36px 32px; }
@media (max-width: 900px) { .zone-tile-wide { grid-column: span 2; } }
@media (max-width: 500px) { .zone-tile-wide { grid-column: span 1; } }
.zone-tile-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.7) brightness(0.5) contrast(1.05); z-index: 0; pointer-events: none; }
.zone-tile-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%); z-index: 1; pointer-events: none; }
.zone-tile-wide .zone-tile-content { position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.zone-tile-wide:hover .zone-tile-img { filter: saturate(0.8) brightness(0.6) contrast(1.05); transform: scale(1.03); transition: transform 0.6s ease, filter 0.4s; }
.zone-tile-wide .zone-tile-img { transition: transform 0.6s ease, filter 0.4s; }
.zone-name-lg { font-size: clamp(36px, 4.5vw, 56px); letter-spacing: 3px; }
.zone-promise-lg { font-size: clamp(17px, 1.7vw, 22px); max-width: 380px; }

/* Watermark: numele zonei MASIV outline, este vedeta cardului */
.zone-watermark {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6.5vw, 92px);
  letter-spacing: 1px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,0.35);
  text-stroke: 1.2px rgba(255,255,255,0.35);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  text-transform: uppercase;
  transition: -webkit-text-stroke-color 0.45s, color 0.45s, transform 0.45s;
  transform-origin: left bottom;
}
.zone-tile:hover .zone-watermark {
  -webkit-text-stroke-color: rgba(255,255,255,0);
  color: #fff;
  transform: scale(1.04);
}
.zone-watermark-lg {
  font-size: clamp(64px, 8.5vw, 130px);
  bottom: 24px;
  left: 32px;
  right: 32px;
}
.zone-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; position: relative; z-index: 2; }
.zone-name, .zone-promise, .zone-tags { position: relative; z-index: 2; }
.zone-num { font-size: 11px; letter-spacing: 3px; color: #444; font-weight: 800; transition: color 0.3s; }
.zone-tile:hover .zone-num { color: #fff; }
.zone-arrow { font-size: 18px; color: #2a2a2a; transition: color 0.3s, transform 0.3s; font-weight: 300; }
.zone-tile:hover .zone-arrow { color: #fff; transform: translateX(6px); }

.zone-name { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 3vw, 36px); font-weight: 400; letter-spacing: 2px; color: #fff; margin-bottom: 12px; text-transform: uppercase; line-height: 1; }

.zone-promise { font-size: clamp(15px, 1.4vw, 17px); font-weight: 500; color: #fff; line-height: 1.35; margin-bottom: auto; padding-bottom: 16px; letter-spacing: -0.005em; }

.zone-tags { font-size: 10px; letter-spacing: 2px; color: #555; text-transform: uppercase; font-weight: 600; margin-top: 16px; padding-top: 16px; border-top: 1px solid #161616; transition: color 0.3s, border-color 0.3s; }
.zone-tile:hover .zone-tags { color: #888; border-top-color: #2a2a2a; }

.zone-badge { position: absolute; top: -10px; right: 16px; background: #fff; color: #000; font-size: 9px; padding: 5px 10px; letter-spacing: 2px; font-weight: 800; border-radius: 2px; }

/* CTA tile — diferit vizual */
.zone-tile-cta { background: transparent; border-style: dashed; border-color: #1f1f1f; }
.zone-tile-cta::before { display: none; }
.zone-tile-cta:hover { border-color: #fff; border-style: solid; background: #0a0a0a; }
.zone-tile-cta .zone-meta { margin-bottom: 28px; }
.zone-tile-cta .zone-num { font-size: 24px; color: #555; letter-spacing: 0; }
.zone-tile-cta:hover .zone-num { color: #fff; transform: translateX(4px); }
.zone-cta-text { color: #888; font-weight: 500; }
.zone-tile-cta:hover .zone-cta-text { color: #fff; }
.zone-glow { fill: url(#zoneGlow); opacity: 0; transition: opacity 0.35s ease, transform 0.35s ease; pointer-events: none; transform-origin: center; transform-box: fill-box; }
.zone-glow.active { opacity: 1; transform: scale(1.08); }
.body-stage.intro .zone-glow { animation: zoneIntro 2.4s ease-out 1; }
.body-stage.intro .zone-glow:nth-child(1) { animation-delay: 0s; }
.body-stage.intro .zone-glow:nth-child(2) { animation-delay: 0.18s; }
.body-stage.intro .zone-glow:nth-child(3) { animation-delay: 0.36s; }
.body-stage.intro .zone-glow:nth-child(4) { animation-delay: 0.54s; }
.body-stage.intro .zone-glow:nth-child(5) { animation-delay: 0.72s; }
.body-stage.intro .zone-glow:nth-child(6) { animation-delay: 0.9s; }
.body-stage.intro .zone-glow:nth-child(7) { animation-delay: 1.08s; }
.body-stage.intro .zone-glow:nth-child(8) { animation-delay: 1.26s; }
.body-stage.intro .zone-glow:nth-child(9) { animation-delay: 1.44s; }
.body-stage.intro .zone-glow:nth-child(10) { animation-delay: 1.62s; }
@keyframes zoneIntro { 0% { opacity: 0; } 35% { opacity: 0.9; } 100% { opacity: 0; } }
.hotspot { fill: rgba(0,0,0,0.001); cursor: pointer; }
.body-note { display: block; margin-top: 16px; color: #444; font-size: 11px; text-align: center; max-width: 380px; line-height: 1.5; }

.sub-section-title { font-size: 11px; letter-spacing: 4px; color: #666; text-transform: uppercase; margin: 0 0 40px 0; font-weight: 600; }

/* Terapii grid (6 cards) */
.therapies-section { margin: 96px 0; }
.therapies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .therapies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .therapies-grid { grid-template-columns: 1fr; } }
.therapy { position: relative; overflow: hidden; background: #0a0a0a; border: 1px solid #161616; border-radius: 4px; padding: 28px 24px 28px 24px; min-height: 200px; transition: all 0.3s; }
.therapy:hover { border-color: #2a2a2a; transform: translateY(-3px); background: #0e0e0e; }
.therapy-num, .therapy-name, .therapy-desc { position: relative; z-index: 2; }
.therapy-num { font-size: 11px; letter-spacing: 2px; color: #444; font-weight: 700; margin-bottom: 16px; }
.therapy-name { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; color: #fff; }
.therapy-desc { font-size: 13px; color: #999; line-height: 1.6; }
/* Watermark — același pattern ca zone-tiles, dar adaptat */
.therapy-watermark {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 1px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.32);
  text-stroke: 1px rgba(255,255,255,0.32);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
  transition: -webkit-text-stroke-color 0.45s, color 0.45s, transform 0.45s;
  transform-origin: left bottom;
}
.therapy:hover .therapy-watermark {
  -webkit-text-stroke-color: rgba(255,255,255,0);
  color: #fff;
  transform: scale(1.04);
}

/* Pachete (2 side by side) */
.packages-section { margin-top: 96px; }
.packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.packages-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .packages-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .packages-grid { grid-template-columns: 1fr; } .packages-grid-4 { grid-template-columns: 1fr; } }
.package-sm { padding: 28px 24px; }
.package-sm .package-name { font-size: 20px; }
.package-sm .package-price { font-size: 28px; }
.package-sm .package-price span { font-size: 11px; }
.package-sm .package-duration { font-size: 10px; }
.packages-cta { text-align: center; margin-top: 32px; }
.package { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 4px; padding: 36px 32px; position: relative; transition: all 0.3s; }
.package:hover { border-color: #333; transform: translateY(-2px); }
.package-featured { border-color: #fff; background: #0e0e0e; }
.package-num { position: absolute; top: 20px; right: 24px; font-size: 13px; color: #444; font-weight: 700; letter-spacing: 2px; }
.package-badge { position: absolute; top: -10px; left: 24px; background: #fff; color: #000; font-size: 9px; padding: 4px 10px; letter-spacing: 2px; font-weight: 800; border-radius: 2px; }
.package-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; padding-right: 36px; }
.package-name { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.package-duration { font-size: 11px; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.package-price { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.package-price span { font-size: 13px; color: #888; font-weight: 500; margin-left: 4px; }
.package-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid #1a1a1a; padding-top: 16px; }
.package-list li { padding: 8px 0; color: #bbb; font-size: 14px; }
.link-arrow { color: #fff; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; padding: 16px 0; font-weight: 600; letter-spacing: 1px; transition: gap 0.2s; }
.link-arrow:hover { gap: 12px; color: #aaa; }

/* ============ COLABORĂRI (refacut — featured cards cu video-uri individuale) ============ */
.colaborari { background: #050505; padding: 160px 0; }
.collabs-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 56px auto 32px auto; }
@media (max-width: 700px) { .collabs-featured { grid-template-columns: 1fr; gap: 24px; } }
.collab-card { position: relative; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 4px; overflow: hidden; transition: all 0.3s; }
.collab-card:hover { border-color: #333; transform: translateY(-4px); }
.collab-video { width: 100%; aspect-ratio: 9/16; max-height: 540px; object-fit: cover; background: #000; display: block; filter: brightness(0.95) saturate(1.05); }
.collab-meta { padding: 20px 24px; border-top: 1px solid #1a1a1a; display: flex; align-items: center; gap: 16px; }
.collab-num { font-size: 28px; font-weight: 800; color: #333; letter-spacing: -0.02em; line-height: 1; }
.collab-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.collab-role { font-size: 11px; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
.collabs-more { color: #555; font-size: 13px; margin-top: 32px; letter-spacing: 0.5px; }

/* ============ RECENZII ============ */
.recenzii { background: #000; }
.testimoniale-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto 80px auto; }
.testimonial-card { background: #0a0a0a; border-radius: 4px; overflow: hidden; transition: transform 0.3s; border: 1px solid #1a1a1a; }
.testimonial-card:hover { transform: translateY(-4px); border-color: #2a2a2a; }
.testimonial-card video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; display: block; }
.testimonial-meta { padding: 16px; }
.testimonial-name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.testimonial-role { font-size: 11px; color: #888; margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.testimonial-placeholder { aspect-ratio: 9/16; border: 1px dashed #2a2a2a; background: transparent; }
.testimonial-empty { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #444; font-size: 12px; text-align: center; padding: 20px; line-height: 1.6; }

.reviews-title { font-size: 22px; font-weight: 700; margin: 64px 0 16px 0; text-align: center; letter-spacing: -0.01em; }
/* Masonry grid via CSS columns — perfect pentru screenshots cu înălțimi variabile */
.reviews-grid { column-count: 4; column-gap: 16px; max-width: 1100px; margin: 0 auto 48px auto; }
@media (max-width: 1000px) { .reviews-grid { column-count: 3; } }
@media (max-width: 700px) { .reviews-grid { column-count: 2; column-gap: 12px; } }
@media (max-width: 480px) { .reviews-grid { column-count: 1; } }
.review-card { break-inside: avoid; margin-bottom: 16px; border-radius: 4px; overflow: hidden; cursor: zoom-in; background: #0a0a0a; border: 1px solid #161616; transition: transform 0.25s, border-color 0.25s; }
.review-card:hover { transform: translateY(-3px); border-color: #2a2a2a; }
.review-card img { width: 100%; height: auto; display: block; }
.reviews-cta { text-align: center; }

/* Lightbox pentru recenzii */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.93); backdrop-filter: blur(8px); padding: 40px; cursor: zoom-out; }
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; width: auto; height: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.8); border-radius: 4px; }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 40px; line-height: 1; padding: 8px 16px; cursor: pointer; transition: color 0.2s; }
.lightbox-close:hover { color: #888; }

/* ============ BOOKING ============ */
.booking { background: #050505; }
.booking-form { max-width: 560px; margin: 32px auto 0 auto; display: flex; flex-direction: column; gap: 14px; }
.booking-form input, .booking-form textarea { background: #0a0a0a; border: 1px solid #1a1a1a; color: #fff; padding: 14px 16px; border-radius: 2px; font-family: inherit; font-size: 14px; width: 100%; }
.booking-form input:focus, .booking-form textarea:focus { outline: none; border-color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-service { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
@media (max-width: 600px) { .form-service { grid-template-columns: 1fr; } }
.service-option { background: #0a0a0a; border: 1px solid #1a1a1a; padding: 14px 16px; border-radius: 2px; cursor: pointer; transition: border-color 0.2s; }
.service-option:has(input:checked) { border-color: #fff; background: #0f0f0f; }
.service-option input { position: absolute; opacity: 0; pointer-events: none; width: auto; }
.service-label { display: flex; flex-direction: column; gap: 4px; }
.service-label strong { font-size: 15px; }
.service-price { font-size: 11px; color: #888; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.booking-form .btn { margin-top: 8px; }

/* ============ Availability widget ============ */
.availability-widget { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 4px; padding: 20px; margin: 8px 0; }
.avail-label { font-size: 11px; letter-spacing: 3px; color: #888; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.avail-loading { color: #666; font-size: 13px; padding: 16px 0; text-align: center; }
.avail-dates { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: thin; scrollbar-color: #333 transparent; -webkit-overflow-scrolling: touch; }
.avail-dates::-webkit-scrollbar { height: 4px; }
.avail-dates::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }
.avail-date { flex: 0 0 auto; min-width: 64px; background: #161616; border: 1px solid #2a2a2a; border-radius: 4px; padding: 10px 12px; cursor: pointer; text-align: center; transition: all 0.15s; user-select: none; }
.avail-date:hover:not(.disabled) { border-color: #555; background: #1f1f1f; }
.avail-date.selected { background: #fff; color: #000; border-color: #fff; }
.avail-date.disabled { opacity: 0.35; cursor: not-allowed; }
.avail-date-wday { font-size: 10px; letter-spacing: 1px; color: #888; text-transform: uppercase; margin-bottom: 4px; }
.avail-date.selected .avail-date-wday { color: #555; }
.avail-date-day { font-size: 18px; font-weight: 700; line-height: 1; }
.avail-date-month { font-size: 10px; color: #666; margin-top: 4px; }
.avail-date.selected .avail-date-month { color: #888; }
.avail-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 16px; min-height: 50px; }
.avail-slot { background: #161616; border: 1px solid #2a2a2a; border-radius: 4px; padding: 10px 8px; font-size: 14px; font-weight: 600; cursor: pointer; text-align: center; transition: all 0.15s; color: #fff; font-family: inherit; }
.avail-slot:hover:not(.busy):not(.past) { border-color: #25d366; color: #25d366; }
.avail-slot.selected { background: #25d366; color: #fff; border-color: #25d366; }
.avail-slot.busy { background: transparent; color: #444; border-color: #1a1a1a; cursor: not-allowed; text-decoration: line-through; }
.avail-slot.past { background: transparent; color: #333; border-color: #1a1a1a; cursor: not-allowed; }
.avail-empty { color: #666; font-size: 13px; padding: 16px; text-align: center; grid-column: 1 / -1; font-style: italic; }
.avail-vacation { color: #fbbf24; font-size: 13px; padding: 16px; text-align: center; grid-column: 1 / -1; }
.avail-selected { color: #25d366; font-size: 13px; margin-top: 12px; min-height: 18px; font-weight: 600; }
.avail-error { color: #ef4444; font-size: 13px; padding: 12px 0; text-align: center; }

/* ============ Recenzii dinamice (RIC 12) ============ */
.reviews-dynamic { margin-top: 40px; }
.reviews-dynamic-meta { color: #888; font-size: 14px; margin: 12px 0 28px; text-align: center; display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.reviews-dynamic-meta strong { color: #f59e0b; font-size: 20px; font-weight: 700; }
.reviews-dynamic-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review-dyn-card { background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 8px; padding: 20px; transition: border-color 0.2s; }
.review-dyn-card:hover { border-color: #2a2a2a; }
.review-dyn-stars { color: #f59e0b; font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }
.review-dyn-text { color: #ddd; font-size: 14px; line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-dyn-text::before { content: '"'; color: #555; font-size: 24px; font-family: Georgia, serif; }
.review-dyn-text::after { content: '"'; color: #555; font-size: 24px; font-family: Georgia, serif; }
.review-dyn-name { color: #aaa; font-size: 13px; font-weight: 600; }
.review-dyn-date { color: #555; font-size: 12px; margin-top: 4px; }
.booking-status { text-align: center; font-size: 13px; margin: 0; min-height: 18px; }
.booking-status.ok { color: #4ade80; }
.booking-status.err { color: #f87171; }
.form-fineprint { color: #555; text-align: center; font-size: 11px; }

/* Floating Contact FAB */
.contact-fab { position: fixed; bottom: 24px; right: 24px; z-index: 50; background: #fff; color: #000; border: none; border-radius: 999px; padding: 14px 22px; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.5); transition: transform 0.2s; }
.contact-fab:hover { transform: translateY(-2px); }
@media (max-width: 600px) { .contact-fab { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 11px; } }

/* ============ Chat widget (RIC 07) ============ */
.chat-fab { position: fixed; bottom: 24px; left: 24px; z-index: 50; background: #0a0a0a; color: #fff; border: 1px solid #2a2a2a; border-radius: 999px; padding: 14px 22px; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.5); display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; }
.chat-fab:hover { background: #fff; color: #000; border-color: #fff; transform: translateY(-2px); }
.chat-fab svg { display: block; }
@media (max-width: 600px) { .chat-fab { bottom: 16px; left: 16px; padding: 12px 18px; font-size: 11px; } .chat-fab-text { display: none; } .chat-fab { padding: 14px; } }

.chat-panel { position: fixed; bottom: 90px; left: 24px; z-index: 100; width: 360px; max-width: calc(100vw - 48px); height: 520px; max-height: calc(100vh - 130px); background: #0a0a0a; border: 1px solid #1f1f1f; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.7); display: none; flex-direction: column; overflow: hidden; }
.chat-panel[aria-hidden="false"] { display: flex; animation: chatSlide 0.3s cubic-bezier(0.16,1,0.3,1); }
@keyframes chatSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) { .chat-panel { left: 12px; right: 12px; bottom: 78px; width: auto; max-width: none; height: calc(100vh - 100px); } }

.chat-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: #050505; border-bottom: 1px solid #1a1a1a; }
.chat-header-meta { display: flex; align-items: center; gap: 12px; }
.chat-status-dot { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6); animation: chatPulse 2s ease-in-out infinite; }
@keyframes chatPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.chat-title { font-size: 14px; font-weight: 700; }
.chat-subtitle { font-size: 11px; color: #666; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.chat-close { background: none; border: none; color: #888; font-size: 28px; line-height: 1; cursor: pointer; padding: 0 8px; transition: color 0.2s; }
.chat-close:hover { color: #fff; }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
.chat-msg { display: flex; }
.chat-msg-bot { justify-content: flex-start; }
.chat-msg-user { justify-content: flex-end; }
.chat-bubble { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.4; word-wrap: break-word; }
.chat-msg-bot .chat-bubble { background: #161616; color: #ddd; border-bottom-left-radius: 4px; }
.chat-msg-user .chat-bubble { background: #fff; color: #000; border-bottom-right-radius: 4px; font-weight: 500; }
.chat-typing { display: inline-flex; gap: 4px; padding: 4px 0; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #888; animation: chatTyping 1.2s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatTyping { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-input { display: flex; gap: 8px; padding: 12px 16px; background: #050505; border-top: 1px solid #1a1a1a; }
.chat-input input { flex: 1; background: #0a0a0a; border: 1px solid #1f1f1f; color: #fff; padding: 10px 14px; border-radius: 999px; font-family: inherit; font-size: 14px; }
.chat-input input:focus { outline: none; border-color: #fff; }
.chat-input button { background: #fff; color: #000; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.chat-input button:hover { background: #ddd; }
.chat-input button:disabled { background: #444; color: #888; cursor: not-allowed; }

/* ============ FOOTER ============ */
.footer { background: #000; padding: 80px 0 32px 0; border-top: 1px solid #0e0e0e; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-logo-img { height: 48px; width: auto; filter: invert(1) brightness(1.15); margin-bottom: 16px; display: block; }
.footer p { color: #666; font-size: 14px; max-width: 320px; }
.footer-h { font-size: 11px; letter-spacing: 2px; color: #666; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; font-size: 14px; }
.footer ul li a { color: #bbb; transition: color 0.2s; }
.footer ul li a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid #0e0e0e; color: #444; display: flex; flex-direction: column; gap: 10px; }
.footer-legal { display: inline-flex; gap: 10px; justify-content: center; }
.footer-legal a { color: #666; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #aaa; }
.footer-sep { color: #333; }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal[aria-hidden="false"] { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); }
.modal-body { position: relative; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 4px; padding: 40px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: #fff; font-size: 28px; line-height: 1; padding: 8px; }
.modal-close:hover { color: #888; }
.modal-eyebrow { font-size: 10px; letter-spacing: 3px; color: #888; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.modal-title { font-size: 28px; font-weight: 700; margin: 0 0 16px 0; letter-spacing: -0.02em; }
.modal-desc { color: #aaa; margin-bottom: 24px; }
.modal-h { font-size: 11px; letter-spacing: 2px; color: #888; text-transform: uppercase; margin-bottom: 12px; font-weight: 600; }
.modal-therapies { margin-bottom: 24px; }
.modal-therapies ul { list-style: none; padding: 0; margin: 0; }
.modal-therapies li { padding: 12px 16px; background: #050505; border: 1px solid #1a1a1a; border-radius: 2px; margin-bottom: 6px; font-size: 14px; color: #ddd; }

.review-form { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.review-form input, .review-form textarea { background: #050505; border: 1px solid #1a1a1a; color: #fff; padding: 14px 16px; border-radius: 2px; font-family: inherit; font-size: 14px; }
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: #fff; }
.rating-stars { display: flex; gap: 4px; font-size: 28px; color: #333; cursor: pointer; }
.rating-stars:hover span { color: #fff; }
.rating-stars span:hover ~ span { color: #333; }
.review-form small { color: #555; font-size: 12px; }
