/* ==========================================================================
   ABOUT PAGE (/hakkimizda) — page-specific layout, built on shared tokens
   ========================================================================== */

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  text-align: center;
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 50% -10%, rgba(249, 115, 22, 0.16), transparent 60%),
    radial-gradient(40% 50% at 85% 0%, rgba(124, 58, 237, 0.08), transparent 60%);
}
.page-hero__kicker {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--brand-600);
  margin-bottom: var(--sp-3);
}
[data-theme="dark"] .page-hero__kicker { color: var(--brand-400); }
.page-hero__title { font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.page-hero__lead {
  color: var(--text-muted);
  font-size: var(--fs-md);
  max-width: 60ch;
  margin: 0 auto;
}

/* breadcrumb */
.crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); color: var(--text-faint);
  margin-bottom: var(--sp-5);
}
.crumb a:hover { color: var(--brand-600); }
.crumb svg { width: 15px; height: 15px; }

/* ---------- Reusable grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }

/* ---------- Story split ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.story__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 11; }
.story__list { display: grid; gap: var(--sp-3); margin-top: var(--sp-5); }
.story__list li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--text-muted); font-size: var(--fs-sm); }
.story__list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  display: grid; place-items: center; color: #fff; background: var(--green-500);
}
.story__list .tick svg { width: 13px; height: 13px; }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.stat-card {
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat-card span { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- Value card ---------- */
.value-card .value-card__title { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.value-card p { color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- Mission / Vision ---------- */
.mv-card { display: flex; flex-direction: column; gap: var(--sp-3); }
.mv-card h3 { font-size: var(--fs-lg); }
.mv-card p { color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; gap: var(--sp-6); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
}
