/* ===================================================
   ABOUT / OUR STORY — Styles
   =================================================== */

/* ---------- PAGE HEADER ---------- */
.about-header {
  padding: 10rem 0 4rem;
  text-align: center;
}

.about-header__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.5);
  margin-bottom: 1.25rem;
}

.about-header__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.about-header__subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- STORY SECTIONS ---------- */
.about-section {
  padding: 4rem 0;
}

.about-section + .about-section {
  border-top: 1px solid rgba(255,255,255,0.04);
}

.about-content {
  max-width: 680px;
}

.about-content--center {
  margin: 0 auto;
  text-align: center;
}

.about-content__tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.45);
  margin-bottom: 1rem;
}

.about-content__heading {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 1.25rem;
}

.about-content__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.about-content__text:last-child {
  margin-bottom: 0;
}

.about-content__highlight {
  color: rgba(140, 180, 255, 0.7);
}

/* ---------- VALUES GRID ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.4s ease;
}

.value-card:hover {
  border-color: rgba(140, 180, 255, 0.12);
  transform: translateY(-2px);
}

.value-card__number {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(140, 180, 255, 0.3);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.value-card__title {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.5rem;
}

.value-card__desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin: 0;
}

/* ---------- STATS ROW ---------- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

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

.stat-item__value {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: rgba(140, 180, 255, 0.8);
  letter-spacing: -0.02em;
  display: block;
}

.stat-item__label {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  display: block;
}

/* ---------- APPROACH STEPS ---------- */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.approach-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.approach-step__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(140, 180, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(140, 180, 255, 0.5);
}

.approach-step__content h4 {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin: 0.25rem 0 0.35rem;
}

.approach-step__content p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin: 0;
}

/* ---------- CTA SECTION ---------- */
.about-cta {
  text-align: center;
  padding: 5rem 0;
}

.about-cta__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.about-cta__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  margin: 0 0 2rem;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: rgba(140, 180, 255, 0.1);
  border: 1px solid rgba(140, 180, 255, 0.2);
  border-radius: 30px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.about-cta__btn:hover {
  background: rgba(140, 180, 255, 0.18);
  border-color: rgba(140, 180, 255, 0.35);
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-header {
    padding: 8rem 0 3rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .approach-step {
    gap: 1rem;
  }
}
