/* ==========================================================================
   HERO SECTION
   Hero section styles with background video, floating shapes, and content
   ========================================================================== */

  /* Hero Section - Mobile Optimized */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-mesh), var(--gradient-dark);
    padding: 80px 0 40px;
  }

  .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
    filter: brightness(0.7);
  }

  .hero-3d-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,102,255,.1), rgba(0,212,255,.1));
    filter: blur(40px);
    animation: float-random 20s infinite ease-in-out;
  }

  .shape:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
  }

  .shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation-duration: 30s;
  }

  .shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-duration: 35s;
  }

  @keyframes float-random {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(20px, 20px) scale(1.05); }
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: badge-glow 3s ease-in-out infinite;
  }

  @keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0,212,255,.3); }
    50% { box-shadow: 0 0 40px rgba(0,212,255,.6); }
  }

  .hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: hero-fade-in 1s ease forwards 0.2s;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,.9);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0;
    animation: hero-fade-in 1s ease forwards 0.4s;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .hero-subtitle {
      font-size: 1.5rem;
      padding: 0;
    }
  }

  @keyframes hero-fade-in {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: hero-fade-in 1s ease forwards 0.6s;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    opacity: 0;
    animation: hero-fade-in 1s ease forwards 0.8s;
  }

  @media (min-width: 640px) {
    .hero-stats {
      grid-template-columns: repeat(3, 1fr);
      padding: 2rem;
      border-radius: 30px;
      gap: 1.5rem;
    }
  }

  .stat {
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .stat:has(.stat-value) {
    border: 2px solid rgba(0,212,255,.3);
    background: rgba(0,212,255,.05);
  }

  .stat:has(.stat-value):hover {
    border-color: rgba(0,212,255,.5);
    background: rgba(0,212,255,.1);
    transform: translateY(-2px);
  }

  .stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  @media (min-width: 768px) {
    .stat-number {
      font-size: 2.5rem;
    }
  }

  .stat-label {
    color: rgba(255,255,255,.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  }

  .stat-duration {
    color: rgba(255,255,255,.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .stat-value {
    color: var(--secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0,212,255,.15);
    border-radius: 8px;
    display: inline-block;
  }
