/* ======================================================================
   HERO (Video + Overlay + Metin) — konsolide & güvenli
====================================================================== */
.hero {
  position: relative;
  isolation: isolate;

  width: 100vw;
  max-width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 100vh;
  overflow: hidden;

  color: #fff;
  font-family: var(--font-sans);
.hero h1{
 position:relative;
 top:316px;
}

}
.hero > .hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.80);
    color-interpolation-filters: initial;

  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;


}
/* alternatif overlay elemanı kullananlar için */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, .45) 0%,
    rgba(2, 6, 23, .25) 35%,
    rgba(2, 6, 23, .45) 100%
  );
}

/* Metin alanı – dikey ortalı, sola hizalı */
.hero .hero-overlay {
  position: absolute !important;
  z-index: 2 !important;
  color: #fff;

  left: clamp(16px, 6vw, 120px) !important;
  top: 50% !important;
  transform: translateY(80%) !important;

  right: auto !important;
  bottom: auto !important;
  margin: 0 !important;

  max-width: min(920px, 92vw) !important;
  text-align: top !important;
  font-family: var(--font-sans);
}


.hero-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);

  width: auto !important;
  height: auto !important;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-sans);
}

.hero-title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 28ch;
  font-family: var(--font-sans);
}

.hero-text {
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  opacity: .96;
  font-family: var(--font-sans);
}

/* CTA altta ortada */
.hero .hero-ctas {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-sans);
}

@media (max-width: 768px) {
  .hero .hero-overlay {
    top: calc(var(--nav-h, 80px) + 76px) !important;
  }
}
@media (max-width: 640px) {
  .hero { min-height: 60vh; }
  .hero .hero-overlay { bottom: 18px; }
}
/* =========================
   MOBİL – HERO YAZIYI BİRAZ AŞAĞI İT
========================= */
@media (max-width: 768px) {
  .hero .hero-overlay {
    margin-top: 80px !important;
  }
}
z/* =========================
   MOBİL – HERO YAZIYI NET AŞAĞI AL
========================= */
@media (max-width: 768px) {
  .hero .hero-overlay {
    transform: translateY(120px) !important;
  }
}
/* =========================
   MOBİL – HERO OVERLAY KONUMUNU SERBEST BIRAK
========================= */
@media (max-width: 768px) {
  .hero .hero-overlay {
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
}
@media (max-width: 768px) {
  .hero .hero-overlay {
    top: 60% !important;
  }
}
