/* Takvimim — Hakkımızda (sayfa özel) */
.about-page {
  --ab-orange: var(--mkt-orange);
  --ab-orange-soft: var(--mkt-orange-soft);
  --ab-orange-border: var(--mkt-orange-border);
  --ab-surface: var(--mkt-surface);
  --ab-text: var(--mkt-text);
  --ab-muted: var(--mkt-muted);
  --ab-border: var(--mkt-border);
  --ab-shadow: var(--mkt-shadow);
}
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 900px;
  margin: -28px auto 0;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.about-stat {
  background: var(--ab-surface);
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--ab-shadow);
}
.about-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ab-orange);
  margin-bottom: 4px;
}
.about-stat span {
  font-size: 0.82rem;
  color: var(--ab-muted);
  font-weight: 500;
}

.about-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 28px;
}
.about-section--alt { background: #fff; border-top: 1px solid var(--ab-border); border-bottom: 1px solid var(--ab-border); }
.about-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.about-section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.about-section-head p {
  margin: 0;
  color: var(--ab-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-benefit {
  background: var(--ab-surface);
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: var(--ab-shadow);
  transition: border-color .18s, transform .18s;
}
.about-benefit:hover {
  border-color: var(--ab-orange-border);
  transform: translateY(-2px);
}
.about-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ab-orange-soft);
  color: var(--ab-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.about-benefit h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
.about-benefit p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ab-muted);
  line-height: 1.5;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-split--reverse .about-split-visual { order: 2; }
.about-split--reverse .about-split-copy { order: 1; }
.about-split-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ab-border);
  box-shadow: var(--ab-shadow);
  aspect-ratio: 4 / 3;
  background: #f4f4f5;
}
.about-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split-copy h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.about-split-copy p {
  margin: 0 0 14px;
  color: var(--ab-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.about-checklist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.about-checklist i {
  color: var(--ab-orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-infra {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}
.about-infra-panel {
  background: linear-gradient(145deg, #18181b 0%, #27272a 55%, #3f3f46 100%);
  border-radius: 18px;
  padding: 28px 26px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-infra-panel h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.about-infra-panel p {
  margin: 0 0 18px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.about-infra-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-infra-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #fdba74;
  font-size: 0.75rem;
  font-weight: 600;
}
.about-infra-cards {
  display: grid;
  gap: 12px;
}
.about-infra-card {
  background: var(--ab-surface);
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-infra-card i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ab-orange-soft);
  color: var(--ab-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-infra-card h4 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
}
.about-infra-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ab-muted);
  line-height: 1.45;
}

.about-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-team-card {
  text-align: center;
  padding: 20px 14px;
  background: var(--ab-surface);
  border: 1px solid var(--ab-border);
  border-radius: 14px;
}
.about-team-card i {
  font-size: 1.6rem;
  color: var(--ab-orange);
  margin-bottom: 10px;
}
.about-team-card h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 700;
}
.about-team-card p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ab-muted);
  line-height: 1.4;
}

.about-cta {
  text-align: center;
  padding: 48px 28px 56px;
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-top: 1px solid var(--ab-border);
}
.about-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.about-cta p {
  margin: 0 auto 22px;
  max-width: 480px;
  color: var(--ab-muted);
  font-size: 0.95rem;
}

.about-custom {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 28px 0;
}
.about-custom-inner {
  background: var(--ab-surface);
  border: 1px solid var(--ab-border);
  border-radius: 16px;
  padding: 24px 28px;
  line-height: 1.7;
  font-size: 0.92rem;
}
.about-custom-inner img { max-width: 100%; border-radius: 12px; }

@media (max-width: 1100px) {
  .about-benefits { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .about-benefits { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 24px; }
  .about-split--reverse .about-split-visual,
  .about-split--reverse .about-split-copy { order: unset; }
  .about-infra { grid-template-columns: 1fr; }
  .about-team { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .about-benefits { grid-template-columns: 1fr; }
  .about-team { grid-template-columns: 1fr 1fr; }
  .about-nav { padding: 12px 16px; }
  .about-hero { padding: 40px 16px 36px; }
  .about-section { padding: 40px 16px; }
}
