/* ===== TOKENS ===== */
:root {
  --accent: #4DBFBF;
  --accent-dark: #2a9d9d;
  --accent-soft: rgba(77,191,191,0.18);

  --bg-primary: #0a0a0a;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --bg-divider: #222;

  --text-primary: #ffffff;
  --text-muted: #888888;
  --text-faint: #555555;

  /* shadow tokens — work in both modes */
  --shadow-card: 0 4px 12px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-card-hover: 0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  --warn: #ef4444;
  --premium: #FFB347;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --gutter: 24px;
  --section-y: 96px;
}

/* ===== LIGHT MODE SECTIONS — Hybrid design (clean/fresh feel) ===== */
.section--light {
  --bg-primary: #faf9f5;
  --bg-card: #ffffff;
  --bg-elevated: #f4f2ec;
  --bg-divider: #e8e5dc;
  --text-primary: #161616;
  --text-muted: #5a5a5a;
  --text-faint: #9a9a9a;
  --shadow-card: 0 1px 3px rgba(20,20,20,0.04), 0 8px 24px rgba(20,20,20,0.05);
  --shadow-card-hover: 0 6px 14px rgba(20,20,20,0.07), 0 18px 40px rgba(20,20,20,0.08);
  background: var(--bg-primary);
  color: var(--text-primary);
  position: relative;
}
/* Soft warm gradient at the top of a light section after a dark one */
.section--light + .section--light { /* consecutive light: no fade */ }

/* Section divider between dark→light or light→dark — subtle accent line */
.section--light::before,
.section--light::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.section--light::before { top: 0; }
.section--light::after { bottom: 0; }
/* Don't show divider between two consecutive light sections */
.section--light + .section--light::before { display: none; }

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* ===== TYPOGRAPHY ===== */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.h1 { font-size: clamp(48px, 7vw, 96px); }
.h2 { font-size: clamp(36px, 5vw, 64px); }
.h3 { font-size: clamp(24px, 3vw, 36px); }
.lead { font-size: clamp(16px, 1.5vw, 20px); color: var(--text-muted); }
.accent { color: var(--accent); }

/* ===== LAYOUT HELPERS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--bg-primary); }
.btn--primary:hover { background: var(--accent-dark); box-shadow: 0 8px 24px rgba(77,191,191,0.3); }
.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}
.btn--secondary:hover { background: var(--text-primary); color: var(--bg-primary); }
.btn--whatsapp { background: var(--whatsapp); color: white; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn--sm { padding: 8px 16px; font-size: 12px; }

/* ===== PLACEHOLDER (until real assets) ===== */
[data-img] {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  position: relative;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
[data-img]::after {
  content: attr(data-img);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-faint);
  letter-spacing: 0.2em;
  opacity: 0.6;
  pointer-events: none;
}
[data-img] > span {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(77,191,191,0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ===== 01 HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bg-divider);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  flex-shrink: 0;
  color: var(--text-primary);
}
.site-header__logo-mark {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(77,191,191,1))
    drop-shadow(0 0 20px rgba(77,191,191,0.9))
    drop-shadow(0 0 44px rgba(77,191,191,0.6))
    drop-shadow(0 0 72px rgba(77,191,191,0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
  animation: logo-pulse 3.2s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(77,191,191,1))
      drop-shadow(0 0 20px rgba(77,191,191,0.9))
      drop-shadow(0 0 44px rgba(77,191,191,0.6))
      drop-shadow(0 0 72px rgba(77,191,191,0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 12px rgba(77,191,191,1))
      drop-shadow(0 0 28px rgba(120,230,230,0.95))
      drop-shadow(0 0 58px rgba(77,191,191,0.75))
      drop-shadow(0 0 96px rgba(77,191,191,0.5));
  }
}
.site-header__logo:hover .site-header__logo-mark {
  transform: scale(1.1);
}
.site-header__logo-text { display: none; }
.site-header { height: 112px; }
.site-header__inner { height: 112px; }
.site-header__nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}
.site-header__nav a {
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.site-header__nav a:hover { color: var(--text-primary); }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-toggle {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-pill);
  padding: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.lang-toggle button {
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle button:hover { color: var(--text-primary); }
.lang-toggle button.active {
  background: var(--accent);
  color: var(--bg-primary);
}
@media (max-width: 720px) {
  .site-header__nav { display: none; }
  .site-header__logo-mark { height: 76px; width: auto; }
  .site-header__inner { gap: 10px; }
  .site-header, .site-header__inner { height: 72px; }
}
@media (max-width: 480px) {
  .site-header__actions { gap: 8px; }
  .site-header .btn { padding: 7px 12px; font-size: 11px; letter-spacing: 0.05em; }
  .lang-toggle button { padding: 4px 9px; font-size: 10px; }
  .site-header__logo-mark { height: 64px; width: auto; }
  .site-header__logo { gap: 8px; }
}
@media (max-width: 360px) {
  .site-header__logo-text { display: none; }
}

/* ===== 02 HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 720px) {
  .hero { padding-top: 64px; }
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__media-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(77,191,191,0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(77,191,191,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(10,10,10,0.6) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-block;
  background: rgba(77,191,191,0.12);
  color: var(--accent);
  border: 1px solid rgba(77,191,191,0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero__title {
  margin: 0;
}
.hero__title .accent {
  text-shadow: 0 0 50px rgba(77,191,191,0.5);
}
.hero__sub {
  margin: 28px auto 36px;
  max-width: 640px;
  color: rgba(255,255,255,0.85);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--text-muted);
  animation: scroll-bob 2.4s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, -8px); opacity: 1; }
}

/* ===== 03 SOCIAL PROOF ===== */
.social-proof { padding: 80px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(77,191,191,0.15);
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-card__label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.stat-card--accent {
  background: linear-gradient(135deg, rgba(77,191,191,0.1), rgba(77,191,191,0.02));
  border-color: rgba(77,191,191,0.3);
}
@media (max-width: 800px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 04 STORY ===== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__copy .h2 { margin: 14px 0 24px; }
.story__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--bg-divider);
}
.story__visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__visual-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  color: var(--accent);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  z-index: 2;
}
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== 05 CORE SERVICES (formerly orbit) ===== */
.core-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.core-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.core-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.core-card__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.core-card__media img,
.core-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.core-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.core-card__body {
  padding: 18px 20px 22px;
}
.core-card__body h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.core-card__body p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 980px) {
  .core-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .core-services { grid-template-columns: 1fr; gap: 14px; }
  .core-card__media { aspect-ratio: 16 / 9; }
}

/* ===== 06 HYLA DEEP-DIVE ===== */
.hyla { background: linear-gradient(180deg, var(--bg-primary) 0%, #0f1212 100%); }

.hyla-scrubber {
  position: relative;
  max-width: 720px;
  margin: 0 auto 80px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(77,191,191,0.18) 0%, transparent 60%),
    var(--bg-primary);
  border: 1px solid var(--bg-divider);
}
.hyla-scrubber__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hyla-scrubber__hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hyla-scrubber[data-scrubbed="true"] .hyla-scrubber__hint { opacity: 0; }
.hyla-scrubber__hint-arrow {
  font-size: 16px;
  animation: scroll-bob 2s ease-in-out infinite;
  display: inline-block;
}

.ba-slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto 64px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-divider);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y; /* allow vertical scroll; horizontal handled by JS */
}
.ba-slider__pane {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-slider__pane--before {
  clip-path: inset(0 50% 0 0);
}
.ba-slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 24px rgba(77,191,191,0.5);
}
.ba-slider__handle-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.ba-slider__handle-grip::before,
.ba-slider__handle-grip::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--bg-primary);
  border-right: 2px solid var(--bg-primary);
}
.ba-slider__handle-grip::before {
  left: 9px;
  transform: translateY(-50%) rotate(-135deg);
}
.ba-slider__handle-grip::after {
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}
.ba-slider__label {
  position: absolute;
  bottom: 16px;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 3;
}
.ba-slider__label--before { left: 16px; }
.ba-slider__label--after  { right: 16px; color: var(--accent); }

.hyla__uses { margin-top: 56px; }
.hyla__uses-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hyla__uses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.hyla-use {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hyla-use:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.hyla-use__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(77,191,191,0.12);
  color: var(--accent);
  font-size: 18px;
}
.hyla-use span:not(.hyla-use__icon) {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .hyla__uses-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .hyla__uses-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 07 TRUST ===== */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-pillar {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.trust-pillar:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}
.trust-pillar__num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 22px;
  opacity: 0.7;
}
.trust-pillar h3 {
  font-size: 19px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.trust-pillar p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .trust__grid { grid-template-columns: 1fr; }
}

/* ===== 08 VALUES ===== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(77,191,191,0.12);
}
.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(77,191,191,0.1);
  color: var(--accent);
  border-radius: 50%;
}
.value-card__icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .values__grid { grid-template-columns: 1fr; }
}

/* ===== 09 HOW IT WORKS ===== */
.how__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.how-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.how-step__num {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 28px;
  box-shadow: 0 0 30px rgba(77,191,191,0.4);
}
.how-step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.how-step__connector {
  width: 28px;
  height: 2px;
  background: var(--bg-divider);
  position: relative;
}
.how-step__connector::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 14px;
}
@media (max-width: 880px) {
  .how__grid { grid-template-columns: 1fr; }
  .how-step__connector { display: none; }
}

/* ===== 10 REVIEWS ===== */
.reviews__disclaimer {
  display: none;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.review-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.review-card__stars {
  color: var(--premium);
  font-size: 14px;
  letter-spacing: 0.15em;
}
.review-card__quote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-primary);
  margin: 0;
}
.review-card__quote::before { content: '" '; color: var(--accent); }
.review-card__quote::after  { content: ' "'; color: var(--accent); }
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--bg-divider);
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 1.5px solid var(--accent);
}
.review-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.review-card__location {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.03em;
}
@media (max-width: 880px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* ===== 11 ALL SERVICES ===== */
.all-services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.service-tile {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.service-tile:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: var(--bg-elevated);
}
.service-tile__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(77,191,191,0.1);
  color: var(--accent);
  font-size: 20px;
}
.service-tile span:not(.service-tile__icon) {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .all-services__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .all-services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 12 FAQ ===== */
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span:not(.faq-item__chevron):not(.faq-item__premium-tag):not(.faq-item__warning-tag) {
  flex: 1;
}
.faq-item__chevron {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(77,191,191,0.12);
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__chevron { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.faq-item__premium-tag {
  display: inline-block;
  background: rgba(255,179,71,0.12);
  color: var(--premium);
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  flex-shrink: 0;
}
.faq-item--premium { border-color: rgba(255,179,71,0.3); }
.faq-item__warning-tag {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: rgba(239,68,68,0.15);
  color: var(--warn);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== 13 CTA FINAL ===== */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cta-final__bg::after { display: none; }
.cta-final__bg > span { display: none; }
.cta-final__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(77,191,191,0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.95) 100%);
}
.cta-final__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
}
.cta-final__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px auto 36px;
  max-width: 560px;
  text-align: left;
}
.cta-final__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
}
.cta-final__benefits li > span:first-child {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.cta-final__toggle {
  display: inline-flex;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 28px;
}
.cta-final__toggle button {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.25s ease, color 0.25s ease;
  letter-spacing: 0.02em;
}
.cta-final__toggle button.active {
  background: var(--accent);
  color: var(--bg-primary);
}
.cta-final__toggle-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  background: var(--premium);
  color: var(--bg-primary);
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.cta-final__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cta-final__benefits { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-divider);
  padding: 48px 0 32px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.site-footer__logo {
  width: 320px;
  max-width: 80vw;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(77,191,191,0.95))
    drop-shadow(0 0 26px rgba(77,191,191,0.75))
    drop-shadow(0 0 56px rgba(77,191,191,0.45))
    drop-shadow(0 0 90px rgba(77,191,191,0.25));
  animation: logo-pulse 3.2s ease-in-out infinite;
}
.site-footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--accent);
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.site-footer__contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer__contact a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.site-footer__contact a:hover { color: var(--accent); }
.site-footer__rights {
  font-size: 11px;
  color: var(--text-faint);
  margin: 0;
  letter-spacing: 0.05em;
}

/* ===== STICKY WHATSAPP BAR ===== */
.sticky-whatsapp {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--bg-divider);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-whatsapp[data-visible="true"] {
  transform: translateY(0);
}
.sticky-whatsapp__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-whatsapp__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .sticky-whatsapp__text { font-size: 12px; }
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal__close:hover { background: var(--accent); color: var(--bg-primary); }
.modal__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-form label > span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--bg-divider);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-primary);
  font: inherit;
  transition: border-color 0.2s ease;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.booking-form textarea { resize: vertical; }
.booking-form button[type="submit"] {
  margin-top: 8px;
  width: 100%;
}
