/* Hakkımızda — modern kurumsal sayfa (page-about) */

body.page-about .seo-hero__media {
  max-width: min(400px, 100%);
  margin-inline: auto;
}

body.page-about .seo-hero__img {
  max-height: 260px;
  object-position: center 30%;
}

body.page-about .seo-article.about-page {
  max-width: none;
}

body.page-about .seo-article.about-page > .seo-figure {
  display: none;
}

.about-block {
  margin-bottom: clamp(40px, 5vw, 56px);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-primary-soft);
  border: 1px solid rgba(30, 107, 255, 0.15);
  margin-bottom: 12px;
}

.about-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 1.15rem + 0.9vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--color-text);
}

.about-block__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin: 0 0 20px;
  max-width: 62ch;
}

.about-block p {
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-block a {
  color: var(--color-accent);
  font-weight: 650;
  text-decoration: none;
}

.about-block a:hover {
  text-decoration: underline;
}

/* Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 360px);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 55%, #f0faf9 100%);
  box-shadow: var(--shadow-md);
}

@media (max-width: 820px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-intro__media {
    justify-self: center;
  }
}

.about-intro__media {
  margin: 0;
  max-width: 360px;
  width: 100%;
}

.about-media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-surface);
}

.about-media__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: center 25%;
}

.about-media__cap {
  margin: 0;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-faint);
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.9);
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
}

.about-stat {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-stat__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--color-accent);
  background: var(--color-primary-soft);
}

.about-stat__icon--teal {
  color: var(--color-success);
  background: rgba(13, 148, 136, 0.12);
}

.about-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about-stat__lbl {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--color-muted);
  font-weight: 600;
}

/* Values */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-value {
  padding: 22px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.about-value:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-value__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--color-accent);
  background: var(--color-primary-soft);
}

.about-value__icon--teal {
  color: var(--color-success);
  background: rgba(13, 148, 136, 0.12);
}

.about-value__icon--navy {
  color: var(--color-text);
  background: rgba(15, 39, 68, 0.08);
}

.about-value h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-value p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* What we do */
.about-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {
  .about-services {
    grid-template-columns: 1fr;
  }
}

.about-service {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.about-service:hover {
  border-color: rgba(30, 107, 255, 0.25);
  box-shadow: var(--shadow-md);
}

.about-service__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: var(--color-accent);
  background: var(--color-primary-soft);
}

.about-service__body strong {
  display: block;
  font-size: 0.98rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about-service__body span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.about-service__arrow {
  margin-left: auto;
  align-self: center;
  color: var(--color-faint);
  font-size: 0.9rem;
}

.about-service:hover .about-service__arrow {
  color: var(--color-accent);
}

/* Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: clamp(24px, 3vw, 36px);
  align-items: start;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
}

@media (max-width: 760px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__media {
    justify-self: center;
    max-width: 300px;
  }
}

.about-split__media {
  margin: 0;
  width: 100%;
}

.about-split .about-media__img {
  max-height: 220px;
}

/* Process */
.about-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: about-step;
}

@media (max-width: 900px) {
  .about-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .about-steps {
    grid-template-columns: 1fr;
  }
}

.about-step {
  position: relative;
  padding: 18px 16px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #1e6bff, #0d9488);
  margin-bottom: 12px;
}

.about-step h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-step p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Team */
.about-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 768px) {
  .about-team {
    grid-template-columns: 1fr;
  }
}

.about-team__card {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-team__photo {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.about-team__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team__name {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-team__role {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-muted);
}

/* Districts & mahalleler */
.about-areas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 720px) {
  .about-areas {
    grid-template-columns: 1fr;
  }
}

.about-area {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-area__district {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-text);
}

.about-area__district i {
  color: var(--color-success);
  font-size: 1rem;
}

.about-area__seo {
  margin: 0 0 12px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-faint);
}

.about-mahalleler {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-mahalleler li {
  display: inline-block;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}

.about-areas__note {
  margin: 18px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Checklist */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.about-checklist__ico {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--color-success);
  background: rgba(13, 148, 136, 0.12);
}

.about-foot-link {
  margin-top: 20px;
}
