/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.about-card {
  background: var(--gray-100);
  padding: 36px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out);
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.about-card h3 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 24px;
  font-family: var(--font-main);
  font-weight: 600;
}

.dna-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.dna-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  font-style: italic;
}

.dna-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
}

.institutions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.institution {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.institution:hover {
  border-color: var(--accent);
  background: rgba(28, 96, 167, 0.03);
}

.institution-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* CEO Quote */
.ceo-quote {
  background: var(--gray-100);
  padding: 56px;
  border: 1px solid var(--gray-200);
  position: relative;
  border-radius: var(--radius-lg);
}

.ceo-quote::before {
  content: '"';
  position: absolute;
  top: 32px;
  left: 48px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--gray-300);
  line-height: 1;
}

.ceo-quote blockquote {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.ceo-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ceo-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
}

.ceo-info strong {
  display: block;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
}

.ceo-info span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 400;
}
