/* ========================================
   About Page Styles
   ======================================== */
.about-intro-section {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.about-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-intro-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-intro-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.about-intro-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.about-intro-text {
  font-size: var(--fs-body);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-sm);
}

.about-intro-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

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

.stat-number {
  display: block;
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--color-muted);
}

/* Strength Section */
.about-strength-section {
  padding: var(--space-section) 0;
  background: var(--color-surface);
}

.about-strength-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-strength-content {
  order: 1;
}

.about-strength-visual {
  order: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-strength-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.about-strength-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.about-strength-text {
  font-size: var(--fs-body);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-lg);
}

.strength-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.strength-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.strength-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 50%;
}

.strength-feature h4 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: 4px;
}

.strength-feature p {
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: var(--lh-normal);
}

/* Philosophy Section */
.about-philosophy-section {
  padding: var(--space-section) 0;
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.about-philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(0,83,135,0.15) 0%, transparent 70%);
}

.about-philosophy-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-philosophy-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-philosophy-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
}

.about-philosophy-content {
  text-align: left;
}

.about-philosophy-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.about-philosophy-text {
  font-size: clamp(1rem, 1.1vw, 1.0625rem);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-normal);
  margin-bottom: var(--space-lg);
}

@media (max-width: 1024px) {
  .about-intro-layout,
  .about-strength-layout,
  .about-philosophy-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-strength-content {
    order: 0;
  }

  .about-strength-visual {
    order: 0;
  }

  .about-intro-img,
  .about-strength-img,
  .about-philosophy-img {
    height: 300px;
  }

  .about-philosophy-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-intro-stats {
    gap: var(--space-md);
  }

  .stat-number {
    font-size: var(--fs-h2);
  }
}
