/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */

/* Story Section (2 col) */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-section .story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.story-section .story-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-section .story-visual {
  position: relative;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.value-item {
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}
.value-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--shadow-frost);
  transform: translateY(-3px);
}
.value-item .value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(41, 98, 255, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.value-item .value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-bright);
}
.value-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Accreditation Row */
.accreditation-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.accreditation-row .accred-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 28px;
  transition: all 0.3s ease;
}
.accreditation-row .accred-badge:hover {
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: var(--shadow-frost);
}
.accred-badge .accred-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(41, 98, 255, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accred-badge .accred-icon svg {
  width: 20px;
  height: 20px;
  color: var(--blue-bright);
}
.accred-badge span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .story-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .accreditation-row {
    flex-direction: column;
    align-items: center;
  }
}
