/* ══════════════════════════════════════════
   hero.css
══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

/* ── Slides ── */
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,31,68,0.88)  0%,
    rgba(17,64,160,0.58) 50%,
    rgba(10,31,68,0.38)  100%
  );
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 22px;
  font-size: 0.8rem;
  color: var(--blue-glow);
  font-weight: 600;
  animation: fadeUp 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-glow);
  animation: pulseDot 1.6s infinite;
}

/* Heading */
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 span { color: var(--blue-glow); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.74);
  max-width: 530px;
  line-height: 1.75;
  margin-bottom: 34px;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 58px;
  animation: fadeUp 0.8s 0.45s ease both;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num span { color: var(--blue-glow); }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  margin-top: 4px;
}

/* ── Slider Dots ── */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all 0.3s;
}
.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--blue-glow);
}

/* ── Scroll cue ── */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 6%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-cue span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  writing-mode: vertical-rl;
  letter-spacing: 2.5px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(59,130,246,0.7), transparent);
  animation: scrollLine 1.9s infinite;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero-stats { gap: 22px; }
  .scroll-cue { display: none; }
}
