/* ========================================
   About Page
   ======================================== */

/* Hero */
.about-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--ice);
}

.about-hero h1 {
  margin-bottom: 48px;
  font-family: var(--font-h);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--graphite);
}

.about-hero .text-brand {
  color: var(--brand);
}

.about-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero__stat {
  text-align: center;
}

.about-hero__stat-num {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand);
}

.about-hero__stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: #606060;
}

/* Description */
.about-desc {
  max-width: 800px;
  margin: 0 auto;
}

.about-desc p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #606060;
}

/* Cards grid */
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-card {
  padding: 32px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.about-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--ice);
  border-radius: 12px;
}

.about-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
}

.about-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #606060;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  padding-left: 40px;
  margin: 48px auto 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  content: '';
  background: linear-gradient(180deg, var(--brand), #0ABAAA);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 32px;
}

.timeline-item::before {
  position: absolute;
  top: 6px;
  left: -33px;
  width: 12px;
  height: 12px;
  content: '';
  background: var(--brand);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 125, 85, .2);
}

.timeline-year {
  margin-bottom: 8px;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}

.timeline-text {
  font-size: 15px;
  line-height: 1.6;
  color: #606060;
}

/* Mission */
.mission-quote {
  font-family: var(--font-h);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand);
}

/* Company Card */
.company-card {
  padding: 32px;
  margin-top: 32px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.company-card__row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ice);
}

.company-card__row:last-child {
  border-bottom: none;
}

.company-card__label {
  flex-shrink: 0;
  min-width: 180px;
  font-size: 14px;
  font-weight: 600;
  color: #606060;
}

/* Contacts */
.contacts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin-top: 32px;
}

.contact-item {
  text-align: center;
}

.contact-item svg {
  margin: 0 auto 12px;
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--graphite);
}

.contact-item p {
  font-size: 16px;
}

.contact-item a {
  font-weight: 600;
  color: var(--brand);
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px){
  .about-hero__stats {
    flex-direction: column;
    gap: 24px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .company-card__row {
    flex-direction: column;
    gap: 4px;
  }

  .company-card__label {
    min-width: auto;
  }
}
