:root{
  --bg: #f7f5f2;
  --paper: #fffdfb;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --brand: #3aa08f;           /* verde salvia */
  --brand-2: #d6a57c;         /* terracota suave */
  --accent: #7a5a3c;          /* cacao */
  --ring: rgba(58,160,143,.35);
  --radius: 20px;
  --shadow: 0 10px 25px rgba(20,20,20,.08), 0 2px 8px rgba(20,20,20,.05);
}
*{box-sizing:border-box}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
  scroll-snap-type: y mandatory;
}

/* Ultra smooth scrolling */
* {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
html,body{height:100%}
body{
  margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial; color:var(--ink); background:var(--bg);
  line-height:1.6; 
}
a{color:var(--brand); text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92%); margin-inline:auto}

/* Nav */
.nav{position:sticky; top:0; z-index:50; backdrop-filter:saturate(140%) blur(12px); background:rgba(255,255,255,.8); border-bottom:1px solid rgba(0,0,0,.06); transition:all 0.3s ease}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; gap:10px; align-items:center; font-weight:700; letter-spacing:.2px}
.brand .logo{width:40px; aspect-ratio:1; border-radius:12px; background:linear-gradient(135deg, var(--brand), #79d1c2); display:grid; place-items:center; color:white; font-weight:800; box-shadow:var(--shadow)}
.brand small{display:block; font-size:12px; color:var(--muted); letter-spacing:.4px}
.nav a.btn{padding:.65rem 1rem; border-radius:999px; font-weight:600; border:1px solid rgba(0,0,0,.08); background:#fff; box-shadow:var(--shadow)}
.nav a.btn.primary{background:var(--brand); color:#fff; border-color:transparent}
.menu{display:flex; gap:18px; align-items:center}
.menu a{color:#333; font-weight:600}
.mobile-toggle{display:none}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(1400px 600px at 85% -15%, rgba(58,160,143,.35), transparent 65%),
    radial-gradient(1200px 800px at 0% 15%, rgba(214,165,124,.25), transparent 70%),
    radial-gradient(800px 400px at 50% 50%, rgba(122,90,60,.08), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #fff9f5 25%, #f0f8f6 50%, #fff7f0 100%);
  z-index: -2;
  animation: gradientShift 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -5px;
  background: 
    url('images/spa-hero-1.png') 20% 30% / 400px no-repeat,
    url('images/spa-hero-2.png') 80% 70% / 350px no-repeat,
    url('images/wellness-ad-1.png') 60% 10% / 300px no-repeat;
  opacity: .15;
  mix-blend-mode: soft-light;
  z-index: -3;
  animation: float 25s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content {
  animation: slideInLeft 1s ease-out 0.3s both;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.badge {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  color: #2a4a42;
  box-shadow: 
    0 4px 20px rgba(58,160,143,.15),
    0 1px 3px rgba(0,0,0,.08);
  border: 1px solid rgba(58,160,143,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(58,160,143,.25),
    0 2px 8px rgba(0,0,0,.12);
  background: rgba(58,160,143,.95);
  color: white;
}

h1 {
  font-family: Outfit, Inter;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #2b2b2b 0%, #3aa08f 50%, #7a5a3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 1.5s ease-out 0.8s both;
}

.lead {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #4a4a4a;
  margin: 0 0 32px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 1s both;
}

.cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 1.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 
    0 4px 20px rgba(0,0,0,.08),
    0 1px 3px rgba(0,0,0,.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(0,0,0,.15),
    0 4px 12px rgba(0,0,0,.1);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, #2d8a7a 100%);
  color: #fff;
  border-color: transparent;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #2d8a7a 0%, var(--brand) 100%);
  transform: translateY(-3px) scale(1.02);
}

.btn.secondary {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  color: #333;
  border-color: rgba(58,160,143,.2);
}

.btn.secondary:hover {
  background: rgba(58,160,143,0.05);
  border-color: rgba(58,160,143,.4);
  color: var(--brand);
}

.hero-card {
  background: rgba(255,253,251,0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 
    0 20px 50px rgba(58,160,143,.12),
    0 8px 25px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  padding: 28px;
  display: grid;
  gap: 20px;
  border: 1px solid rgba(58,160,143,.1);
  animation: slideInRight 1s ease-out 0.5s both;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20px;
  width: 120px;
  height: 120px;
  background: url('images/spa-gallery-3.png') center/cover;
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 70px rgba(58,160,143,.18),
    0 12px 35px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.hero-card:hover::before {
  opacity: 0.12;
  transform: scale(1.1) rotate(5deg);
  transition: all 0.4s ease;
}

.mini {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
  color: inherit;
}

.mini.clickable-card {
  cursor: pointer;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(58,160,143,0.1);
}

.mini.clickable-card:hover {
  background: rgba(58,160,143,.08);
  transform: translateX(8px) translateY(-2px);
  box-shadow: 
    0 15px 35px rgba(58,160,143,.15),
    0 5px 15px rgba(0,0,0,.1);
  border-color: rgba(58,160,143,0.3);
}

.mini::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-2));
  border-radius: 2px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: scaleY(0);
}

.mini.clickable-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.mini img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini.clickable-card:hover img {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 15px 40px rgba(58,160,143,.2);
}

.mini strong {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mini.clickable-card:hover strong {
  color: var(--brand);
}

.mini .muted {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.mini.clickable-card:hover .muted {
  color: #4a4a4a;
}

.card-arrow {
  font-size: 20px;
  color: var(--brand);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini.clickable-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hero floating images */
.hero-float {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  z-index: -1;
  opacity: 0.15;
  animation: floatSlow 15s ease-in-out infinite;
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px) brightness(1.1);
}

.hero-float-1 {
  width: 180px;
  height: 240px;
  top: 15%;
  right: 8%;
  animation-delay: 0s;
  --rotate: -8deg;
}

.hero-float-2 {
  width: 140px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: -5s;
  --rotate: 12deg;
}

.hero-float-3 {
  width: 120px;
  height: 160px;
  top: 50%;
  right: 25%;
  animation-delay: -10s;
  --rotate: -15deg;
}

@media (max-width: 960px) {
  .hero-float {
    display: none;
  }
}

/* Animations */
@keyframes floatSlow {
  0%, 100% { 
    transform: translateY(0px) rotate(var(--rotate, 0deg)); 
  }
  50% { 
    transform: translateY(-20px) rotate(calc(var(--rotate, 0deg) + 3deg)); 
  }
}

@keyframes serviceFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  33% { 
    transform: translateY(-15px) rotate(2deg); 
  }
  66% { 
    transform: translateY(10px) rotate(-1deg); 
  }
}

@keyframes gradientShift {
  0%, 100% { 
    filter: hue-rotate(0deg) brightness(1); 
  }
  50% { 
    filter: hue-rotate(10deg) brightness(1.05); 
  }
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) scale(1); 
  }
  50% { 
    transform: translateY(-10px) scale(1.02); 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes textGlow {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section{
  padding:72px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}
.section-title{font-family:Outfit; font-size: clamp(26px, 3.2vw, 38px); margin:0 0 10px}
.section-sub{color:var(--muted); margin-bottom:32px}

/* Service Sections */
.service-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 0;
  scroll-snap-align: start;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(58,160,143,0.95) 0%, 
    rgba(214,165,124,0.85) 50%, 
    rgba(122,90,60,0.75) 100%);
  z-index: -2;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.service-content {
  background: rgba(255,253,251,0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 
    0 20px 50px rgba(0,0,0,.15),
    0 8px 25px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,0.2);
  text-align: left;
}

.service-content h2 {
  font-family: Outfit;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  color: #2b2b2b;
}

.service-content .lead {
  font-size: 18px;
  color: #4a4a4a;
  margin: 0 0 24px;
  line-height: 1.5;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.service-features svg {
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--brand);
}

.service-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 60px rgba(0,0,0,.2),
    0 10px 30px rgba(0,0,0,.1);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Service floating images */
.service-float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  z-index: -1;
  opacity: 0.12;
  animation: serviceFloat 20s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.service-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.5px) brightness(1.2);
}

.service-float-1 { width: 160px; height: 220px; top: 10%; right: 10%; animation-delay: 0s; }
.service-float-2 { width: 120px; height: 180px; bottom: 15%; left: 8%; animation-delay: -7s; }
.service-float-3 { width: 140px; height: 200px; top: 20%; left: 12%; animation-delay: -3s; }
.service-float-4 { width: 100px; height: 150px; bottom: 25%; right: 15%; animation-delay: -10s; }
.service-float-5 { width: 180px; height: 240px; top: 8%; right: 5%; animation-delay: -5s; }
.service-float-6 { width: 110px; height: 160px; bottom: 10%; left: 15%; animation-delay: -12s; }
.service-float-7 { width: 150px; height: 210px; top: 15%; left: 10%; animation-delay: -2s; }
.service-float-8 { width: 130px; height: 190px; bottom: 20%; right: 8%; animation-delay: -8s; }

/* Legacy cards for overview section */
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:22px}
.card h3{margin:0; font-family:Outfit; font-size:22px}
.pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 16px; 
  background: rgba(58,160,143,0.1); 
  border-radius: 999px; 
  font-size: 13px; 
  color: #2a5a4f; 
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid rgba(58,160,143,0.2);
  min-width: max-content;
  flex-shrink: 0;
  text-align: center;
}
.features{display:grid; gap:8px; margin-top:6px}
.features li{list-style:none; display:flex; align-items:flex-start; gap:10px}
.features svg{flex:0 0 18px}

/* Gallery */
.gallery{display:grid; grid-template-columns:2fr 1fr 1fr; gap:12px}
.gallery img{border-radius:16px; box-shadow:var(--shadow)}
.gallery .stack{display:grid; gap:12px}

/* FAQ */
.faq{display:grid; gap:12px}
details{background:var(--paper); border:1px solid rgba(0,0,0,.05); border-radius:14px; padding:16px 18px; box-shadow:var(--shadow)}
summary{cursor:pointer; font-weight:700; list-style:none}
summary::-webkit-details-marker{display:none}

/* Footer */
footer{background:#0f1f1d; color:#e7fffb}
.foot{display:grid; grid-template-columns: 1.2fr .8fr; gap:22px; padding:42px 0}
.foot a{color:#e7fffb}
.copy{border-top:1px solid rgba(255,255,255,.12); padding:16px 0; color:#cfe9e5; font-size:14px}

/* Utilities */
.hide-sm{display:block}
.only-sm{display:none}
/* Mobile First Responsive Design */
@media (max-width: 768px) {
  .container { width: 95%; }
  
  .menu{display:none}
  .mobile-toggle{display:block}
  
  .hero{min-height: 90vh; padding: 20px 0}
  .hero-grid{grid-template-columns:1fr; gap:30px; padding:40px 0}
  .hero::before{
    background: 
      radial-gradient(600px 300px at 50% 0%, rgba(58,160,143,.3), transparent 60%),
      radial-gradient(400px 200px at 0% 100%, rgba(214,165,124,.25), transparent 60%),
      linear-gradient(135deg, #ffffff 0%, #fff9f5 50%, #f0f8f6 100%);
  }
  
  .badge-row { justify-content: center; margin-bottom: 20px; }
  .badge { font-size: 11px; padding: 6px 12px; }
  
  h1 { text-align: center; font-size: clamp(28px, 8vw, 42px); }
  .lead { text-align: center; font-size: 16px; }
  .cta { justify-content: center; flex-direction: column; width: 100%; }
  .btn { padding: 16px 24px; font-size: 14px; width: 100%; justify-content: center; }
  
  .hero-card { padding: 20px; margin-top: 20px; }
  .mini { grid-template-columns: 60px 1fr; gap: 12px; padding: 12px; }
  .mini img { width: 60px; height: 60px; }
  .mini strong { font-size: 14px; }
  .mini .muted { font-size: 12px; }
  
  section { padding: 50px 0; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 20px; }
  
  html { scroll-snap-type: y proximity; }
  
  .service-hero { min-height: 100vh; padding: 40px 0; }
  .service-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-content { padding: 30px 24px; text-align: center; }
  .service-content h2 { font-size: clamp(24px, 6vw, 32px); }
  .service-features { gap: 10px; text-align: left; }
  .service-features li { font-size: 14px; }
  .service-cta { flex-direction: column; justify-content: center; }
  .service-cta .btn { width: 100%; }
  .service-image { order: -1; }
  .service-image img { height: 300px; }
  .service-float { display: none; }
  
  section { min-height: auto; padding: 40px 0; }
  
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery img { max-height: 300px; object-fit: cover; }
  
  .foot { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hide-sm { display: none; }
  .only-sm { display: block; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery { grid-template-columns: 2fr 1fr; }
}

@media (max-width: 960px) {
  .hero-float { display: none; }
}
.ring:focus{outline:3px solid var(--ring); outline-offset:2px}

/* Enhanced Scroll Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-80px) translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(80px) translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Section-wide reveal animation */
.scroll-reveal-section {
  opacity: 0;
  transform: translateY(120px) scale(0.95);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal-section.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

/* Enhanced card animations */
.card {
  background:var(--paper); 
  border-radius:18px; 
  padding:24px; 
  box-shadow:var(--shadow); 
  border:1px solid rgba(0,0,0,.04); 
  display:grid; 
  gap:12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(58,160,143,.15),
    0 15px 35px rgba(0,0,0,.1);
}

/* Parallax effect for sections */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Navbar scroll effect */
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* Section Indicators */
.section-indicators {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(58,160,143,0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.indicator::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(58,160,143,0.1);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator:hover::before,
.indicator.active::before {
  opacity: 1;
  transform: scale(1);
}

.indicator.active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.3);
  box-shadow: 
    0 0 20px rgba(58,160,143,0.4),
    0 0 40px rgba(58,160,143,0.2);
}

.indicator:hover {
  background: rgba(58,160,143,0.7);
  border-color: rgba(58,160,143,0.8);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .section-indicators {
    display: none;
  }
}