.hero.hero--full{
  padding: 0;
}

/* FULL WIDTH */
.hero-slider{
  width: 100%;
  margin: 0;
  max-width: none;
}

.slides{
  position: relative;
  overflow: hidden;

  /* border istemiyordun */
  border: none;
  border-radius: 0;

  /* full ekran hissi */
  width: 100%;
  height: clamp(520px, 82vh, 760px);
}

/* slide */
.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.slide.active{
  opacity: 1;
  position: absolute;
}

/* arka planı doldur (kenar boşluğu yok gibi görünsün) */
.slide::before{
  content: "";
  position: absolute;
  inset: -20px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
  opacity: .55;
}

/* üstte gerçek foto (kırpma yok) */
.slide img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;     /* KIRPMA YOK */
  object-position: center; /* tam ortala */
  display: block;
}

/* yazı katmanı */
.overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(18px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* solda okunaklı olsun */
  background: linear-gradient(
    90deg,
    rgba(6,12,24,.82),
    rgba(6,12,24,.45),
    rgba(6,12,24,.00)
  );

  color: #fff;

  /* tıklanabilirlik için: sadece içerik tıklansın */
  pointer-events: none;
}

.overlay > *{
  pointer-events: auto;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
}

.overlay h1{
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.05;
  margin: 14px 0 10px;
  letter-spacing: -.02em;
}

.overlay p{
  max-width: 720px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  margin: 0 0 16px;
}

/* butonlar */
.hero-actions{
  display: flex;
  flex-direction: column; /* ✅ 2 satır alt alta */
  gap: 14px;
  margin-top: 10px;
  align-items: flex-start;
}

.hero-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.icon-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,16,30,.55);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.icon-btn svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.icon-btn.ghost{
  background: rgba(255,255,255,.08);
}

.icon-btn:hover{
  transform: translateY(-1px);
}

.meta-pill{
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,30,.45);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.meta-label{
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 800;
}

.meta-value{
  font-size: 16px;
  font-weight: 950;
}

/* DOTS: küçük + border yok */
.dots{
  position: absolute;
  z-index: 3;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;

  background: rgba(10,16,30,.35);
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}

.dot.active{
  background: var(--accent2);
}

/* MOBİL */
@media (max-width: 768px){
  .slides{
    height: clamp(520px, 78vh, 720px);
  }

  .overlay{
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(
      180deg,
      rgba(6,12,24,.18),
      rgba(6,12,24,.75)
    );
  }

  .overlay p{
    max-width: 100%;
  }
}

