/* =====================================================
   HERO SECTION REDESIGN - VIDEO BACKGROUND
   ===================================================== */

/* ── VIDEO BACKGROUND ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(70px + 2rem) 2rem 0;
  overflow: hidden;
  background: #000000;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── HERO CONTENT CONTAINER ── */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: calc(100vh - 70px - 5rem);
  padding: 0 80px 0 40px;
}

/* ── PREMIUM BLACK CONTENT BOX ── */
.hero-black-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 48px 44px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
              inset 0 0 40px rgba(255, 255, 255, 0.02);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translate(-5px, -1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-5px, 29px);
  }
  to {
    opacity: 1;
    transform: translate(-5px, -1px);
  }
}

/* ── HEADLINE ── */
.hero-headline-new {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin: 0 0 28px;
  text-align: left;
}

/* ── CTA BUTTON ── */
.hero-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, #60A5FA 0%, #A855F7 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(96, 165, 250, 0.4);
  margin-bottom: 36px;
}

.hero-cta-new:hover {
  background: linear-gradient(90deg, #4F94E8 0%, #9645E5 100%);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.5);
}

.hero-cta-new:active {
  transform: translateY(0);
  color: #FFFFFF !important;
}

/* ── STAT BOXES (GLASS EFFECT) ── */
.hero-stats-glass {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 14px;
  transition: all 0.3s ease;
}

.hero-stat-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-stat-value {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.02em;
}

/* Animated gradient for hero stat numbers */
.hero-stat-gradient {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #60A5FA 25%,
    #EC4899 50%,
    #60A5FA 75%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  font-weight: 800;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 4px;
}

.hero-stat-source {
  font-family: var(--font-body);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-style: italic;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    justify-content: center;
    align-items: center;
    padding: 0 40px;
  }

  .hero-black-card {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: calc(60px + 1.5rem) 1rem 2rem;
    align-items: center;
  }

  /* Reduce wave intensity on mobile */
  #hero::before {
    opacity: 0.6;
    filter: blur(40px);
  }

  #hero::after {
    opacity: 0.5;
    filter: blur(35px);
  }

  .hero-content-wrapper::before {
    opacity: 0.4;
    filter: blur(30px);
  }

  .hero-content-wrapper {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-black-card {
    padding: 32px 24px;
    margin: 0;
    max-width: 100%;
  }

  .hero-headline-new {
    font-size: clamp(1.875rem, 6vw, 2.25rem);
    margin-bottom: 20px;
  }

  .hero-cta-new {
    width: 100%;
    justify-content: center;
    margin-bottom: 28px;
    padding: 13px 28px;
    font-size: 14px;
  }

  .hero-stats-glass {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-stat-box {
    padding: 16px 14px;
  }

  .hero-stat-value {
    font-size: 1.375rem;
  }

  .hero-stat-label {
    font-size: 0.6875rem;
  }

  .hero-stat-source {
    font-size: 0.5625rem;
  }
}

@media (max-width: 480px) {
  .hero-black-card {
    padding: 28px 20px;
  }

  .hero-headline-new {
    font-size: 1.75rem;
  }

  .hero-cta-new {
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero-stat-value {
    font-size: 1.25rem;
  }
}

/* ── REMOVE OLD HERO STYLES ── */
/* Hide old hero elements */
.hero-blob-1,
.hero-blob-2,
.hero-blob-3,
.hero-two-col {
  display: none !important;
}
