/* Hakkımızda — About page specific styles */

.about-hero {
  min-height: 360px;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, #062d40 0%, #0a3a52 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #fff;
}

.about-hero-inner .eyebrow {
  color: var(--accent);
}

.about-hero-inner h1 {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.03em;
}

.about-hero-inner .lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 560px;
}

.about-content-section {
  padding-top: 4.5rem;
}

.values-grid {
  margin-top: 1.75rem;
  grid-template-columns: repeat(4, 1fr);
}

.vision-block {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.vision-block h2 {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .about-hero-inner h1 {
    font-size: 2.25rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}
