/* ========================================
   HERO — Dark Premium Override
   Matches featured-services dark theme
   ======================================== */

/* Base section */
.hero {
  background: #060a14 !important;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
}

/* Container */
.hero__container {
  max-width: 1280px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Slider */
.hero__slider {
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
}

/* Content grid */
.hero__content {
  padding: 120px 0 80px !important;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 64px !important;
  }
}

/* Text area */
.hero__text {
  gap: 24px !important;
}

/* Badge */
.hero__badge .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.badge--primary {
  background: rgba(59, 130, 246, 0.1) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  box-shadow: none !important;
}

.badge--gaming {
  background: rgba(251, 146, 60, 0.1) !important;
  color: #fb923c !important;
  border: 1px solid rgba(251, 146, 60, 0.2) !important;
  box-shadow: none !important;
}

.badge--enterprise {
  background: rgba(139, 92, 246, 0.1) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(139, 92, 246, 0.2) !important;
  box-shadow: none !important;
}

/* Title */
.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
}

.hero__highlight {
  color: #60a5fa !important;
  background: none !important;
  -webkit-text-fill-color: #60a5fa !important;
}

/* Slide 2 gaming highlight */
.hero__slide[data-slide="1"] .hero__highlight {
  color: #fb923c !important;
  -webkit-text-fill-color: #fb923c !important;
}

/* Slide 3 enterprise highlight */
.hero__slide[data-slide="2"] .hero__highlight {
  color: #a78bfa !important;
  -webkit-text-fill-color: #a78bfa !important;
}

/* Description */
.hero__description {
  font-size: 1rem !important;
  color: #64748b !important;
  line-height: 1.7 !important;
  max-width: 540px !important;
}

/* Actions */
.hero__actions {
  gap: 12px !important;
}

.hero__actions .btn--primary,
.hero__actions .btn--gaming {
  background: #3b82f6 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2) !important;
  transition: all 0.25s ease !important;
}

.hero__actions .btn--primary:hover,
.hero__actions .btn--gaming:hover {
  background: #2563eb !important;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3) !important;
  transform: translateY(-1px) !important;
}

.hero__slide[data-slide="1"] .hero__actions .btn--gaming {
  background: #f97316 !important;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2) !important;
}

.hero__slide[data-slide="1"] .hero__actions .btn--gaming:hover {
  background: #ea580c !important;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.3) !important;
}

.hero__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #94a3b8 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.hero__actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #e2e8f0 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* WhatsApp button */
.hero__actions .btn-whatsapp {
  background: rgba(37, 211, 102, 0.08) !important;
  border: 1px solid rgba(37, 211, 102, 0.2) !important;
  border-radius: 8px !important;
  padding: 12px 24px !important;
  color: #4ade80 !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.hero__actions .btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.14) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.1) !important;
}

.btn-whatsapp__icon svg {
  fill: #4ade80 !important;
  color: #4ade80 !important;
}

.btn-whatsapp__text {
  color: #4ade80 !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.btn-whatsapp__pulse {
  display: none !important;
}

/* ── Stats Grid (visual right side) ── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.8) 0%, rgba(13, 17, 23, 0.8) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  position: relative !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(8px);
}

.stat-card:hover {
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(59, 130, 246, 0.04) !important;
  transform: translateY(-2px) !important;
}

.stat-card__value {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #f1f5f9 !important;
  margin-bottom: 6px !important;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 0.68rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

.stat-card__icon {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  color: #3b82f6 !important;
  opacity: 0.15 !important;
}

.stat-card__icon svg {
  width: 20px !important;
  height: 20px !important;
}

/* Slide 2 (gaming) stat cards accent */
.hero__slide[data-slide="1"] .stat-card:hover {
  border-color: rgba(251, 146, 60, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(251, 146, 60, 0.04) !important;
}

.hero__slide[data-slide="1"] .stat-card__icon {
  color: #f97316 !important;
}

/* Slide 3 (enterprise) stat cards accent */
.hero__slide[data-slide="2"] .stat-card:hover {
  border-color: rgba(139, 92, 246, 0.15) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(139, 92, 246, 0.04) !important;
}

.hero__slide[data-slide="2"] .stat-card__icon {
  color: #8b5cf6 !important;
}

/* ── Slider Navigation — desktop ── */
.hero__slider-nav {
  bottom: 40px !important;
}

.hero__slider-btn {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #94a3b8 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.2s ease !important;
}

.hero__slider-btn:hover {
  border-color: rgba(59, 130, 246, 0.3) !important;
  background: rgba(59, 130, 246, 0.06) !important;
  color: #60a5fa !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.08) !important;
  transform: scale(1.05) !important;
}

.hero__slider-btn:active {
  transform: scale(0.98) !important;
}

.hero__slider-btn svg {
  color: inherit !important;
  width: 16px !important;
  height: 16px !important;
}

.hero__slider-btn--stop {
  background: rgba(59, 130, 246, 0.12) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  color: #60a5fa !important;
}

.hero__slider-btn--stop:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  color: #93bbfd !important;
}

/* Slider dots — desktop */
.hero__slider-dot {
  width: 6px !important;
  height: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.hero__slider-dot::before {
  display: none !important;
}

.hero__slider-dot--active {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  width: 20px !important;
  border-radius: 3px !important;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3) !important;
  transform: none !important;
}

.hero__slider-dot:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
  transform: none !important;
}

/* ── Mobile nav ── */
@media (max-width: 767px) {
  .hero__mobile-nav {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: none !important;
    border-radius: 40px !important;
    padding: 8px 16px !important;
  }

  .hero__mobile-btn {
    background: rgba(59, 130, 246, 0.06) !important;
    border: 1px solid rgba(59, 130, 246, 0.12) !important;
    color: #60a5fa !important;
    box-shadow: none !important;
    width: 36px !important;
    height: 36px !important;
  }

  .hero__mobile-btn:hover {
    background: rgba(59, 130, 246, 0.12) !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
  }

  .hero__mobile-btn::before {
    display: none !important;
  }

  .hero__mobile-btn svg {
    color: #60a5fa !important;
    filter: none !important;
  }

  .hero__mobile-dot {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
    width: 6px !important;
    height: 6px !important;
  }

  .hero__mobile-dot--active {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.3) !important;
    transform: scale(1.2) !important;
    width: 16px !important;
    border-radius: 3px !important;
  }

  .hero__mobile-dot:hover {
    background: rgba(255, 255, 255, 0.2) !important;
  }

  .hero__title {
    font-size: 1.7rem !important;
  }

  .hero__description {
    font-size: 0.88rem !important;
  }

  .hero__container {
    padding: 0 20px !important;
  }

  .hero__content {
    padding: 100px 0 60px !important;
  }

  .hero__stats-grid {
    max-width: 100% !important;
  }
  
  .stat-card {
    padding: 16px 14px !important;
  }

  .stat-card__value {
    font-size: 1.3rem !important;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .hero__title {
    font-size: 1.5rem !important;
  }

  .hero__stats-grid {
    gap: 10px;
  }

  .stat-card {
    padding: 14px 10px !important;
  }

  .stat-card__value {
    font-size: 1.15rem !important;
  }
}
