/* Nexar Host — Brand: negro + gradiente cyan → purple → magenta */
:root {
  --bg: #000000;
  --bg-elevated: #0a0a0f;
  --bg-card: #0d0d14;
  --cyan: #00ccff;
  --blue: #0066ff;
  --purple: #6600cc;
  --magenta: #cc33ff;
  --silver: #a7a9ac;
  --text: #e8eaed;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 1rem;
  --font: 'Exo 2', system-ui, sans-serif;
  --font-display: 'Orbitron', 'Exo 2', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --gradient-brand: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 35%, var(--magenta) 70%, var(--purple) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(0, 204, 255, 0.15), rgba(102, 0, 204, 0.15));
  --glow-cyan: 0 0 40px rgba(0, 204, 255, 0.35);
  --glow-magenta: 0 0 50px rgba(204, 51, 255, 0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(0, 102, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 80% 10%, rgba(204, 51, 255, 0.1), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

main, .site-header, .site-footer { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

/* Utilidades */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: rgba(13, 13, 20, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
}

.glass:hover {
  border-color: rgba(0, 204, 255, 0.2);
  box-shadow: var(--glow-cyan);
}

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 204, 255, 0.35);
  background: var(--gradient-brand-soft);
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.section-head h2,
.section-head h3 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  box-shadow: var(--glow-cyan), var(--glow-magenta);
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 0 50px rgba(0, 204, 255, 0.45), 0 0 60px rgba(204, 51, 255, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 204, 255, 0.25);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(0, 102, 255, 0.12);
  border-color: rgba(204, 51, 255, 0.4);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.btn-sm:hover { filter: brightness(1.15); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: 0.3s;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 102, 255, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 204, 255, 0.25));
}
.logo--nav .logo-img { max-height: 58px; max-width: min(220px, 42vw); }
.logo--footer .logo-img { max-height: 64px; }
.logo--hero .logo-img {
  max-height: clamp(88px, 16vw, 148px);
  max-width: min(360px, 88vw);
  margin: 0 0 1.25rem;
  filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.35)) drop-shadow(0 0 40px rgba(204, 51, 255, 0.2));
}
.hero-content .logo--hero {
  display: block;
}

.nav-menu {
  display: none;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-menu a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  border-radius: 0.5rem;
}
.nav-menu a:hover {
  color: #fff;
  background: rgba(0, 102, 255, 0.1);
  box-shadow: inset 0 -2px 0 var(--cyan);
}


.nav-bar-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.btn-register {
  background: var(--gradient-brand);
  color: #000;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 0 24px rgba(0, 204, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(204, 51, 255, 0.45);
  color: #000;
}

.btn-client {
  white-space: nowrap;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}
.btn-client svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
  border-color: rgba(0, 204, 255, 0.35);
  background: rgba(0, 102, 255, 0.1);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Language dropdown */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-dropdown__trigger,
.lang-dropdown__option {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  font: inherit;
  font-family: var(--font);
  line-height: 1;
  box-sizing: border-box;
}

button.lang-dropdown__trigger {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  min-height: 2.35rem;
  min-width: 0;
  background-color: rgba(8, 12, 24, 0.85) !important;
  background-image: none !important;
  border: 1px solid rgba(0, 204, 255, 0.3) !important;
  border-radius: 0.6rem;
  color: #f1f5f9 !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

button.lang-dropdown__trigger:hover,
.lang-dropdown.is-open button.lang-dropdown__trigger {
  border-color: rgba(0, 204, 255, 0.55) !important;
  background-color: rgba(0, 70, 140, 0.35) !important;
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.15);
}

button.lang-dropdown__trigger:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.35);
}

.lang-dropdown__flag {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.lang-flag-svg {
  display: block;
  width: 21px;
  height: 15px;
}

.lang-dropdown__label {
  flex-shrink: 0;
  line-height: 1;
}

.lang-dropdown__arrow {
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--cyan);
  transition: transform 0.22s ease;
}

.lang-dropdown.is-open .lang-dropdown__arrow {
  transform: rotate(180deg);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 11rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #0a0c14;
  border: 1px solid rgba(0, 204, 255, 0.35);
  border-radius: 0.65rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 204, 255, 0.12);
  z-index: 300;
  animation: langDropIn 0.18s ease;
}

@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-dropdown__menu[hidden] { display: none !important; }

button.lang-dropdown__option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: none !important;
  border-radius: 0.45rem;
  background: transparent !important;
  color: #cbd5e1 !important;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

button.lang-dropdown__option:hover {
  background-color: rgba(0, 102, 255, 0.18) !important;
  color: #fff !important;
}

button.lang-dropdown__option.is-active {
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.12), rgba(102, 0, 204, 0.12)) !important;
  color: var(--cyan) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 204, 255, 0.3);
}

@media (max-width: 520px) {
  .nav-bar-end .lang-dropdown__label { display: none; }
  button.lang-dropdown__trigger { padding: 0.5rem 0.65rem; gap: 0.4rem; }
}

.nav-mobile {
  display: none;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--border);
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.05); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, #000 20%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-a { top: -10%; left: 20%; width: 650px; height: 450px; background: rgba(0, 102, 255, 0.22); }
.hero-glow-b { bottom: 0; right: 0; width: 400px; height: 400px; background: rgba(204, 51, 255, 0.15); }

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 204, 255, 0.35);
  background: var(--gradient-brand-soft);
  color: var(--cyan);
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.hero-perks li { display: flex; align-items: center; gap: 0.4rem; }

/* Terminal */
.terminal-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.terminal {
  border-radius: var(--radius);
  padding: 1px;
  background: var(--gradient-brand);
  box-shadow: var(--glow-cyan), var(--glow-magenta);
}
.terminal-body {
  background: rgba(0, 0, 0, 0.92);
  border-radius: calc(var(--radius) - 1px);
  padding: 1.5rem;
}
.terminal-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.terminal-top span:last-child {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #64748b;
}
.terminal pre {
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.75;
  color: #94a3b8;
  overflow-x: auto;
}
.terminal .c-cmd { color: var(--cyan); }
.terminal .c-ok { color: #4ade80; }

.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.terminal-metrics span {
  text-align: center;
  padding: 0.45rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  color: #64748b;
  background: rgba(255,255,255,0.04);
  border-radius: 0.4rem;
}

.chip {
  position: absolute;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 0.65rem;
  border: 1px solid var(--border);
  background: rgba(12, 20, 40, 0.92);
  backdrop-filter: blur(8px);
}
.chip-a { top: -0.75rem; right: -0.75rem; color: var(--cyan); border-color: rgba(0, 204, 255, 0.4); box-shadow: var(--glow-cyan); }
.chip-b { bottom: -0.75rem; left: -0.75rem; color: #cbd5e1; }

/* Hero carousel (inside terminal frame) */
.hero-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 0 0.35rem;
  align-items: center;
}
.hero-carousel-viewport {
  position: relative;
  grid-column: 2;
  grid-row: 1;
}
.hero-carousel:not(.has-multiple) .hero-carousel-viewport { min-height: 0; }
.hero-carousel.has-multiple .hero-carousel-viewport { min-height: 10.5rem; }
.hero-carousel-track { position: relative; min-height: 9.5rem; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity 0.55s ease, visibility 0.55s, transform 0.55s ease;
  pointer-events: none;
  transform: translateX(8px);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-slide img {
  display: block;
  width: 100%;
  max-height: 10.5rem;
  object-fit: cover;
  border-radius: 0.45rem;
  border: 1px solid rgba(0, 204, 255, 0.15);
}
.hero-slide[data-slide-type="image"] img {
  max-height: 11rem;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
}

.hero-slide-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0.25rem 0.25rem;
  min-height: 9rem;
}
.hero-slide-logo {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 24px rgba(0, 102, 255, 0.35)) drop-shadow(0 0 32px rgba(204, 51, 255, 0.2));
}
.hero-slide-tagline {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 18rem;
}

.hero-slide-products {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 9rem;
  justify-content: center;
}
.hero-slide-products li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: #e2e8f0;
  padding: 0.4rem 0.6rem;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, rgba(0, 204, 255, 0.08), rgba(204, 51, 255, 0.06));
  border: 1px solid rgba(0, 204, 255, 0.15);
}
.hero-slide-products svg {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--magenta);
  flex-shrink: 0;
}

.hero-slide-services {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 9rem;
  justify-content: center;
}
.hero-slide-services li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-slide-services svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.hero-slide-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
  min-height: 9rem;
  padding: 0.25rem 0;
}
.hero-slide-panel__label {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}
.hero-slide-panel__url {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-slide-panel__desc {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
}
.hero-slide-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-slide-panel__btn svg { width: 0.9rem; height: 0.9rem; }

.hero-carousel-nav {
  grid-row: 1;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 204, 255, 0.25);
  border-radius: 50%;
  background: rgba(8, 12, 28, 0.9);
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.hero-carousel-nav--prev { grid-column: 1; }
.hero-carousel-nav--next { grid-column: 3; }
.hero-carousel-nav:hover {
  background: rgba(0, 204, 255, 0.12);
  border-color: rgba(0, 204, 255, 0.5);
  transform: scale(1.05);
}
.hero-carousel-nav svg { width: 1rem; height: 1rem; }
.hero-carousel:not(.has-multiple) .hero-carousel-nav { display: none; }

.hero-carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  grid-column: 1 / -1;
  grid-row: 2;
}
.hero-carousel.has-multiple .hero-carousel-dots { display: flex; }
.hero-carousel-dots:empty { display: none !important; }
.hero-carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.hero-carousel-dot.is-active {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 204, 255, 0.5);
  transform: scale(1.2);
}
.hero-carousel-dot:hover { background: rgba(0, 204, 255, 0.6); }

/* Stats */
.stats-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-box { padding: 1.5rem; }
.stat-box svg { width: 2rem; height: 2rem; color: var(--cyan); margin-bottom: 1rem; }
.stat-box:hover { border-color: rgba(204, 51, 255, 0.35); }
.stat-num {
  font-family: var(--mono);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
}
.stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

/* Services */
.cards-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 204, 255, 0.35);
  box-shadow: var(--glow-cyan);
}
.card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: var(--gradient-brand-soft);
  color: var(--cyan);
  border: 1px solid rgba(0, 204, 255, 0.2);
}
.card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tags span {
  font-size: 0.68rem;
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(255,255,255,0.06);
  color: #cbd5e1;
}
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.card-link:hover { color: var(--magenta); }

/* Pricing boards */
.pricing-board {
  padding: 0;
  overflow: hidden;
  border-color: rgba(0, 204, 255, 0.18);
  background: rgba(6, 8, 16, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-table thead {
  background: rgba(10, 18, 36, 0.95);
  border-bottom: 1px solid rgba(0, 204, 255, 0.15);
}

.pricing-table th {
  padding: 1rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  font-family: var(--font-display);
  white-space: nowrap;
}

.pricing-table td {
  padding: 1.15rem 1.25rem;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.pricing-table__row:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.pricing-table__row.is-featured td {
  background: rgba(0, 102, 255, 0.07);
}

.pricing-table__row.is-featured:hover td {
  background: rgba(0, 102, 255, 0.1);
}

.pricing-table__plan {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: 8rem;
}

.pricing-table__plan strong {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.pricing-table__price {
  white-space: nowrap;
}

.price-amount {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.price-period {
  margin-left: 0.15rem;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-table__th-action,
.pricing-table__action {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

.pricing-table__action {
  padding-right: 1.35rem !important;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.25), 0 0 30px rgba(204, 51, 255, 0.15);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.btn-buy:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 0 28px rgba(0, 204, 255, 0.4), 0 0 40px rgba(204, 51, 255, 0.25);
}

.btn-buy,
.mu-plan-card__btn[data-checkout] {
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.tag-pop {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: rgba(204, 51, 255, 0.22);
  color: #e9a3ff;
  border: 1px solid rgba(204, 51, 255, 0.35);
  font-family: var(--font-display);
  vertical-align: middle;
}

/* Legacy price helpers */
.price { font-family: var(--mono); font-weight: 700; color: #fff; font-size: 1.05rem; }
.price small { color: #64748b; font-weight: 400; font-size: 0.8rem; }

.extras { padding: 2rem; margin-top: 2.5rem; }
.extras h3 { color: #fff; margin-bottom: 1rem; }
.extras ul {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) { .extras ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .extras ul { grid-template-columns: repeat(3, 1fr); } }
.extras li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}
.extras li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
}

/* Payments */
.cards-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pay-card { padding: 1.5rem; text-align: center; }
.pay-card svg { width: 2rem; height: 2rem; color: var(--cyan); margin: 0 auto 1rem; }
.pay-card h3 { color: #fff; font-size: 1rem; font-family: var(--font-display); }
.pay-card .region { color: var(--magenta); font-size: 0.75rem; font-weight: 600; margin: 0.35rem 0 0.65rem; }
.pay-card p { font-size: 0.875rem; color: var(--muted); }

/* Testimonials */
.cards-2 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .cards-2 { grid-template-columns: repeat(2, 1fr); } }
.quote { padding: 1.5rem; }
.stars { color: #fbbf24; font-size: 0.85rem; margin-bottom: 0.75rem; }
.quote p { font-size: 0.9rem; color: #cbd5e1; line-height: 1.7; }
.quote footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.quote strong { display: block; color: #fff; }
.quote span { font-size: 0.75rem; color: #64748b; }

.testimonials-section .section-head {
  margin-bottom: 1.75rem;
}

.testimonials-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 1.5rem;
}

.testimonial-form-wrap {
  margin: 0 auto 2.5rem;
  padding: 2rem;
  max-width: 36rem;
  border-color: rgba(0, 204, 255, 0.2);
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.08);
}
.testimonial-form-wrap h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.testimonial-form-wrap .hint {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.testimonial-form .field {
  margin-bottom: 1.1rem;
}
.testimonial-form .field input,
.testimonial-form .field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.55rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}
.testimonial-form .field textarea {
  resize: vertical;
  min-height: 7rem;
}
.testimonial-form .btn-block {
  width: 100%;
  margin-top: 0.25rem;
}
.testimonials-published-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.quote .quote-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.75;
  font-style: italic;
}
.quote footer span:empty {
  display: none;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-msg {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
}
.form-msg--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.form-msg--err {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Recommended services */
.reco-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .reco-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reco-grid { grid-template-columns: repeat(3, 1fr); max-width: 72rem; }
}
.reco-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.reco-card:hover {
  border-color: rgba(139, 92, 246, 0.45);
  transform: translateY(-2px);
}
.reco-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(139, 92, 246, 0.15);
  color: var(--magenta);
}
.reco-card__icon svg { width: 1.25rem; height: 1.25rem; }
.reco-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.reco-card__body strong {
  color: #fff;
  font-size: 0.95rem;
}
.reco-card__body span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.reco-card__arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #64748b;
  margin-top: 0.15rem;
}
.reco-card:hover .reco-card__arrow { color: var(--cyan); }

/* Checkout modal */
body.checkout-open { overflow: hidden; }

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.checkout-modal[hidden] { display: none !important; }

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.checkout-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 1.75rem;
  border-radius: 1rem;
  z-index: 1;
  animation: checkout-in 0.25s ease;
}

@keyframes checkout-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.checkout-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  cursor: pointer;
}

.checkout-modal__close:hover { color: #fff; background: rgba(255, 255, 255, 0.1); }
.checkout-modal__close svg { width: 1.1rem; height: 1.1rem; }

.checkout-modal__head { margin-bottom: 1.25rem; padding-right: 2rem; }
.checkout-modal__head h2 { font-size: 1.2rem; color: #fff; margin: 0.5rem 0 0.35rem; }
.checkout-modal__plan {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cyan);
  margin: 0 0 0.35rem;
}
.checkout-modal__head .hint { font-size: 0.8rem; margin: 0; }

.checkout-modal__actions { display: flex; flex-direction: column; gap: 0.75rem; }

.checkout-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.checkout-option:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
  background: rgba(139, 92, 246, 0.08);
}

.checkout-option.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.checkout-option--wa:hover { border-color: rgba(34, 197, 94, 0.45); background: rgba(34, 197, 94, 0.08); }
.checkout-option--panel:hover { border-color: rgba(0, 204, 255, 0.45); background: rgba(0, 204, 255, 0.06); }
.checkout-option--ticket:hover { border-color: rgba(251, 191, 36, 0.45); background: rgba(251, 191, 36, 0.08); }
.checkout-option--ticket .checkout-option__icon { color: #fbbf24; }

.checkout-option__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
}

.checkout-option--wa .checkout-option__icon { color: #4ade80; }
.checkout-option--panel .checkout-option__icon { color: var(--cyan); }
.checkout-option__icon svg { width: 1.15rem; height: 1.15rem; }

.checkout-option__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.checkout-option__body strong { color: #fff; font-size: 0.9rem; }
.checkout-option__body span { font-size: 0.75rem; color: var(--muted); line-height: 1.45; }

.checkout-option__arrow {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #64748b;
  margin-top: 0.2rem;
}

.checkout-modal__panel-hint {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0;
  text-align: center;
  line-height: 1.45;
}
.checkout-modal__panel-hint[hidden] {
  display: none !important;
}

/* FAQ */
.faq { max-width: 48rem; margin: 0 auto; padding: 0 1.25rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: #94a3b8; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding-bottom: 1.15rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-side { padding: 1.5rem; }
.contact-side h3 { color: #fff; margin-bottom: 1rem; }
.contact-side a { color: var(--cyan); }
.contact-side a:hover { text-decoration: underline; }
.contact-side .hint { margin-top: 1rem; font-size: 0.75rem; color: #64748b; }

.contact-form { padding: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(6, 11, 24, 0.6);
  color: #fff;
  font: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-msg { display: none; margin-top: 0.75rem; font-size: 0.875rem; color: #4ade80; }
.form-msg.show { display: block; }

/* Hosted servers marquee */
.hosted-servers {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(6, 11, 24, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.hosted-servers__head-wrap {
  margin-bottom: 2rem;
}
.hosted-servers__head {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}
.hosted-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hosted-marquee__viewport {
  overflow: hidden;
  width: 100%;
}
.hosted-marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  padding: 0.5rem 0;
  animation: hosted-scroll-right 42s linear infinite;
  will-change: transform;
}
.hosted-marquee:hover .hosted-marquee__track {
  animation-play-state: paused;
}
@keyframes hosted-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.hosted-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(8rem, 12vw);
  z-index: 2;
  pointer-events: none;
}
.hosted-marquee__fade--left {
  left: 0;
  background: linear-gradient(90deg, #000 0%, transparent 100%);
}
.hosted-marquee__fade--right {
  right: 0;
  background: linear-gradient(270deg, #000 0%, transparent 100%);
}
.hosted-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 11rem;
  height: 4.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 28, 0.72);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.hosted-logo:hover {
  border-color: rgba(0, 204, 255, 0.35);
  box-shadow: 0 0 28px rgba(0, 204, 255, 0.12);
  transform: translateY(-2px);
}
.hosted-logo a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.hosted-logo img {
  max-width: 100%;
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.05) brightness(1.08);
  opacity: 0.95;
  transition: opacity 0.25s, filter 0.25s;
}
.hosted-logo--mu img {
  max-height: 3.75rem;
}
.hosted-logo:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1.1);
}
@media (prefers-reduced-motion: reduce) {
  .hosted-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 72rem;
    margin-inline: auto;
    padding-inline: 1rem;
  }
  .hosted-marquee__fade { display: none; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-about p { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); max-width: 22rem; }
.site-footer h4 { color: #fff; font-size: 0.875rem; margin-bottom: 0.85rem; }
.site-footer ul li { margin-bottom: 0.45rem; }
.site-footer ul a { font-size: 0.875rem; color: var(--muted); }
.site-footer ul a:hover { color: #fff; }
.footer-end {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
}
@media (min-width: 640px) {
  .footer-end { flex-direction: row; justify-content: space-between; }
}

/* WhatsApp */
.wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 1.6rem; height: 1.6rem; fill: currentColor; }

.mt-4 { margin-top: 3rem; }

/* MU plans — card carousel (Louis / SSemu / MSPro) */
.section--mu-plans {
  position: relative;
  overflow: hidden;
}

.section--mu-plans::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--mu-dot-rgb, 157, 80, 255), 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 20%, transparent 75%);
  transition: background-image 0.4s ease;
}

.section--mu-plans[data-mu-theme="louis"] { --mu-dot-rgb: 157, 80, 255; }
.section--mu-plans[data-mu-theme="ssemu"] { --mu-dot-rgb: 56, 189, 248; }
.section--mu-plans[data-mu-theme="mspro"] { --mu-dot-rgb: 248, 113, 113; }

.mu-pricing {
  position: relative;
  z-index: 1;
}

.mu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.mu-tab {
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--tab-rgb), 0.35);
  background: rgba(12, 12, 20, 0.85);
  color: rgba(var(--tab-rgb), 0.85);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.mu-tab--louis { --tab-rgb: 157, 80, 255; }
.mu-tab--ssemu { --tab-rgb: 56, 189, 248; }
.mu-tab--mspro { --tab-rgb: 248, 113, 113; }

.mu-tab:hover {
  border-color: rgba(var(--tab-rgb), 0.65);
  color: #fff;
}

.mu-tab.is-active {
  background: linear-gradient(135deg, rgba(var(--tab-rgb), 0.5), rgba(var(--tab-rgb), 0.2));
  border-color: rgba(var(--tab-rgb), 0.85);
  color: #fff;
  box-shadow: 0 0 24px rgba(var(--tab-rgb), 0.35);
}

.mu-panel[hidden] {
  display: none !important;
}

.mu-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.mu-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  touch-action: pan-x;
  cursor: grab;
}
.mu-carousel__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.mu-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.mu-carousel__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 0.25rem;
}

/* Theme tokens per panel */
.mu-panel--louis {
  --mu-rgb: 157, 80, 255;
  --mu-accent: #9d50ff;
  --mu-light: #c77dff;
  --mu-btn-a: #9d50ff;
  --mu-btn-b: #6600cc;
}
.mu-panel--ssemu {
  --mu-rgb: 56, 189, 248;
  --mu-accent: #38bdf8;
  --mu-light: #7dd3fc;
  --mu-btn-a: #38bdf8;
  --mu-btn-b: #0284c7;
}
.mu-panel--mspro {
  --mu-rgb: 248, 113, 113;
  --mu-accent: #f87171;
  --mu-light: #fca5a5;
  --mu-btn-a: #f87171;
  --mu-btn-b: #dc2626;
}

.mu-panel[style*="--tab-rgb"] {
  --mu-rgb: var(--tab-rgb);
}

.mu-plan-card[style*="--plan-rgb"] {
  --mu-rgb: var(--plan-rgb);
}

.mu-plan-card {
  position: relative;
  flex: 0 0 min(100%, 320px);
  width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--mu-rgb), 0.32);
  background: linear-gradient(180deg, rgba(var(--mu-rgb), 0.08) 0%, rgba(8, 8, 14, 0.98) 45%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

@media (min-width: 768px) {
  .mu-plan-card {
    flex: 0 0 300px;
    width: 300px;
  }
}

.mu-plan-card__glow {
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--mu-accent), var(--mu-light), var(--mu-accent), transparent);
  box-shadow: 0 0 20px rgba(var(--mu-rgb), 0.75);
}

.mu-plan-card__head {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mu-plan-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.mu-plan-card__price {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--mu-light);
  text-shadow: 0 0 30px rgba(var(--mu-rgb), 0.45);
}

.mu-plan-card__currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.mu-plan-card__features {
  flex: 1;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.mu-plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.mu-plan-card__features li::before {
  content: '✓';
  flex-shrink: 0;
  color: #4ade80;
  font-weight: 800;
  font-size: 0.85rem;
}

.mu-plan-card__btn {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, var(--mu-btn-a) 0%, var(--mu-btn-b) 100%);
  box-shadow: 0 0 24px rgba(var(--mu-rgb), 0.35);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}

.mu-plan-card__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 0 32px rgba(var(--mu-rgb), 0.5);
}

.mu-panel .mu-carousel__btn {
  border: 1px solid rgba(var(--mu-rgb), 0.4);
  background: rgba(8, 8, 16, 0.92);
}

.mu-panel .mu-carousel__btn:hover {
  border-color: rgba(var(--mu-rgb), 0.75);
  background: rgba(var(--mu-rgb), 0.18);
}

.mu-carousel__btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  position: relative;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 8, 16, 0.95);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.mu-carousel__btn:active {
  transform: scale(0.96);
}

.mu-carousel__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.visits-bar {
  padding: 2rem 0 3rem;
}
.visits-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.25rem;
  text-align: center;
}
.visits-bar__inner svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--cyan);
}
.visits-bar__inner strong {
  font-size: 1.35rem;
  color: #fff;
  font-family: var(--font-display);
}
.visits-bar__hint {
  font-size: 0.72rem;
  color: var(--muted);
  width: 100%;
}

.contact-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media (max-width: 640px) {
  .mu-carousel__btn--prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .mu-carousel__btn--next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .mu-carousel {
    position: relative;
    grid-template-columns: 1fr;
    padding: 0 2.5rem;
  }
}
