/* ══════════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI — Masaüstü + Mobil
══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hk-hero {
  background: var(--siyah);
  padding: 6rem 0;
  text-align: center;
}
.hk-hero-on-yazi { color: var(--zeytin) !important; }
.hk-hero-baslik {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin: .75rem 0 1rem;
  -webkit-font-smoothing: antialiased;
}
.hk-hero-aciklama {
  font-family: 'Nunito','Segoe UI',sans-serif;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Hikaye bölümü ── */
.hk-hikaye-bolum { padding: 5rem 0; }
.hk-hikaye-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Görsel */
.hk-gorsel {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  display: block;
}

/* Metin */
.hk-metin-baslik {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--siyah);
  margin: .75rem 0 1rem;
  line-height: 1.2;
}
.hk-paragraf {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: .97rem;
  color: var(--metin-ince);
  line-height: 1.8;
  margin: 0 0 1rem;
}

/* İstatistikler */
.hk-istatistikler {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hk-stat { text-align: center; }
.hk-stat-sayi {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yesil);
  line-height: 1;
  letter-spacing: -.02em;
  -webkit-font-smoothing: antialiased;
}
.hk-stat-etiket {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: .78rem;
  color: var(--metin-ince);
  margin-top: 4px;
  font-weight: 600;
}

/* ── Değerler bölümü ── */
.hk-degerler-bolum { padding: 5rem 0; background: var(--bg-section); }
.hk-degerler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.hk-deger-kart {
  padding: 2rem;
  text-align: center;
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s;
}
.hk-deger-kart:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.hk-deger-ikon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.hk-deger-baslik {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: var(--siyah);
  letter-spacing: -.01em;
}
.hk-deger-aciklama {
  font-family: 'Nunito','Segoe UI',sans-serif;
  font-size: .87rem;
  color: var(--metin-ince);
  line-height: 1.65;
  margin: 0;
}

/* İçerik alanı */
.hk-icerik-wrap { max-width: 820px; }

/* ══════════════════════════════════════════════════════════════
   MOBİL — 768px ve altı
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  .hk-hero { padding: 3rem 0 2.5rem; }
  .hk-hero-baslik {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
    -webkit-font-smoothing: antialiased !important;
  }
  .hk-hero-aciklama {
    font-size: .92rem !important;
    line-height: 1.7 !important;
    padding: 0 4px;
  }

  /* Hikaye grid → tek sütun, görsel üste */
  .hk-hikaye-bolum { padding: 3rem 0 !important; }
  .hk-hikaye-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .hk-gorsel-wrap { order: 1; }
  .hk-metin-wrap  { order: 2; }

  .hk-gorsel { border-radius: 12px !important; }

  .hk-metin-baslik {
    font-size: 1.35rem !important;
    -webkit-font-smoothing: antialiased !important;
  }
  .hk-paragraf { font-size: .93rem !important; line-height: 1.75 !important; }

  /* İstatistikler — sıkıştır */
  .hk-istatistikler {
    gap: 1rem !important;
    justify-content: space-between !important;
    margin-top: 1.5rem !important;
  }
  .hk-stat-sayi { font-size: 1.55rem !important; }
  .hk-stat-etiket { font-size: .72rem !important; }

  /* Değerler → 2 sütun */
  .hk-degerler-bolum { padding: 3rem 0 !important; }
  .hk-degerler-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  .hk-deger-kart {
    padding: 1.25rem !important;
    border-radius: 12px !important;
  }
  .hk-deger-ikon { font-size: 1.8rem !important; margin-bottom: .75rem !important; }
  .hk-deger-baslik { font-size: .95rem !important; }
  .hk-deger-aciklama { font-size: .82rem !important; }

  /* hover efekti kaldır — touch'ta takılı kalır */
  .hk-deger-kart:hover { transform: none !important; box-shadow: var(--golge) !important; }
}

/* ── Çok küçük ekran ── */
@media (max-width: 390px) {
  .hk-hero { padding: 2.5rem 0 2rem; }
  .hk-hero-baslik { font-size: 1.6rem !important; }
  .hk-degerler-grid { grid-template-columns: 1fr !important; }
  .hk-istatistikler { gap: .75rem !important; }
  .hk-stat-sayi { font-size: 1.35rem !important; }
}
