/* about.css — stats, mv, services, process, why, cta (about-hero kuralları base.css'e taşındı) */
.about-btn {
  padding: 12px 24px; border-radius: 10px; font-weight: 600; text-decoration: none;
}
.about-btn--primary { background: var(--white); color: var(--sky); }
.about-btn--ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1.5px solid rgba(255,255,255,.55); }
.about-btn--lg { padding: 16px 32px; font-size: 17px; }

.about-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin: 32px 0; }
.about-stat { text-align: center; background: var(--white); padding: 20px 12px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.about-stat__num { font-size: 32px; font-weight: 800; color: var(--sky); }
.about-stat__label { font-size: 13px; color: var(--ink-soft); }

.about-mv { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.about-mv-card { background: var(--white); padding: 24px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.about-mv-card__icon { font-size: 32px; margin-bottom: 8px; }
.about-services__title, .about-process__title { font-size: 24px; font-weight: 700; text-align: center; margin: 32px 0 16px; }
.about-services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.about-service-card { background: var(--white); padding: 20px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.about-service-card__icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white); margin-bottom: 8px;
}
.about-service-card__icon--blue   { background: linear-gradient(135deg, #5B9BD5, #007AFF); }
.about-service-card__icon--green  { background: linear-gradient(135deg, #7AB800, #5B9B00); }
.about-service-card__icon--orange { background: linear-gradient(135deg, #FF8C00, #FF6F00); }
.about-service-card__icon--purple { background: linear-gradient(135deg, #9C27B0, #673AB7); }
.about-service-card__icon--pink   { background: linear-gradient(135deg, #E91E63, #C2185B); }
.about-service-card__icon--cyan   { background: linear-gradient(135deg, #00BCD4, #0097A7); }
.about-service-card__title { font-size: 16px; font-weight: 700; margin: 8px 0 4px; }
.about-process__grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; justify-content: center; }
.about-step { background: var(--white); padding: 20px; border-radius: 10px; flex: 1 1 140px; text-align: center; box-shadow: var(--shadow-sm); }
.about-step__num { width: 36px; height: 36px; border-radius: 50%; background: var(--sky); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 8px; }
.about-step__title { font-size: 14px; font-weight: 700; }
.about-step__arrow { display: flex; align-items: center; font-size: 24px; color: var(--sky); }

.about-why { margin: 32px 0; }
.about-why__card { background: var(--white); padding: 24px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.about-why__list { margin-top: 12px; padding-left: 0; list-style: none; }
.about-why__list li { padding: 6px 0; }

.about-why__head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.about-why__eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(0,122,255,.12), rgba(91,155,213,.18));
  color: var(--sky); font-size: 13px; font-weight: 700; letter-spacing: .3px;
  border: 1px solid rgba(91,155,213,.3);
}
.about-why__head h2 { font-size: 34px; font-weight: 800; color: var(--ink); margin: 14px 0 12px; letter-spacing: -.5px; }
.about-why__accent { background: linear-gradient(135deg, #007aff, #5b9bd5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-why__lead { font-size: 16px; line-height: 1.7; color: var(--ink-mid); margin: 0; }

.about-why__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-bottom: 28px;
}
.about-why__grid .about-why__card {
  position: relative; overflow: hidden; padding: 24px 22px;
  background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(91,155,213,.18);
  box-shadow: 0 6px 20px rgba(0,62,128,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-why__grid .about-why__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sky), #5b9bd5);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.about-why__grid .about-why__card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,62,128,.12); border-color: var(--sky); }
.about-why__grid .about-why__card:hover::before { transform: scaleX(1); }
.about-why__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0,122,255,.12), rgba(91,155,213,.22));
  color: var(--sky);
}
.about-why__metric { font-size: 28px; font-weight: 800; color: var(--sky); line-height: 1; margin-bottom: 8px; letter-spacing: -.5px; }
.about-why__grid .about-why__card h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.about-why__grid .about-why__card p { font-size: 14px; line-height: 1.55; color: var(--ink-mid); margin: 0; }

.about-why__list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px;
  padding: 0; margin: 0; list-style: none;
}
.about-why__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--white);
  border-radius: 10px; border: 1px solid rgba(91,155,213,.2);
  font-size: 14px; color: var(--ink); font-weight: 500;
  transition: all .2s ease;
}
.about-why__list li:hover { border-color: var(--sky); background: #f0f7ff; transform: translateX(4px); }
.about-why__check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sky), #5b9bd5);
  color: var(--white); font-size: 12px; font-weight: 700;
}

.about-cta { background: linear-gradient(135deg, var(--sky) 0%, #0056b3 100%); color: var(--white); padding: 32px 24px; border-radius: 12px; text-align: center; }
.about-cta h2 { color: var(--white); }
.about-cta__actions { display: flex; gap: 12px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.about-cta .about-btn--ghost { border-color: var(--white); color: var(--white); }
.about-cta .about-btn--primary { background: var(--white); color: var(--sky); }

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

/* From legacy.css */
.about-services { margin: 0 0 56px; }
.about-process { margin: 0 0 56px; background: linear-gradient(135deg, #f0f7ff, #dbeafe); padding: 48px 24px; border-radius: 20px; }
.about-process .about-section-title { margin-bottom: 36px; }

/* MV card icon modifiers */
.about-mv-card__icon--mission { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.about-mv-card__icon--vision { background: linear-gradient(135deg, #ede9fe, #c4b5fd); }

/* Why card modifiers */
.about-why__card--users { border-top: 4px solid #3b82f6; }
.about-why__card--data { border-top: 4px solid #10b981; }
.about-why__card--trust { border-top: 4px solid #f59e0b; }
.about-why__card--speed { border-top: 4px solid #8b5cf6; }