

body.about-page {
  background: var(--bg, #fafbfd);
}

.header--about {
  z-index: 40;
}

.about-page {
  overflow-x: clip;
}


.about-hero {
  position: relative;
  padding: clamp(72px, 10vw, 120px) 0 clamp(40px, 6vw, 64px);
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero__title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin: 12px 0 16px;
  max-width: 18ch;
}

.about-hero__desc {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted, #5a6578);
  max-width: 56ch;
  margin-bottom: 28px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}


.about-mission {
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.6), transparent);
}

.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.about-mission-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border, rgba(26, 122, 140, 0.1));
  box-shadow: 0 12px 40px rgba(14, 74, 86, 0.06);
  transition: transform 0.35s var(--ease-out-expo, ease), box-shadow 0.35s ease;
}

.about-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(14, 74, 86, 0.1);
}

.about-mission-card--featured {
  background: linear-gradient(145deg, var(--brand-dark, #8b1510), var(--brand, #af1a15));
  color: #fff;
  border: none;
}

.about-mission-card--featured h3,
.about-mission-card--featured p {
  color: inherit;
}

.about-mission-card__icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.about-mission-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-mission-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted, #5a6578);
}


.about-stats {
  padding-block: clamp(32px, 5vw, 48px);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(24px, 4vw, 36px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(26, 122, 140, 0.08), rgba(175, 26, 21, 0.06));
  border: 1px solid rgba(26, 122, 140, 0.12);
}

.about-stats__item {
  text-align: center;
  padding: 12px 8px;
}

.about-stats__item strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--brand, #af1a15);
  line-height: 1.2;
}

.about-stats__item strong::after {
  content: '+';
  font-size: 0.65em;
  margin-right: 2px;
}

.about-stats__item:last-child strong::after {
  content: '٪';
  font-size: 0.55em;
}

.about-stats__item span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted, #5a6578);
}


.about-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.about-timeline__list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 72px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand, #af1a15), var(--teal, #1a7a8c));
  border-radius: 2px;
}

.about-timeline__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding-bottom: clamp(24px, 4vw, 36px);
  position: relative;
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__year {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand, #af1a15);
  text-align: left;
  padding-top: 4px;
}

.about-timeline__body {
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: 16px;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border, rgba(26, 122, 140, 0.1));
  box-shadow: 0 8px 28px rgba(14, 74, 86, 0.05);
  position: relative;
}

.about-timeline__body::before {
  content: '';
  position: absolute;
  right: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand, #af1a15);
  border: 3px solid var(--bg, #fafbfd);
  box-shadow: 0 0 0 2px var(--brand, #af1a15);
}

.about-timeline__body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.about-timeline__body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted, #5a6578);
  margin: 0;
}


.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.about-value {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
  background: var(--bg-elevated, #fff);
  border: 1px solid var(--border, rgba(26, 122, 140, 0.1));
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out-expo, ease);
}

.about-value:hover {
  border-color: rgba(175, 26, 21, 0.25);
  transform: translateY(-3px);
}

.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(175, 26, 21, 0.1), rgba(26, 122, 140, 0.1));
  color: var(--brand, #af1a15);
  margin-bottom: 14px;
}

.about-value__icon svg {
  width: 22px;
  height: 22px;
}

.about-value h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted, #5a6578);
  margin: 0;
}


.about-team__more {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
}

.about-cta {
  padding-bottom: clamp(48px, 8vw, 80px);
}


@media (max-width: 1024px) {
  .about-mission__grid,
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    order: -1;
  }

  .about-mission__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-timeline__list::before {
    right: 56px;
  }

  .about-timeline__item {
    grid-template-columns: 64px 1fr;
    gap: 12px;
  }

  .about-timeline__body::before {
    right: -22px;
    width: 10px;
    height: 10px;
  }

  .about-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
