.about-hero {
  padding: calc(var(--header-height) + 3.5rem) 0 4rem;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero-sub {
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== STORY ========== */
.our-story {
  background: var(--color-bg);
  padding: 5rem 0;
}

.story-text {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.story-text:last-child {
  margin-bottom: 0;
}

.story-highlight {
  color: var(--color-gold);
  font-weight: 600;
}

/* ========== MISSION & VISION ========== */
.mission-vision {
  background: var(--color-surface);
  padding: 5rem 0;
}

.mv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mv-card:hover {
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.mv-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.mv-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}

.mv-card-text {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.mv-card-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: rgba(245, 197, 24, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* ========== VALUES ========== */
.values-section {
  background: var(--color-bg);
  padding: 5rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========== ABOUT STATS ========== */
.about-stats {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ========== ABOUT CTA ========== */
.about-cta {
  background: var(--color-bg);
  padding: 5rem 0;
  text-align: center;
}
