/* ===== Hakkımızda Sayfası ===== */

.about-hero {
  background: linear-gradient(135deg, #4bbfe3 0%, #9ad8f0 50%, #e8f7fd 100%);
  color: var(--text);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
}

.about-hero h1 {
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-section {
  padding: 4rem 1.5rem;
}

.about-container {
  max-width: 960px;
  margin: 0 auto;
}

.about-text {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-text h2 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .about-values { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--ice-pale);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--ice-light);
}

.value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Sayılar */
.about-stats {
  background: linear-gradient(135deg, var(--fuchsia) 0%, #4bbfe3 100%);
  padding: 3rem 1.5rem;
}

.stats-container {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

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

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  display: block;
}

/* Nasıl Çalışıyoruz */
.how-section { background: var(--ice-pale); }

.how-section h2 {
  font-size: 1.7rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.5rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  background: var(--fuchsia);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #fff;
}

.about-cta h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.about-cta p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--fuchsia);
  color: var(--fuchsia);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--fuchsia);
  color: #fff;
}
