:root {
  --bg-base: #0b0e11;
  --bg-panel: #14181d;
  --bg-panel-2: #1b2027;
  --border: #262b33;
  --text-primary: #f2f3f0;
  --text-muted: #8b92a0;
  --volt: #c8ff4d;
  --volt-dim: #9bd431;
  --coral: #ff4368;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.text-accent-volt { color: var(--volt); }
.text-accent-coral { color: var(--coral); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.section { padding: 6rem 0; }
.section--tight { padding-bottom: 3rem; }

/* Header: ticker + navbar viven en un solo bloque fijo, sin huecos entre ambos */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Ticker de acceso */
.access-ticker {
  background: var(--volt);
  color: #0b0e11;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.4rem 0;
  max-height: 40px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
}
.access-ticker__track {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: ticker 26s linear infinite;
}
.access-ticker__track span { margin: 0 0.6rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-header.is-scrolled .access-ticker {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* Navbar */
#mainNav {
  background: transparent;
  padding: 1rem 0;
  transition: background 0.25s ease, padding 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-scrolled #mainNav {
  background: rgba(11, 14, 17, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.brand-mark--accent { color: var(--volt); }
.navbar-nav .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover { color: var(--text-primary); }
.account-btn {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.account-btn:hover { border-color: var(--volt); color: var(--volt); }
.account-btn::after { display: none; }

/* Panel de cuenta: reemplaza el recuadro simple por un panel completo */
.account-panel {
  min-width: 300px;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  margin-top: 0.6rem;
}
.account-panel__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(135deg, rgba(200, 255, 77, 0.08), transparent);
  border-bottom: 1px solid var(--border);
}
.account-panel__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  color: var(--volt);
  font-size: 1.3rem;
  border: 1px solid var(--border);
}
.account-panel__title { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.account-panel__subtitle { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.account-panel__body { padding: 0.9rem 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.account-panel__action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.account-panel__action i { color: var(--volt); font-size: 1rem; }
.account-panel__action:hover { border-color: var(--volt); color: var(--volt); }
.account-panel__action--primary { background: var(--volt); color: #0b0e11; border-color: var(--volt); }
.account-panel__action--primary i { color: #0b0e11; }
.account-panel__action--primary:hover { background: var(--volt-dim); color: #0b0e11; }

/* Hero */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(200, 255, 77, 0.12) 0%, rgba(255, 67, 104, 0.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: block;
}
.hero__copy {
  max-width: 650px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.2rem;
}
.hero__lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-volt {
  background: var(--volt);
  color: #0b0e11;
  font-weight: 700;
  border: none;
}
.btn-volt:hover { background: var(--volt-dim); color: #0b0e11; }
.btn-outline-light { border-color: var(--border); font-weight: 600; }
.btn-outline-light:hover { background: var(--bg-panel); border-color: var(--volt); color: var(--volt); }

.hero__stats { display: flex; gap: 2.5rem; }
.stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- SLIDER DE FONDO HERO --- */
.hero__background-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0;
  animation: fadeCrossfade 15s ease-in-out infinite;
}

.hero__bg-slide:nth-child(1) { animation-delay: 0s; }
.bg-slide-2 { animation-delay: 5s !important; }
.bg-slide-3 { animation-delay: 10s !important; }

@keyframes fadeCrossfade {
  0%   { opacity: 0; transform: scale(1); }
  10%  { opacity: 0.6; }
  33%  { opacity: 0.6; }
  43%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; transform: scale(1); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to right, var(--bg-base) 25%, rgba(11, 14, 17, 0.85) 50%, transparent 100%),
    linear-gradient(to bottom, var(--bg-base) 0%, transparent 15%, transparent 85%, var(--bg-base) 100%);
  pointer-events: none;
}

/* Access card (elemento firma): tarjeta de socio digital */
.access-card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-panel-2) 0%, var(--bg-panel) 55%);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 1.6rem;
  max-width: 320px;
  margin-inline: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.access-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(200, 255, 77, 0.35), transparent 40%, transparent 70%, rgba(255, 67, 104, 0.25));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.access-card__header {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.access-card__id {
  margin-left: auto;
  color: var(--text-muted);
  opacity: 0.7;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 0 0 rgba(200, 255, 77, 0.6);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 255, 77, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(200, 255, 77, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 255, 77, 0); }
}

/* Fila de socio: iniciales + nombre + plan */
.access-card__member {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.access-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 0.6rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--volt);
  flex-shrink: 0;
}
.access-card__name { display: block; font-weight: 700; font-size: 0.92rem; line-height: 1.2; }
.access-card__plan {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.access-card__qr { display: flex; justify-content: center; margin-bottom: 1.2rem; }
.qr-mock {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 0.8rem;
  background: #ffffff;
  padding: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--border);
}
.qr-mock svg {
  width: 100%;
  height: 100%;
  shape-rendering: crispEdges;
  fill: var(--bg-base);
}
.qr-mock__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--coral);
  box-shadow: 0 0 12px 2px var(--coral);
  animation: scan 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes scan {
  0% { top: 4%; }
  50% { top: 92%; }
  100% { top: 4%; }
}
.access-card__status {
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--volt);
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}
.access-card__status i { margin-right: 0.4rem; }
.access-card__footer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Feature cards */
.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--volt); }
.feature-card i { font-size: 1.8rem; color: var(--volt); margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

.info-strip {
  display: flex;
  gap: 1rem;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  height: 100%;
}
.info-strip i { font-size: 1.4rem; color: var(--coral); }
.info-strip h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-strip p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0; }

/* Carrusel */
.gym-carousel { margin-top: 2rem; }

.carousel-slide__bg {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-slide__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 14, 17, 0.95) 0%, rgba(11, 14, 17, 0.3) 50%, rgba(11, 14, 17, 0.1) 100%);
  pointer-events: none;
}

.carousel-caption {
  text-align: left;
  left: 5%;
  bottom: 1.5rem;
  background: rgba(11, 14, 17, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  max-width: 280px;
  z-index: 2;
}
.carousel-caption h5 { font-family: var(--font-display); letter-spacing: 0.02em; }
.carousel-caption p { font-size: 0.85rem; margin-bottom: 0; color: var(--text-muted); }

/* Planes */
.plan-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2.2rem;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card--featured { border-color: var(--volt); background: var(--bg-panel-2); }
.plan-card__badge {
  position: absolute;
  top: -12px;
  right: 1.6rem;
  background: var(--volt);
  color: #0b0e11;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.plan-card__desc { color: var(--text-muted); font-size: 0.88rem; min-height: 2.6rem; }
.plan-card__price {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1rem 0 1.4rem;
}
.plan-card__price span:first-child { font-size: 1.1rem; color: var(--text-muted); }
.plan-card__period { font-size: 0.85rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.plan-card__list { list-style: none; padding: 0; margin-bottom: 1.6rem; }
.plan-card__list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.plan-card__list i { color: var(--volt); }
.plan-card__note { color: var(--text-muted); font-size: 0.85rem; margin-top: 2rem; }

/* Ubicación */
.map-frame {
  height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.4) invert(0.92) contrast(0.9);
}
.contact-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.contact-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.8rem; }
.contact-list i { color: var(--coral); }

/* Footer */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}
.footer__desc { color: var(--text-muted); font-size: 0.88rem; margin: 1rem 0 1.2rem; max-width: 22rem; }
.footer h5 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.footer__links a { color: var(--text-muted); text-decoration: none; }
.footer__links a:hover { color: var(--volt); }
.social-row { display: flex; gap: 0.8rem; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.social-row a:hover { border-color: var(--coral); color: var(--coral); }
.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .access-ticker__track, .dot, .qr-mock__scan { animation: none; }
}

/* Tablet */
@media (max-width: 991.98px) {
  .hero__grid { 
    display: flex;
    flex-direction: column;
    text-align: center; 
  }
  
  .hero__copy { 
    max-width: 100%; 
  }
  
  .hero__actions, .hero__stats { 
    justify-content: center; 
  }
  
  .hero__lead { 
    margin-inline: auto; 
  }

  .hero__bg-overlay {
    background: 
      linear-gradient(to right, rgba(11, 14, 17, 0.9) 0%, rgba(11, 14, 17, 0.7) 100%),
      linear-gradient(to top, var(--bg-base) 0%, transparent 20%);
  }
}

/* Botón hamburguesa custom (reemplaza navbar-toggler de Bootstrap) */
.nav-toggler {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggler:hover { border-color: var(--volt); }
.nav-toggler__bar {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggler[aria-expanded="true"] .nav-toggler__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggler[aria-expanded="true"] .nav-toggler__bar:nth-child(2) { opacity: 0; }
.nav-toggler[aria-expanded="true"] .nav-toggler__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sidebar mobile: panel fijo que entra desde la derecha, punto fijo real sin saltos */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 340px);
  height: 100dvh;
  background: var(--bg-panel-2);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.3rem 2rem;
  overflow-y: auto;
}
.mobile-sidebar.is-open { transform: translateX(0); }
.mobile-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-sidebar__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-sidebar__close:hover { border-color: var(--coral); color: var(--coral); }
.mobile-sidebar__nav { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1.4rem; }
.mobile-sidebar__link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 0.3rem;
  border-bottom: 1px solid var(--border);
}
.mobile-sidebar__link:last-child { border-bottom: none; }
.mobile-sidebar__account {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-sidebar__account-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.mobile-sidebar__account-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-primary);
  background: var(--bg-panel);
  border: 1px solid var(--border);
}
.mobile-sidebar__account-action i { color: var(--volt); }
.mobile-sidebar__account-action--primary { background: var(--volt); color: #0b0e11; border-color: var(--volt); }
.mobile-sidebar__account-action--primary i { color: #0b0e11; }

.mobile-sidebar__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 1055;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-sidebar__backdrop.is-open { opacity: 1; pointer-events: auto; }

body.no-scroll { overflow: hidden; }

@media (max-width: 991.98px) {
  .nav-toggler { display: flex; }
}

@media (min-width: 992px) {
  .mobile-sidebar,
  .mobile-sidebar__backdrop,
  .nav-toggler { display: none !important; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 6rem 0 3rem; }
  .hero__title { font-size: 3rem; }
  .hero__stats { flex-direction: column; gap: 1.2rem; align-items: center; }
  .stat-num { font-size: 1.8rem; }

  /* Títulos centrados: lectura más limpia en columna única */
  .section > .container > .eyebrow,
  .section > .container > .section-title { text-align: center; }

  .carousel-caption { left: 2%; right: 2%; bottom: 1rem; max-width: 96%; }
  .carousel-slide__bg { height: 320px; }

  .feature-card { padding: 1.5rem; }
  .info-strip { padding: 1.1rem; }

  /* Planes: carrusel horizontal con snap, look propio en mobile */
  #planes .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    margin: 0 -1rem;
    padding: 0.3rem 1rem 1.2rem;
  }
  #planes .row > [class*="col-"] {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  #planes .plan-card:hover { transform: none; }
  .plan-hint {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: -0.4rem;
    margin-bottom: 0.6rem;
  }

  .contact-card { padding: 1.5rem; }
}

@media (min-width: 768px) {
  .plan-hint { display: none; }
}