/* hero alani - berilis premium tasarimi uyarlandi */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 68px;
  /* navbar yuksekligi */
  background-color: var(--gray-light);
  /* zeva pembe renginden esinlenen cok hafif arka plan isigi */
  background-image:
    radial-gradient(at 0% 0%, rgba(230, 0, 122, 0.03) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(248, 214, 78, 0.02) 0, transparent 50%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* nokta izgarasi */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e7eb 0.8px, transparent 0.8px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

/* sol taraftaki koyu serit tasarimi */
.hero-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  background: var(--dark-bg);
  border-bottom-right-radius: 80px;
  box-shadow: 15px 0 40px rgba(0, 0, 0, 0.06);
  z-index: 998;
}

/* icerik yerlesimi (sol serit boslugu 180px olarak eklendi) */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px 80px 180px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 1024px) {
  .hero-stripe {
    display: none;
    /* mobilde gizliyoz */
  }

  .hero-content {
    padding: 80px 24px;
    flex-direction: column;
    text-align: center;
  }
}

.hero-text-col {
  flex: 1.2;
  max-width: 640px;
  display: flex;
  flex-direction: column;
}

.hero-graphic-col {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-graphic-col {
    justify-content: center;
    width: 100%;
  }
}

/* basliklar */
.hero-title {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--color-pink);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

@media (max-width: 1024px) {
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

/* butonlar */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .hero-cta {
    justify-content: center;
  }
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  line-height: 1;
}

.btn-modern-dark {
  background: var(--dark-bg);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(19, 19, 22, 0.15);
}

.btn-modern-dark:hover {
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.08);
}

.btn-modern-white {
  background: var(--white);
  color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.btn-modern-white:hover {
  box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.05);
}

/* butonun altindaki istatistikler */
.hero-under-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .hero-under-cta {
    align-items: center;
  }
}

.cta-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

.stat-icon {
  width: 16px;
  height: 16px;
  color: var(--text-primary);
}

/* sag taraf soyut geometrik desen */
.hero-pattern-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 420px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .hero-pattern-wrapper {
    display: none;
  }
}

.hero-bg-pattern-svg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: block;
}