/* ============================================================
   ABOUT PAGE — about.css
   ============================================================ */

/* ----- Philosophy Section ----- */
.philosophy {
  padding: 120px 0;
}

.philosophy__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .philosophy__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.philosophy__text p {
  color: var(--gray-400);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.philosophy__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.philosophy__image-wrapper img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ----- Values Grid ----- */
.values {
  padding: 120px 0;
  background: var(--gray-950);
}

.values__header {
  text-align: center;
  margin-bottom: 64px;
}

.values__header .section-tag {
  justify-content: center;
}

.values__header .section-subtitle {
  margin: 0 auto;
}

.values__grid {
  display: grid;
  gap: 1px;
  background: var(--gray-800);
  border-radius: 16px;
  overflow: hidden;
}

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

.values__card {
  background: var(--gray-950);
  padding: 48px 40px;
  transition: background var(--duration-base) ease;
}

.values__card:hover {
  background: rgba(5, 140, 202, 0.03);
}

.values__card-index {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: 16px;
}

.values__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.values__card-desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* ----- Feature Highlight ----- */
.feature {
  padding: 120px 0;
}

.feature__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.feature__image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  order: 2;
}

@media (min-width: 768px) {
  .feature__image-wrapper {
    order: 0;
  }
}

.feature__image-wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature__text .section-subtitle {
  margin-bottom: 32px;
}

.feature__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature__check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-300);
}

.feature__check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
