/* =====================================================
   ABOUT PAGE LAYOUT
===================================================== */

.about-page {
  max-width: 1300px;
  width: 92%;
  margin: auto;
  padding-top: 150px;
  padding-bottom: 100px;
}

.page-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  letter-spacing: -1px;
}

.page-title span {
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================
   HERO SPLIT SECTION
===================================================== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 50px;
}

.engineer-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.engineer-card h3 {
  margin-bottom: 24px;
  color: var(--primary-cyan);
  font-size: 20px;
  font-weight: 700;
}

.domain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.domain-list li {
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.domain-list li i {
  color: var(--primary-cyan);
  font-size: 16px;
}

.domain-list li:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(6px);
  color: var(--text-main);
}

.about-story {
  padding: 40px;
  text-align: left;
}

.about-story h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.about-story p {
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

.about-story strong {
  color: var(--primary-cyan);
}

.story-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--accent-purple));
  margin: 12px 0 24px 0;
  border-radius: 2px;
}

/* =====================================================
   IMPACT STATS
===================================================== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.stat-card {
  padding: 28px;
  text-align: center;
}

.stat-card h3 {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-card p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}

/* =====================================================
   JOURNEY SECTION
===================================================== */
.about-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.journey-card {
  padding: 32px 24px;
  text-align: center;
}

.journey-card i {
  font-size: 36px;
  color: var(--primary-cyan);
  margin-bottom: 16px;
}

.journey-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.journey-card p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================
   STRENGTHS SECTION
===================================================== */
.about-strengths {
  padding: 36px;
  text-align: center;
}

.about-strengths h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 24px;
}

.strength-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.strength-tags span {
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary-cyan);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.strength-tags span:hover {
  background: var(--primary-cyan);
  color: #000;
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-title {
    font-size: 36px;
  }
}