/* =====================================================
   HERO – VISUAL MATCH (FINAL)
===================================================== */

#hero.hero-full{
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;
  text-align: center;
}

/* VIDEO */
#hero .hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
#hero .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: -1;
}

/* =====================================================
   HERO INNER – MERKEZ BLOK
===================================================== */

#hero .hero-inner{
  width: 100%;
  max-width: 960px;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* 👇 GÖRSELDEKİ DENGE */
  padding-top: 56px;
  padding-bottom: 56px;
}

/* =====================================================
   LOGO
===================================================== */

#hero .hero-logo{
  margin-bottom: 10px; /* 👈 logo ile başlık arası */
}

#hero .hero-logo img{
  width: clamp(200px, 17vw, 300px);
  height: auto;
}

/* =====================================================
   TITLE
===================================================== */

#hero .brands-title{
  margin: 0;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.15;
  font-weight: 10;
}

#hero .brands-title em{
  font-style: italic;
}

/* DIVIDER */
#hero .brands-divider{
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 14px auto 22px;
}

/* =====================================================
   STATS – GÖRSELLE AYNI YERLEŞİM
===================================================== */

#hero .brands-stats{
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-template-rows: repeat(2, auto);

  gap: 22px 64px;   /* 👈 üstteki görsele çok yakın */

  justify-content: center;
}

/* STAT */
#hero .stat{
  min-width: 120px;
  text-align: center;
}

#hero .stat strong{
  display: block;
  font-size: 30px;
  font-weight: 600;
}

#hero .stat span{
  display: block;
  margin-top: 4px;
  font-size: 18px;
  opacity: .85;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px){

  #hero .hero-inner{
    padding-top: 48px;
    padding-bottom: 48px;
  }

  #hero .hero-logo{
    margin-bottom: 20px;
  }

  #hero .brands-stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  #hero .stat strong{
    font-size: 18px;
  }
}/* =====================================================
   iPhone SE (2020) – HERO FORCE FIT
   Sadece SE / kısa ekranlar
===================================================== */

@media (max-width: 380px) and (max-height: 700px){

  #hero.hero-full{
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  /* İçeriği sıkıştırmaya hazırlık */
  #hero .hero-inner{
    padding-top: 20px;
    padding-bottom: 20px;
    transform-origin: center top;
    will-change: transform;
  }
}

/* =====================================================
   HERO – JS hazır olana kadar gizle
===================================================== */

/* Varsayılan: gizli */
#hero .hero-inner{
  opacity: 0;
}

/* JS hazır olduğunda göster */
#hero.hero-ready .hero-inner{
  opacity: 1;
  transition: opacity .25s ease;
}
