/* ========== styles.css ========== */
/* SHYRO Hosting - Versión refinada profesional */
/* Colores: #04D2FB (cian), #027BC8 (azul medio), #47EEFC (cian brillante) */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: #05070a;
  color: #eef2ff;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(4, 210, 251, 0.25);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(4, 210, 251, 0.25);
  color: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section-header h2 {
  background: linear-gradient(135deg, #ffffff 0%, #04D2FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.section-header p {
  color: #7e8fa8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0.75rem auto 0;
  line-height: 1.65;
}

/* ========== ANIMACIONES GLOBALES ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ----- NAVBAR ----- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(4, 210, 251, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(2, 4, 10, 0.97);
  border-bottom-color: rgba(4, 210, 251, 0.08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2rem;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo i {
  color: #04D2FB;
  font-size: 1.8rem;
  filter: drop-shadow(0 0 6px rgba(4, 210, 251, 0.35));
}

.logo span {
  background: linear-gradient(120deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ========== LOGO PERSONALIZADO ========== */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .logo-img {
    height: 32px;
  }
}

.logo-img-only {
  height: 40px;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #94a3b8;
  background: none;
  border: none;
  z-index: 1001;
  transition: color 0.2s ease;
  padding: 0.25rem;
}

.hamburger:hover {
  color: #04D2FB;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #e2e8f0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: #04D2FB;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.btn-cliente,
.nav-link.btn-area {
  padding: 0.4rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: 0.2rem;
  white-space: nowrap;
}

.nav-link.btn-cliente {
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.25);
  color: #96FAFD;
}

.nav-link.btn-cliente:hover {
  background: rgba(4, 210, 251, 0.15);
  border-color: rgba(4, 210, 251, 0.5);
  color: #ffffff;
}

.nav-link.btn-cliente::after,
.nav-link.btn-area::after {
  display: none;
}

.nav-link.btn-area {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  color: white;
  box-shadow: 0 2px 10px rgba(4, 210, 251, 0.2);
}

.nav-link.btn-area:hover {
  background: linear-gradient(105deg, #27d9f9, #0492db);
  box-shadow: 0 4px 16px rgba(4, 210, 251, 0.3);
  transform: none;
}

/* ----- BOTONES GENERALES ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  box-shadow: 0 4px 16px rgba(4, 210, 251, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(4, 210, 251, 0.35);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(4, 210, 251, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.btn-secondary:hover {
  border-color: rgba(4, 210, 251, 0.4);
  background: rgba(4, 210, 251, 0.06);
  color: #e2e8f0;
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* ========== CARRUSEL DEL HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.slide-1 {
  background: url('header.jpg') center/cover no-repeat;
}

.hero-slide.slide-2 {
  background: url('hardware-bg.jpg') center/cover no-repeat;
}

.hero-slide.slide-3 {
  background: url('texas-bg.jpg') center/cover no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, 0.72);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #96FAFD;
  animation: fadeInUp 0.5s ease forwards;
}

.trust-badge i {
  color: #04D2FB;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1.2;
  min-width: 280px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.55s ease 0.08s forwards;
  opacity: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #04D2FB, #47EEFC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.65;
  animation: fadeInUp 0.55s ease 0.16s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.55s ease 0.24s forwards;
  opacity: 0;
}

.hero-visual {
  flex: 0.8;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  animation: fadeInRight 0.7s ease forwards;
}

.floating-icon {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  filter: drop-shadow(0 0 20px rgba(4, 210, 251, 0.2));
  animation: float 5s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(5, 7, 12, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(4, 210, 251, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #96FAFD;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Controles del carrusel */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 7, 12, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(4, 210, 251, 0.7);
  border-color: transparent;
  color: white;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active {
  width: 22px;
  background: #04D2FB;
  border-radius: 3px;
}

.dot:hover {
  background: rgba(4, 210, 251, 0.6);
}

/* ========== HARDWARE SPECS ========== */
.hardware-specs {
  padding: 5rem 0;
  background: #070b10;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.spec-card {
  background: rgba(12, 14, 22, 0.85);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.spec-card:nth-child(1) { animation-delay: 0.05s; }
.spec-card:nth-child(2) { animation-delay: 0.1s; }
.spec-card:nth-child(3) { animation-delay: 0.15s; }
.spec-card:nth-child(4) { animation-delay: 0.2s; }
.spec-card:nth-child(5) { animation-delay: 0.25s; }
.spec-card:nth-child(6) { animation-delay: 0.3s; }

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 210, 251, 0.3);
  box-shadow: 0 12px 32px -10px rgba(4, 210, 251, 0.15);
}

.spec-icon {
  font-size: 2.2rem;
  color: #04D2FB;
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}

.spec-card:hover .spec-icon {
  transform: scale(1.05);
}

.spec-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.spec-details {
  text-align: center;
}

.spec-highlight {
  display: inline-block;
  background: rgba(4, 210, 251, 0.1);
  padding: 0.2rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #96FAFD;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.spec-details p {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Tarjeta destacada Cloudflare */
.spec-card.highlight-spec {
  background: linear-gradient(135deg, rgba(4, 210, 251, 0.08), rgba(4, 210, 251, 0.03));
  border: 1px solid rgba(4, 210, 251, 0.25);
  position: relative;
  overflow: hidden;
}

.spec-card.highlight-spec::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 210, 251, 0.06), transparent);
  animation: cloudflareShine 4s infinite;
}

@keyframes cloudflareShine {
  0% { left: -100%; }
  60% { left: 100%; }
  100% { left: 100%; }
}

/* ========== SECCIÓN DE PLANES ========== */
.pricing {
  position: relative;
  padding: 5.5rem 0;
  background: url('planes-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 7, 10, 0.92);
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}

/* ========== CATEGORÍA HEADER ========== */
.category-header {
  text-align: center;
  margin: 2rem 0 2.5rem;
  padding: 0.75rem 0 1.25rem;
  border-bottom: 1px solid rgba(4, 210, 251, 0.12);
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.05s forwards;
}

.category-icon {
  font-size: 1.8rem;
  color: #04D2FB;
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.category-description {
  color: #7e8fa8;
  font-size: 0.875rem;
}

body.founder-mode .category-icon { color: #FFD700; }

body.founder-mode .category-title {
  background: linear-gradient(135deg, #ffffff, #FFD700);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Toggle Switch */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.1s forwards;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(12, 14, 22, 0.95);
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.toggle-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7e8fa8;
  transition: color 0.2s ease;
  cursor: pointer;
}

.toggle-label.normal.active { color: #04D2FB; }
.toggle-label.founder.active { color: #FFD700; }

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #262b44;
  transition: 0.25s ease;
  border-radius: 28px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.25s ease;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: linear-gradient(105deg, #D4AF37, #FFD700);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 215, 0, 0.08);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.founder-info i { color: #FFD700; }
.founder-info strong { color: #FFD700; font-size: 1rem; }

.founder-badge {
  background: linear-gradient(105deg, #FFD700, #D4AF37);
  padding: 0.15rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a1a2e;
}

/* Grid de planes */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* Tarjeta de plan */
.pricing-card {
  background: rgba(11, 13, 21, 0.98);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.pricing-card:nth-child(1) { animation-delay: 0.08s; }
.pricing-card:nth-child(2) { animation-delay: 0.16s; }
.pricing-card:nth-child(3) { animation-delay: 0.24s; }
.pricing-card:nth-child(4) { animation-delay: 0.32s; }
.pricing-card:nth-child(5) { animation-delay: 0.4s; }

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 210, 251, 0.35);
  box-shadow: 0 16px 40px -14px rgba(4, 210, 251, 0.2);
}

/* Tarjeta destacada */
.pricing-card.featured {
  border: 1px solid rgba(4, 210, 251, 0.4);
  box-shadow: 0 0 0 1px rgba(4, 210, 251, 0.08), 0 8px 24px -10px rgba(4, 210, 251, 0.2);
  background: rgba(12, 16, 26, 0.99);
}

.pricing-card.featured:hover {
  border-color: rgba(4, 210, 251, 0.6);
  box-shadow: 0 20px 48px -14px rgba(4, 210, 251, 0.28);
}

/* ========== MODO FUNDADOR ========== */
body.founder-mode .pricing-card {
  border-color: rgba(212, 175, 55, 0.2);
}

body.founder-mode .pricing-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px -14px rgba(212, 175, 55, 0.18);
}

body.founder-mode .pricing-card.featured {
  border: 1px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.06);
}

body.founder-mode .pricing-badge {
  background: linear-gradient(90deg, #D4AF37, #FFD700);
  color: #1a1a2e;
}

body.founder-mode .pricing-icon i,
body.founder-mode .pricing-features li i { color: #FFD700; }

body.founder-mode .currency,
body.founder-mode .price-value { color: #FFD700; }

body.founder-mode .price-old { color: #D4AF37; opacity: 0.6; }
body.founder-mode .price-note { color: #FFD700; }

body.founder-mode .btn-pricing {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

body.founder-mode .btn-pricing:hover {
  background: rgba(255, 215, 0, 0.18);
  border-color: rgba(255, 215, 0, 0.6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

body.founder-mode .btn-pricing-featured {
  background: linear-gradient(105deg, #FFD700, #D4AF37);
  color: #1a1a2e;
}

body.founder-mode .btn-pricing-featured:hover {
  background: linear-gradient(105deg, #FFE44D, #FFD700);
  box-shadow: 0 6px 18px -6px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* Badge del plan */
.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #027BC8, #04D2FB);
  padding: 0.25rem 0.9rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-icon {
  text-align: center;
  font-size: 2.2rem;
  color: #04D2FB;
  margin: 1rem 0 0.5rem;
  transition: transform 0.25s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.04);
}

.pricing-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 0.4rem 0;
  color: #e2e8f0;
  letter-spacing: -0.025em;
}

body.founder-mode .pricing-card h3 { color: #e2e8f0; }

.price-container {
  text-align: center;
  margin: 0.75rem 0;
}

.price-normal .price,
.price-founder .price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-normal .currency,
.price-founder .currency {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 600;
  color: #04D2FB;
}

.price-normal .period,
.price-founder .period {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7e8fa8;
}

.price-old {
  font-size: 0.85rem;
  color: #7e8fa8;
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.price-note {
  font-size: 0.65rem;
  color: #04D2FB;
  margin-top: 0.2rem;
}

.hidden { display: none; }

.pricing-features {
  list-style: none;
  margin: 1.25rem 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li i {
  color: #04D2FB;
  font-size: 0.8rem;
  width: 18px;
  flex-shrink: 0;
}

/* Botones de contratación */
.btn-pricing {
  display: block;
  text-align: center;
  background: rgba(4, 210, 251, 0.06);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: #96FAFD;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.btn-pricing:hover {
  background: rgba(4, 210, 251, 0.14);
  border-color: rgba(4, 210, 251, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-pricing:active { transform: translateY(0); }

.btn-pricing-featured {
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(4, 210, 251, 0.25);
}

.btn-pricing-featured:hover {
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
  box-shadow: 0 6px 20px rgba(4, 210, 251, 0.35);
  color: white;
  transform: translateY(-1px);
}

/* ========== SERVER SPLITTER SECTION ========== */
.splitter-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(4, 210, 251, 0.1);
  position: relative;
}

.splitter-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: #04D2FB;
}

.splitter-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  background: rgba(4, 210, 251, 0.04);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(4, 210, 251, 0.1);
  opacity: 0;
  animation: fadeInUp 0.5s ease 0.1s forwards;
}

.splitter-header-icon {
  font-size: 2rem;
  color: #04D2FB;
  background: rgba(4, 210, 251, 0.08);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.splitter-header-content { flex: 1; }

.splitter-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.4rem;
  letter-spacing: -0.025em;
}

.splitter-description {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

.splitter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.splitter-card { border-left: 2px solid rgba(4, 210, 251, 0.4); }
.splitter-card .pricing-icon i { color: #04D2FB; }
.splitter-badge { background: linear-gradient(90deg, #04D2FB, #027BC8); }
.splitter-card.featured { border-left: 2px solid #04D2FB; }

body.founder-mode .splitter-card { border-left-color: rgba(255, 215, 0, 0.4); }
body.founder-mode .splitter-header-icon { color: #FFD700; background: rgba(255, 215, 0, 0.08); }
body.founder-mode .splitter-title { color: #e2e8f0; }
body.founder-mode .splitter-card .pricing-icon i { color: #FFD700; }
body.founder-mode .splitter-badge { background: linear-gradient(90deg, #FFD700, #D4AF37); color: #1a1a2e; }

/* ========== MÁS RECURSOS ========== */
.more-resources {
  text-align: center;
  padding: 2.5rem;
  margin: 1rem 0 2rem;
  background: rgba(12, 14, 22, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease 0.5s forwards;
}

.more-resources:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 210, 251, 0.25);
}

.more-resources-icon {
  font-size: 2.2rem;
  color: #04D2FB;
  margin-bottom: 0.75rem;
}

.more-resources h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.more-resources p {
  color: #7e8fa8;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
  line-height: 1.6;
}

.btn-more-resources {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(105deg, #5865f2, #4752c4);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-more-resources:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(88, 101, 242, 0.45);
}

body.founder-mode .more-resources { border-color: rgba(255, 215, 0, 0.15); }
body.founder-mode .more-resources-icon { color: #FFD700; }
body.founder-mode .more-resources h3 { color: #e2e8f0; }

/* Nota informativa */
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: #5e6a8f;
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(4, 210, 251, 0.04);
  border-radius: 10px;
  display: inline-block;
  width: 100%;
}

.pricing-note i { color: #04D2FB; margin-right: 0.4rem; }

.note-link {
  color: #04D2FB;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.note-link:hover { color: #47EEFC; text-decoration: underline; }

.price-guarantee {
  margin-top: 1.5rem;
  padding: 0.9rem 1.25rem;
  background: rgba(4, 210, 251, 0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  border: 1px solid rgba(4, 210, 251, 0.1);
  color: #7e8fa8;
}

.price-guarantee i { color: #04D2FB; font-size: 1.1rem; }

body.founder-mode .price-guarantee { border-color: rgba(255, 215, 0, 0.1); }
body.founder-mode .price-guarantee i { color: #FFD700; }

/* ========== UBICACIÓN ========== */
.location {
  padding: 5rem 0;
  background: #070b10;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% 40%, rgba(4, 210, 251, 0.05), transparent 55%);
  pointer-events: none;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.location-info {
  opacity: 0;
  animation: fadeInLeft 0.55s ease forwards;
}

.location-map {
  opacity: 0;
  animation: fadeInRight 0.55s ease 0.15s forwards;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.location-badge i { color: #04D2FB; font-size: 0.85rem; }
.location-badge span { color: #96FAFD; font-weight: 500; font-size: 0.85rem; }

.location-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
  letter-spacing: -0.03em;
}

.location-info > p {
  color: #7e8fa8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.location-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  transition: transform 0.2s ease;
}

.stat:hover { transform: translateY(-2px); }

.stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.72rem;
  color: #5e6a8f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.world-map-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #090c18;
  border: 1px solid rgba(4, 210, 251, 0.15);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.world-map-container:hover {
  border-color: rgba(4, 210, 251, 0.3);
  box-shadow: 0 0 30px rgba(4, 210, 251, 0.1);
}

.world-map-image {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.marker-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(4, 210, 251, 0.3);
  border-radius: 50%;
  animation: radarPing 2.5s ease-out infinite;
}

@keyframes radarPing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.marker-dot {
  position: relative;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(4, 210, 251, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-marker:hover .marker-dot {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(4, 210, 251, 0.7);
}

.marker-dot i { font-size: 0.9rem; color: white; }

.marker-label {
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5, 7, 12, 0.95);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(4, 210, 251, 0.3);
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
}

.marker-label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #96FAFD;
}

.marker-label small { font-size: 0.6rem; color: #5e6a8f; }

.map-marker:hover .marker-label {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

/* ========== BENEFITS ========== */
.benefits {
  padding: 5rem 0;
  background: #05070a;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  background: rgba(11, 13, 21, 0.7);
  padding: 1.75rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.5s ease forwards;
  will-change: transform;
}

.benefit-item:nth-child(1) { animation-delay: 0.04s; }
.benefit-item:nth-child(2) { animation-delay: 0.08s; }
.benefit-item:nth-child(3) { animation-delay: 0.12s; }
.benefit-item:nth-child(4) { animation-delay: 0.16s; }
.benefit-item:nth-child(5) { animation-delay: 0.2s; }
.benefit-item:nth-child(6) { animation-delay: 0.24s; }

.benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(4, 210, 251, 0.2);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
  font-size: 2.1rem;
  color: #04D2FB;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.benefit-item:hover .benefit-icon { color: #47EEFC; }

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.benefit-item p {
  color: #7e8fa8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ----- CTA / CONTACTO ----- */
.cta-section {
  position: relative;
  padding: 5.5rem 1rem;
  background: url('contacto-bg.png') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 10, 0.88);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-container { max-width: 760px; margin: 0 auto; }

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeInUp 0.55s ease forwards;
}

.cta-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.55s ease 0.08s forwards;
  line-height: 1.65;
}

.cta-btn {
  background: #5865f2;
  padding: 0.9rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 8px;
  color: white;
  box-shadow: 0 6px 18px rgba(88, 101, 242, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 0;
  animation: fadeInUp 0.55s ease 0.16s forwards;
  font-weight: 600;
}

.cta-btn:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(88, 101, 242, 0.4);
}

.cta-btn:active { transform: translateY(0); }

/* ----- FOOTER ----- */
.footer {
  background: #020308;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.footer-col:nth-child(1) { animation-delay: 0.04s; }
.footer-col:nth-child(2) { animation-delay: 0.08s; }
.footer-col:nth-child(3) { animation-delay: 0.12s; }
.footer-col:nth-child(4) { animation-delay: 0.16s; }

.footer-col h4 {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
  letter-spacing: 0.01em;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #04D2FB;
  transition: width 0.25s ease;
}

.footer-col:hover h4::after { width: 44px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo i { font-size: 1.8rem; color: #04D2FB; }

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(120deg, #fff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-description {
  color: #5e6a8f;
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social { display: flex; gap: 0.7rem; }

.footer-social a {
  all: unset;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: #7e8fa8;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-social a:hover {
  background: rgba(4, 210, 251, 0.12);
  color: #04D2FB;
  border-color: rgba(4, 210, 251, 0.3);
  transform: translateY(-2px);
}

.footer-social a i { margin: 0; pointer-events: none; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  color: #5e6a8f;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover { color: #94a3b8; }

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(4, 210, 251, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(4, 210, 251, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #3d4a68; }

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.footer-bottom { padding: 1.5rem 0; }

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: #3d4a68;
  font-size: 0.78rem;
  margin: 0;
}

.footer-bottom span { color: #04D2FB; }

.dmca-badge { display: inline-block; }
.dmca-badge img { height: 22px; width: auto; opacity: 0.75; transition: opacity 0.2s ease; }
.dmca-badge:hover img { opacity: 1; }

/* ----- GO TOP BUTTON ----- */
.go-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(4, 210, 251, 0.12);
  border: 1px solid rgba(4, 210, 251, 0.3);
  color: #04D2FB;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.go-top-btn.show {
  display: flex;
  animation: scaleIn 0.25s ease forwards;
}

.go-top-btn:hover {
  background: rgba(4, 210, 251, 0.22);
  border-color: rgba(4, 210, 251, 0.6);
  transform: translateY(-2px);
}

/* ========== POP-UP DE DISCORD ========== */
.discord-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.35);
  transition: all 0.2s ease;
}

.discord-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.5);
}

.notification-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  color: #04D2FB;
  text-shadow: 0 0 5px #04D2FB;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.15); }
}

.discord-popup {
  position: fixed;
  bottom: 96px;
  left: 30px;
  width: 300px;
  background: #0c0e18;
  border-radius: 16px;
  border: 1px solid rgba(88, 101, 242, 0.25);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.discord-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.discord-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  border-radius: 16px 16px 0 0;
  color: white;
}

.discord-popup-header i { font-size: 1.2rem; }
.discord-popup-header span { flex: 1; font-weight: 600; font-size: 0.9rem; }

.discord-popup-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  padding: 0.15rem;
}

.discord-popup-close:hover { color: white; transform: rotate(90deg); }

.discord-popup-body { padding: 1rem; }

.discord-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  color: #5e6a8f;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #23a55a;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.discord-popup-body p {
  font-size: 0.82rem;
  color: #7e8fa8;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.discord-popup-body p i { margin-right: 0.4rem; color: #5865f2; width: 16px; }

.discord-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.discord-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #5e6a8f;
  transition: color 0.2s ease;
}

.discord-stat:hover { color: #94a3b8; }
.discord-stat i { width: 18px; color: #5865f2; font-size: 0.75rem; }

.discord-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(105deg, #5865f2, #4752c4);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  pointer-events: auto;
}

.discord-popup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(88, 101, 242, 0.5);
}

/* ========== PÁGINAS LEGALES ========== */
.internal-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.internal-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.internal-hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #04D2FB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}

.internal-hero-content p {
  color: #5e6a8f;
  font-size: 0.88rem;
  line-height: 1.6;
}

.legal-content {
  padding: 3rem 0 5rem;
}

.legal-card {
  background: rgba(10, 12, 20, 0.7);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #e2e8f0;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legal-section h2 i {
  color: #04D2FB;
  font-size: 1.05rem;
  width: 22px;
  flex-shrink: 0;
}

.legal-section p {
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.93rem;
}

.legal-section ul,
.legal-section ol {
  margin: 1rem 0 1rem 1.25rem;
  color: #94a3b8;
}

.legal-section li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  font-size: 0.93rem;
}

.legal-section a {
  color: #04D2FB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section a:hover { color: #47EEFC; text-decoration: underline; }

.legal-section .note {
  background: rgba(4, 210, 251, 0.06);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border-left: 3px solid rgba(4, 210, 251, 0.4);
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #7e8fa8;
  line-height: 1.65;
}

.legal-section.highlight-section {
  background: rgba(4, 210, 251, 0.04);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(4, 210, 251, 0.15);
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: #3d4a68;
  line-height: 1.6;
}

.legal-cta {
  padding: 3rem 0 5rem;
  text-align: center;
}

.legal-cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.legal-cta-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  letter-spacing: -0.03em;
}

.legal-cta-content p {
  color: #7e8fa8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.btn-legal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-legal-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
}

/* ========== TABLA DEL SLA ========== */
.sla-percentage {
  background: rgba(4, 210, 251, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  margin: 1rem 0;
  border: 1px solid rgba(4, 210, 251, 0.12);
}

.percentage-badge {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #04D2FB, #47EEFC);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}

.sla-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.sla-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(8, 10, 18, 0.7);
  border-radius: 12px;
  overflow: hidden;
}

.sla-table th,
.sla-table td {
  padding: 0.9rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.sla-table th {
  background: rgba(4, 210, 251, 0.07);
  color: #96FAFD;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.sla-table td { color: #94a3b8; }
.sla-table tr:last-child td { border-bottom: none; }
.sla-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.sla-notes {
  background: rgba(4, 210, 251, 0.04);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  border: 1px solid rgba(4, 210, 251, 0.1);
  font-size: 0.875rem;
  color: #7e8fa8;
}

.sla-notes ul { margin: 0.5rem 0 0 1.2rem; }
.sla-notes li { margin-bottom: 0.3rem; }

/* ========== BANNER DE PRELANZAMIENTO ========== */
.prelaunch-banner {
  position: relative;
  background: rgba(4, 210, 251, 0.06);
  border-bottom: 1px solid rgba(4, 210, 251, 0.12);
  padding: 0.75rem 0;
  backdrop-filter: blur(4px);
}

.prelaunch-banner.hidden { display: none; }

.prelaunch-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.prelaunch-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(4, 210, 251, 0.1);
  border-radius: 8px;
  color: #04D2FB;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.prelaunch-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.prelaunch-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.prelaunch-description {
  font-size: 0.78rem;
  color: #7e8fa8;
}

.prelaunch-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-prelaunch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-prelaunch:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(4, 210, 251, 0.4);
}

.btn-prelaunch-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #5e6a8f;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-prelaunch-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  transform: rotate(90deg);
}

/* ========== MENÚ MÓVIL ========== */
.nav-links.active {
  left: 0 !important;
  background: rgba(3, 4, 10, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 4px 0 30px rgba(0, 0, 0, 0.6) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

body.menu-open .discord-float-btn,
body.menu-open .go-top-btn,
body.menu-open .discord-popup {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ========== PROGRAMA FUNDADOR ========== */
.founder-program {
  padding: 5rem 0;
  background: #070b10;
  position: relative;
  overflow: hidden;
}

.founder-program::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(4, 210, 251, 0.04), transparent 55%);
  pointer-events: none;
}

.founder-program-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.founder-program-content {
  opacity: 0;
  animation: fadeInLeft 0.55s ease forwards;
}

.founder-program-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(4, 210, 251, 0.08);
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: #04D2FB;
  font-weight: 500;
}

.founder-program-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.founder-program-desc {
  color: #7e8fa8;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.founder-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.founder-benefit-item i {
  font-size: 1.25rem;
  color: #04D2FB;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.founder-benefit-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: #e2e8f0;
}

.founder-benefit-item p {
  font-size: 0.8rem;
  color: #5e6a8f;
  line-height: 1.55;
}

.founder-program-form {
  background: rgba(10, 12, 20, 0.85);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease;
  opacity: 0;
  animation: fadeInRight 0.55s ease 0.08s forwards;
}

.founder-program-form:hover { border-color: rgba(4, 210, 251, 0.2); }

.founder-program-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-align: center;
  color: #e2e8f0;
  letter-spacing: -0.025em;
}

.founder-program-form > p {
  text-align: center;
  color: #5e6a8f;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

.founder-form-ajax {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.founder-form-group { position: relative; }

.founder-form-group i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3d4a68;
  font-size: 0.9rem;
}

.founder-form-group input {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.founder-form-group input:focus {
  outline: none;
  border-color: rgba(4, 210, 251, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(4, 210, 251, 0.08);
}

.founder-form-group input::placeholder { color: #3d4a68; }

.btn-founder-program {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.25rem;
  width: 100%;
}

.btn-founder-program:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(4, 210, 251, 0.4);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.btn-founder-program:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.founder-form-note {
  text-align: center;
  font-size: 0.7rem;
  color: #3d4a68;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.founder-form-note i { margin-right: 0.3rem; }

/* ========== HARDWARE SHOWCASE ========== */
.hardware-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hardware-showcase-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #7e8fa8;
}

.hardware-showcase-item i { color: #04D2FB; font-size: 0.85rem; }

.hardware-showcase-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.07);
}

/* RAM Shared Badge */
.ram-shared-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: -0.5rem auto 0.75rem;
  padding: 0.2rem 0.65rem;
  background: rgba(4, 210, 251, 0.08);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #96FAFD;
  width: fit-content;
}

.ram-shared-badge i { font-size: 0.65rem; color: #04D2FB; }

body.founder-mode .ram-shared-badge { background: rgba(255, 215, 0, 0.08); color: #FFD700; }
body.founder-mode .ram-shared-badge i { color: #FFD700; }

/* Discount badge */
.discount-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  margin-left: 0.3rem;
  color: #FFD700;
}

/* Splitter extras */
.splitter-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.85rem;
  background: rgba(4, 210, 251, 0.07);
  border-radius: 6px;
  font-size: 0.75rem;
  color: #96FAFD;
}

.splitter-benefit-tag i { color: #04D2FB; }

.splitter-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #5e6a8f;
}

.splitter-examples span:not(:first-child) {
  background: rgba(4, 210, 251, 0.06);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  color: #7e8fa8;
}

.splitter-note {
  margin: 0.75rem 0 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 0.7rem;
  color: #5e6a8f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.splitter-note i { color: #04D2FB; }

/* Trust signals */
.trust-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-signal i { font-size: 1.1rem; color: #04D2FB; }

.trust-signal div { display: flex; flex-direction: column; }

.trust-signal strong { font-size: 0.8rem; color: #e2e8f0; font-weight: 600; }
.trust-signal span { font-size: 0.7rem; color: #5e6a8f; }

body.founder-mode .discount-badge { background: rgba(255, 215, 0, 0.18); color: #FFD700; }
body.founder-mode .splitter-benefit-tag { background: rgba(255, 215, 0, 0.07); color: #FFD700; }
body.founder-mode .splitter-benefit-tag i { color: #FFD700; }
body.founder-mode .splitter-examples span:not(:first-child) { background: rgba(255, 215, 0, 0.07); }
body.founder-mode .splitter-note i { color: #FFD700; }
body.founder-mode .trust-signal i { color: #FFD700; }

/* ========== TOAST ========== */
.toast-notification {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: rgba(10, 12, 20, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: all 0.25s ease;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.4);
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.toast-notification.success { border-color: rgba(35, 165, 90, 0.4); }
.toast-notification.error { border-color: rgba(242, 63, 66, 0.4); }

.toast-icon { font-size: 1.1rem; }
.toast-notification.success .toast-icon { color: #23a55a; }
.toast-notification.error .toast-icon { color: #f23f42; }

.toast-message { font-size: 0.82rem; color: #e2e8f0; line-height: 1.5; }

.toast-close {
  background: none;
  border: none;
  color: #3d4a68;
  cursor: pointer;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.toast-close:hover { color: #7e8fa8; transform: rotate(90deg); }

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 850px) {
  .prelaunch-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 0.9rem;
  }
  
  .prelaunch-text { align-items: center; }
  .prelaunch-actions { justify-content: center; }

  .hamburger { display: block; }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    flex-direction: column;
    background: rgba(3, 4, 10, 0.98);
    backdrop-filter: blur(20px);
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    align-items: stretch;
    z-index: 999;
  }
  
  .nav-links.active { left: 0; }
  
  .nav-links li { width: 100%; }
  
  .nav-links .nav-link {
    display: block;
    padding: 0.8rem 0.9rem;
    font-size: 1rem;
    font-weight: 500;
    color: #cbd5e1;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
  }
  
  .nav-links .nav-link:hover {
    background: rgba(4, 210, 251, 0.08);
    color: #e2e8f0;
    transform: none;
  }
  
  .nav-links .nav-link:active { background: rgba(4, 210, 251, 0.14); }
  .nav-links .nav-link::after { display: none; }
  
  .nav-links .nav-link.btn-cliente,
  .nav-links .nav-link.btn-area {
    margin-top: 0.25rem;
    text-align: center;
    background: rgba(4, 210, 251, 0.06);
    border: 1px solid rgba(4, 210, 251, 0.2);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .hero-container { flex-direction: column; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .location-container { grid-template-columns: 1fr; gap: 2rem; }
  .splitter-header { flex-direction: column; align-items: center; text-align: center; }
  
  .founder-program-container { grid-template-columns: 1fr; gap: 2rem; }
  .founder-program-content { text-align: center; }
  .founder-program-badge { margin-left: auto; margin-right: auto; }
  .founder-benefits-list { max-width: 480px; margin: 0 auto; }
  .founder-benefit-item { text-align: left; }
}

@media screen and (max-width: 768px) {
  .hero-title { font-size: 2.1rem; }
  .hero-visual { display: none; }
  
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .splitter-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .specs-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  
  .go-top-btn { width: 40px; height: 40px; font-size: 1rem; bottom: 18px; right: 18px; }
  
  .map-marker { transform: translate(-50%, -50%) scale(0.75); }
  .section-header h2 { font-size: 1.85rem; }
  
  .pricing-toggle-container { flex-direction: column; gap: 0.9rem; }
  .founder-info { flex-wrap: wrap; justify-content: center; }
  .price-guarantee { flex-direction: column; text-align: center; }
  
  .carousel-prev, .carousel-next { width: 34px; height: 34px; font-size: 0.9rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }
  
  .discord-float-btn { bottom: 18px; left: 18px; width: 46px; height: 46px; font-size: 1.4rem; }
  .discord-popup { bottom: 78px; left: 18px; right: 18px; width: auto; max-width: 300px; }
  
  .legal-card { padding: 1.75rem; }
  .internal-hero-content h1 { font-size: 2rem; }
  
  .trust-signals { gap: 1rem; flex-direction: column; align-items: center; }
  .trust-signal { flex-direction: column; text-align: center; gap: 0.4rem; }

  .sla-table th, .sla-table td { padding: 0.7rem; font-size: 0.82rem; }
}

@media screen and (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.5rem; }
  
  .price-normal .price, .price-founder .price { font-size: 1.85rem; }
  .pricing-card { padding: 1.5rem 1.25rem; }
  
  .container { padding: 0 1.2rem; }
  .stat-value { font-size: 1.5rem; }
  .cta-content h2 { font-size: 1.7rem; }
  .pricing-features li { font-size: 0.82rem; }
  
  .legal-card { padding: 1.25rem; border-radius: 14px; }
  .legal-section h2 { font-size: 1.1rem; }
  
  .splitter-header { padding: 1rem; }
  .hardware-showcase { border-radius: 8px; }
  
  .toast-notification { bottom: 18px; right: 18px; left: 18px; }
  
  .prelaunch-title { font-size: 0.8rem; }
  .prelaunch-description { font-size: 0.72rem; }
  
  .founder-program-form { padding: 1.5rem; }
  
  .sla-table th, .sla-table td { padding: 0.5rem; font-size: 0.75rem; }
}

@media screen and (max-width: 640px) {
  .hardware-showcase { flex-direction: column; gap: 0.4rem; }
  .hardware-showcase-divider { display: none; }
  .hardware-showcase-item { justify-content: center; }
  .splitter-examples { justify-content: center; }
}

/* ========== ESTILOS PARA proximamente.html ========== */

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.coming-soon-card {
  max-width: 620px;
  width: 100%;
  background: rgba(10, 12, 20, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  border: 1px solid rgba(4, 210, 251, 0.2);
  padding: 2.5rem;
  text-align: center;
  animation: scaleIn 0.5s ease forwards;
}

.coming-soon-icon {
  font-size: 3.5rem;
  color: #04D2FB;
  margin-bottom: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 210, 251, 0.12);
  border: 1px solid rgba(4, 210, 251, 0.25);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #96FAFD;
  margin-bottom: 1.5rem;
}

.coming-soon-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffffff, #04D2FB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}

.coming-soon-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.plan-selected-card {
  background: rgba(4, 210, 251, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(4, 210, 251, 0.15);
  text-align: left;
  transition: border-color 0.25s ease;
}

.plan-selected-card:hover {
  border-color: rgba(4, 210, 251, 0.35);
}

.plan-selected-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.plan-selected-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #04D2FB, #027BC8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
}

.plan-selected-name {
  flex: 1;
}

.plan-selected-name h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.2rem;
}

.plan-selected-name p {
  font-size: 0.75rem;
  color: #7e8fa8;
}

.plan-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-spec-item {
  text-align: center;
}

.plan-spec-item i {
  font-size: 1rem;
  color: #04D2FB;
  margin-bottom: 0.3rem;
  display: block;
}

.plan-spec-item .spec-label {
  font-size: 0.65rem;
  color: #5e6a8f;
  display: block;
  margin-bottom: 0.2rem;
}

.plan-spec-item .spec-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.25rem 0;
}

.waitlist-form-group {
  position: relative;
}

.waitlist-form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #3d4a68;
  font-size: 0.9rem;
}

.waitlist-form-group input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.waitlist-form-group input:focus {
  outline: none;
  border-color: rgba(4, 210, 251, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(4, 210, 251, 0.1);
}

.waitlist-form-group input::placeholder {
  color: #3d4a68;
}

.btn-waitlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(105deg, #04D2FB, #027BC8);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 210, 251, 0.3);
  background: linear-gradient(105deg, #1fd8fc, #0388d8);
}

.btn-waitlist:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.waitlist-note {
  font-size: 0.7rem;
  color: #3d4a68;
  margin-top: 0.75rem;
  text-align: center;
}

.waitlist-note i {
  margin-right: 0.3rem;
}

.coming-soon-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-founder {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
}

.btn-founder:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.btn-discord {
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #5865f2;
}

.btn-discord:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: rgba(88, 101, 242, 0.5);
  transform: translateY(-2px);
}

.btn-home {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

.btn-home:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #e2e8f0;
}

.interest-form-container h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
}

.interest-form-container > p {
  font-size: 0.8rem;
  color: #5e6a8f;
  margin-bottom: 1.25rem;
}

/* Responsive */
@media screen and (max-width: 560px) {
  .coming-soon-card {
    padding: 1.5rem;
  }
  
  .coming-soon-title {
    font-size: 1.5rem;
  }
  
  .plan-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .plan-spec-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  
  .plan-spec-item i {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
  
  .coming-soon-buttons {
    flex-direction: column;
  }
  
  .btn-coming-soon {
    justify-content: center;
  }
}