:root {
  --primary: #15803d;
  --secondary: #d97706;
  --accent: #10b981;
  --background: #0f172a;
  --surface: #111827;
  --text: #f8fafc;
  --muted: #aeb8ce;
  --soft: #dce4f4;
  --line: rgba(248, 250, 252, 0.1);
  --line-strong: rgba(248, 250, 252, 0.24);
  --glass: rgba(17, 24, 39, 0.58);
  --glass-strong: rgba(17, 24, 39, 0.78);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --premium-shadow: 0 30px 100px rgba(139, 92, 246, 0.22), 0 18px 54px rgba(0, 0, 0, 0.42);
  --radius: 0.75rem;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 4%, rgba(236, 72, 153, 0.18), transparent 30rem),
    linear-gradient(180deg, #0f172a 0%, #0b1020 46%, #111827 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 72%);
}

.scroll-path-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.scroll-path-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: visible;
}

.scroll-path-line {
  fill: none;
  stroke: url(#scrollPathGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
  mix-blend-mode: screen;
  filter: url(#scrollPathGlow);
}

.scroll-path-dot-group {
  transform-origin: center center;
  transform-box: fill-box;
  animation: scrollPathPulse 3.8s ease-in-out infinite;
  pointer-events: none;
}

.scroll-path-dot-halo {
  fill: rgba(16, 184, 129, 0.18);
  opacity: 1;
  filter: blur(16px);
  transform-origin: center center;
  transform-box: fill-box;
  animation: scrollPathHalo 3.8s ease-in-out infinite;
}

.scroll-path-dot-trail {
  fill: rgba(16, 184, 129, 0.24);
  opacity: 1;
  transform-origin: center center;
  transform-box: fill-box;
  animation: scrollPathTrail 3.8s ease-in-out infinite;
}

.scroll-path-dot-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 3;
  opacity: 0.85;
  stroke-linecap: round;
  transform-origin: center center;
  transform-box: fill-box;
  animation: scrollPathRing 8s linear infinite;
  filter: url(#scrollPathGlow);
}

.scroll-path-dot-core {
  fill: url(#scrollDotGradient);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 42px rgba(16, 184, 129, 0.45));
}

.scroll-path-dot-core-inner {
  fill: #ffffff;
  opacity: 1;
}

.scroll-path-end-group {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

@keyframes scrollPathPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

@keyframes scrollPathRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scrollPathTrail {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 0.25;
    transform: scale(1.25);
  }
}

@keyframes scrollPathHalo {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

img,
svg {
  display: block;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--text);
  background: rgba(139, 92, 246, 0.45);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #080d19;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 0 60px rgba(21, 128, 61, 0.45);
  font-size: 1.4rem;
  font-weight: 900;
  animation: loaderPulse 1.1s ease-in-out infinite;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(21, 128, 61, 0.16), rgba(217, 119, 6, 0.08) 34%, transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 1.4rem), var(--max));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(248, 250, 252, 0.12);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.48);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px) saturate(1.25);
  transform: translateX(-50%);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.site-header.scrolled {
  top: 0.6rem;
  border-color: rgba(248, 250, 252, 0.2);
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid rgba(248, 250, 252, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 0 34px rgba(21, 128, 61, 0.34);
  color: white;
  font-weight: 950;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: none;
}

.nav a,
.nav-cta {
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 35;
  display: grid;
  gap: 0.35rem;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section,
.section-band {
  position: relative;
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(4.8rem, 9vw, 8.5rem) clamp(1rem, 4vw, 4rem);
}

main > .section:last-child,
main > .section-band:last-child {
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.section::before {
  content: "";
  position: absolute;
  inset: auto 8% 5% auto;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 66%);
  filter: blur(16px);
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 4vw, 4rem) 2rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-content,
.hero-panel {
  width: min(100%, var(--max));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.74) 42%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, #0f172a 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  opacity: 0.66;
  transform: scale(1.04);
  will-change: transform;
}

.hero-visual img {
  filter: saturate(0.92) contrast(1.06);
}

.particle-field span {
  position: absolute;
  z-index: 3;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.7);
  box-shadow: 0 0 18px rgba(6, 182, 212, 0.62);
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-field span:nth-child(1) { left: 16%; top: 22%; animation-delay: -1s; }
.particle-field span:nth-child(2) { left: 70%; top: 18%; animation-delay: -2.4s; }
.particle-field span:nth-child(3) { left: 82%; top: 54%; animation-delay: -4s; }
.particle-field span:nth-child(4) { left: 44%; top: 74%; animation-delay: -3.2s; }
.particle-field span:nth-child(5) { left: 10%; top: 64%; animation-delay: -5s; }
.particle-field span:nth-child(6) { left: 58%; top: 36%; animation-delay: -6.4s; }

.orb {
  position: absolute;
  z-index: 1;
  width: clamp(14rem, 26vw, 28rem);
  height: clamp(14rem, 26vw, 28rem);
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.56;
  animation: float 9s ease-in-out infinite;
  will-change: transform;
}

.orb-one {
  top: 12%;
  right: 8%;
  background: var(--secondary);
}

.orb-two {
  bottom: 12%;
  left: 3%;
  background: var(--accent);
  animation-delay: -3s;
}

.orb-three {
  right: 30%;
  bottom: 22%;
  width: 16rem;
  height: 16rem;
  background: var(--primary);
  animation-delay: -5s;
}

.hero-content {
  max-width: 58rem;
  margin-inline: auto;
  padding-top: 7rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.35rem, 12.5vw, 8.6rem);
  line-height: 0.9;
}

.text-reveal {
  background: linear-gradient(110deg, #ffffff 0%, #dce4f4 28%, #b6ecff 56%, #ffffff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% auto;
  animation: textSheen 5s ease-in-out infinite;
}

h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 44rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button,
.nav-cta,
.newsletter button,
.float-pill {
  position: relative;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.button:hover,
.nav-cta:hover,
.float-pill:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary) 62%, var(--accent));
  box-shadow: 0 18px 48px rgba(21, 128, 61, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 24px 70px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ripple .ripple-dot {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.62s ease-out;
  pointer-events: none;
}

.hero-panel {
  max-width: 25rem;
  margin: 3rem auto 0;
  padding: 1.25rem;
}

.glass {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.25);
}

.glass::before,
.treatment-card::before,
.specialist-card::before,
.result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 36%, rgba(6, 182, 212, 0.1));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.glass:hover::before,
.treatment-card:hover::before,
.specialist-card:hover::before,
.result-card:hover::before {
  opacity: 1;
}

.luxury-card {
  border-radius: var(--radius);
  transform-style: preserve-3d;
  will-change: transform;
}

.card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}

.card-shine::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -70%;
  width: 50%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(20deg);
  animation: glassSweep 6s ease-in-out infinite;
}

.hero-panel span,
.treatment-card span,
.feature span,
.timeline-item span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin: 0.45rem 0;
  font-size: 1.42rem;
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.mini-metrics small {
  color: var(--muted);
}

.mini-metrics b {
  color: var(--text);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 42rem;
}

.treatment-grid,
.products-grid,
.specialist-grid {
  display: grid;
  gap: 1rem;
}

.treatment-card,
.result-card,
.specialist-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.treatment-card:hover,
.result-card:hover,
.specialist-card:hover,
.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.42);
  box-shadow: var(--premium-shadow);
}

.treatment-card img,
.result-card img,
.specialist-card img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

.treatment-card:hover img,
.result-card:hover img,
.specialist-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.04);
}

.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.64);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.service-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-card img {
  height: 16rem;
}

.treatment-card div,
.specialist-card div {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
}

.section-band {
  width: min(calc(100% - 2rem), var(--max));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.38), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(6, 182, 212, 0.26), transparent 32%),
    var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stat {
  position: relative;
  padding: clamp(1.4rem, 5vw, 3rem);
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.stat::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18), transparent 68%);
}

.stat strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(2.1rem, 8vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 780;
}

.gallery-grid {
  align-items: start;
}

.products-grid {
  align-items: stretch;
}

.products-carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s ease;
  will-change: transform;
  padding-bottom: 1.5rem;
  user-select: none;
}

.products-carousel.is-dragging .carousel-track,
.products-carousel.is-dragging {
  cursor: grabbing;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}


.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 0.75rem;
  height: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.carousel-dots button:hover {
  transform: scale(1.1);
}

.carousel-dots button.is-active {
  width: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
}

.product-image {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.42);
  box-shadow: var(--premium-shadow);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.04);
}

.product-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.2;
  color: var(--text);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.result-card {
  min-height: 24rem;
  cursor: zoom-in;
}

.result-card.tall {
  min-height: 30rem;
}

.result-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
}

.result-card strong,
.result-card span {
  display: block;
}

.result-card span {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 2rem;
}

.feature-list,
.timeline,
.faq-list {
  display: grid;
  gap: 1rem;
}

.feature,
.timeline-item,
.faq-item {
  padding: 1.25rem;
  border-radius: var(--radius);
}

.feature {
  overflow: hidden;
}

.timeline-section {
  overflow: hidden;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--primary), var(--secondary), var(--accent));
  box-shadow: 0 0 28px rgba(6, 182, 212, 0.34);
}

.timeline-item {
  position: relative;
  margin-left: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.timeline-item:hover {
  transform: translateX(0.35rem);
  border-color: rgba(139, 92, 246, 0.42);
  background: rgba(255, 255, 255, 0.065);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 1.25rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

.specialist-card {
  min-height: 26rem;
}

.specialist-card img {
  height: 26rem;
}

.specialist-card div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(18px);
  transform: translateY(2.4rem);
  transition: transform 0.28s ease, background 0.28s ease;
}

.specialist-card:hover div {
  transform: translateY(0);
  background: rgba(15, 23, 42, 0.86);
}

.specialist-card nav,
.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.specialist-card nav a,
.footer-social a {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.specialist-card nav a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.testimonial-shell {
  max-width: 62rem;
  margin-inline: auto;
  padding: clamp(1.2rem, 4vw, 2rem);
  border-radius: var(--radius);
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 15rem;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 1rem;
  margin: 0;
  opacity: 0;
  transform: translateX(2rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide p {
  color: var(--text);
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: 1.45;
}

cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.stars {
  display: flex;
  gap: 0.35rem;
}

.stars span {
  width: 1rem;
  height: 1rem;
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
  background: linear-gradient(135deg, #fff4b0, #f6c85f);
  animation: starPop 1.6s ease-in-out infinite;
}

.stars span:nth-child(2) { animation-delay: 0.08s; }
.stars span:nth-child(3) { animation-delay: 0.16s; }
.stars span:nth-child(4) { animation-delay: 0.24s; }
.stars span:nth-child(5) { animation-delay: 0.32s; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.carousel-dots button {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.2);
}

.location-card {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(6, 182, 212, 0.38);
  background: rgba(255, 255, 255, 0.068);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-right: 2rem;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin 0.3s ease;
}

.faq-item[open] p {
  max-height: 12rem;
  margin-top: 1rem;
}

.contact-section {
  display: grid;
  gap: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 2rem);
  border-radius: var(--radius);
}

label {
  position: relative;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 850;
}

label span {
  transition: color 0.2s ease, transform 0.2s ease;
}

label:focus-within span {
  color: var(--accent);
  transform: translateX(0.18rem);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  padding: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.12), 0 16px 44px rgba(6, 182, 212, 0.08);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--accent);
  font-weight: 850;
}

.footer {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 3rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.14), transparent 32rem),
    #080d19;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: translateX(-100%);
  animation: footerSweep 9s ease-in-out infinite;
}

.footer > div {
  position: relative;
  z-index: 1;
}

.footer > div:first-child {
  max-width: 26rem;
}

.footer strong {
  display: block;
  margin-bottom: 0.8rem;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.newsletter input {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0.75rem 0.85rem;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.7rem 1rem;
  font-weight: 900;
  cursor: pointer;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: grid;
  justify-items: end;
  gap: 0.72rem;
}

.float-button,
.float-pill {
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.float-button {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 50%;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.float-button:hover {
  transform: translateY(-3px) scale(1.05);
}

.float-button svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.book-float {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.95), rgba(217, 119, 6, 0.95));
  font-size: 0.86rem;
  font-weight: 950;
}

.call-float {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.whatsapp-float {
  position: relative;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -0.45rem;
  border-radius: inherit;
  border: 1px solid rgba(34, 197, 94, 0.55);
  animation: pulse 1.8s ease-out infinite;
}

.back-to-top {
  background: rgba(15, 23, 42, 0.82);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 8, 16, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: min(100%, 58rem);
  max-height: 78vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 1rem 0 0;
  color: var(--text);
  font-weight: 850;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(1.6rem) scale(0.985);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-group.visible > * {
  animation: fadeUp 0.75s both;
}

.stagger-group.visible > *:nth-child(2) { animation-delay: 0.08s; }
.stagger-group.visible > *:nth-child(3) { animation-delay: 0.16s; }
.stagger-group.visible > *:nth-child(4) { animation-delay: 0.24s; }

@keyframes loaderPulse {
  50% { transform: scale(1.08); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(1rem, -1rem, 0) scale(1.08); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-1.2rem); opacity: 0.9; }
}

@keyframes textSheen {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes glassSweep {
  0%, 46%, 100% { transform: translateX(0) rotate(20deg); }
  58% { transform: translateX(360%) rotate(20deg); }
}

@keyframes footerSweep {
  0%, 55%, 100% { transform: translateX(-100%); }
  75% { transform: translateX(100%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.2rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ripple {
  to { transform: translate(-50%, -50%) scale(22); opacity: 0; }
}

@keyframes pulse {
  to { transform: scale(1.65); opacity: 0; }
}

@keyframes starPop {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.16); filter: brightness(1.18); }
}

@media (max-width: 839px) {
  .site-header {
    border-radius: 1.5rem;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 1.4rem), var(--max));
    z-index: 1000;
  }

  .site-header.scrolled {
    top: 1rem;
  }

  main {
    padding-top: 5.2rem;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 1rem;
    min-width: 220px;
    width: min(280px, calc(100vw - 1.5rem));
    display: none;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.75rem 0.5rem;
    background: rgba(12, 17, 32, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    transform: translateY(-10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
  }

  .nav.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(16, 184, 129, 0.12);
  }

  .nav a:not(.nav-cta) {
    justify-content: flex-start;
  }

  .nav .nav-cta.dropdown-cta {
    justify-content: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(16, 184, 129, 0.16), rgba(217, 119, 6, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 900;
  }

  .nav .nav-cta.dropdown-cta:hover,
  .nav .nav-cta.dropdown-cta:focus-visible {
    background: linear-gradient(135deg, rgba(16, 184, 129, 0.26), rgba(217, 119, 6, 0.26));
  }

  .nav-cta.desktop-only {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 0.35rem;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-actions .button {
    width: 100%;
  }

  .floating-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .book-float {
    max-width: 12rem;
  }
}

@media (min-width: 640px) {
  .treatment-grid,
  .specialist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .carousel-slide {
    min-width: calc(50% - 0.5rem);
    flex: 0 0 calc(50% - 0.5rem);
  }

  .result-card {
    grid-column: span 3;
  }

  .result-card.tall {
    grid-row: span 2;
  }

  .footer {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 840px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
  }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.72rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    font-weight: 900;
  }

  .hero {
    align-items: center;
  }

  .hero-content {
    padding-left: clamp(0rem, 3vw, 3rem);
  }

  .hero-panel {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    bottom: 2rem;
    margin: 0;
  }

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

  .carousel-slide {
    min-width: calc(33.333% - 0.66rem);
    flex: 0 0 calc(33.333% - 0.66rem);
  }

  .products-carousel .carousel-dots {
    justify-content: center;
  }

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

  .split,
  .contact-section {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  main > .section:last-child,
  main > .section-band:last-child {
    padding-bottom: clamp(2.5rem, 3.5vw, 3.5rem);
  }

  .footer {
    padding: 3rem clamp(1rem, 4vw, 4rem) 2rem;
  }
}

@media (min-width: 1180px) {
  .gallery-grid {
    grid-template-columns: 1fr 1.15fr 1fr;
  }

  .result-card {
    grid-column: auto;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
