/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  padding: 160px 0 80px;
  background: #fff;
}

.about-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero__content {
  display: flex;
  flex-direction: column;
}

.about-hero__heading {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 3.2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-hero__line1 {
  display: block;
  font-size: 70px;
  color: var(--blue);
}

.about-hero__line2 {
  display: block;
  font-size: 48px;
}

.about-hero__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #475569;
}

.about-hero__image {
  border-radius: 16px;
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.mission-vision {
  padding: 80px 0;
  background: var(--gray-bg);
}

.mission-vision__header {
  margin-bottom: 48px;
}

.mission-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #8B8B8B;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform var(--trans);
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(23, 84, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--blue);
}

.mv-card__icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
}

.mv-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.mv-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}

.values {
  padding: 80px 0;
  background: #1D232B;
  color: #fff;
}

.values__header {
  margin-bottom: 24px;
}

.values__header .section-title {
  margin-bottom: 0;
}

.values__header .section-title {
  color: #fff;
}

.values__header .section-label {
  color: var(--blue);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.value-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid #e2e8f0;
}

.value-card:last-child {
  border-right: none;
}

.value-card__num {
  font-family: 'Barlow', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.value-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.value-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.advantage {
  padding: 80px 0;
  background: #fff;
}

.advantage__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.advantage__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.advantage__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.advantage__content {
  display: flex;
  flex-direction: column;
}

.advantage__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.advantage-item__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(23, 84, 252, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--blue);
  flex-shrink: 0;
}

.advantage-item__icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
}

.advantage-item__text h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.advantage-item__text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-hero__image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .mission-vision__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .advantage__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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