/* About Page Styles */
.about-page-me {
  padding: 80px 0 120px;
}

.about-story-content {
  max-width: 800px;
  margin: 48px auto 0;
  text-align: center;
}

.about-story-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-story-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-story-content .highlight-text {
  color: var(--blue);
  font-weight: 500;
}

.about-story-content .quote-block {
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 3px solid var(--blue);
  background: rgba(14, 165, 233, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Journey Timeline */
.journey {
  padding: 100px 0;
  background: var(--bg-alt);
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--purple), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--blue);
  z-index: 1;
}

.timeline-item.active .timeline-dot {
  background: var(--blue);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.timeline-date {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-alt);
}

.timeline-content {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: var(--transition-med);
}

.timeline-content:hover {
  border-color: rgba(37, 99, 235, 0.1);
  transform: translateX(4px);
}

.timeline-content h4 {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stats Banner */
.stats-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(14, 165, 233, 0.04));
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(100px);
  opacity: 0.05;
  top: -50%;
  right: -10%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Personal Values */
.values {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition-med);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.12);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0 auto 16px;
}

.value-card h3 {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

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

  .journey-timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 48px;
  }

  .timeline-dot {
    left: 8px;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }
}
