/* ===== ABOUT HERO ===== */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #000 0%, #050520 100%);
}
.about-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.about-body {
  max-width: 680px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}

/* ===== MISSION / VISION ===== */
.mv-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #050520 0%, #080830 100%);
}
.mv-section-alt {
  background: linear-gradient(180deg, #080830 0%, #0c0c38 100%);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mv-grid-reverse {
  direction: rtl;
}
.mv-grid-reverse > * {
  direction: ltr;
}
.mv-img-inner {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.mv-img-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.mv-img-inner:hover img { transform: scale(1.03); }
.mv-img-mission::after,
.mv-img-vision::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
}
.mv-img-mission::after {
  background:
    linear-gradient(to right,  rgba(8,8,48,0.65) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(8,8,48,0.45) 0%, transparent 30%),
    linear-gradient(to top,    rgba(8,8,48,0.45) 0%, transparent 30%);
}
.mv-img-vision::after {
  background:
    linear-gradient(to left,   rgba(8,8,56,0.65) 0%, transparent 35%),
    linear-gradient(to bottom, rgba(8,8,48,0.45) 0%, transparent 30%),
    linear-gradient(to top,    rgba(8,8,48,0.45) 0%, transparent 30%);
}
.mv-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.mv-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.85;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero { padding: 120px 0 60px; }
  .about-body { margin-left: 0; }
  .mv-grid, .mv-grid-reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .mv-grid-reverse > * { direction: ltr; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
}
