/* ============================
   ABOUT – SILENT PREMIUM MODE
   ============================ */

.about-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 90px 0;
}

.about-container {
  width: 70%;
  max-width: 1200px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 70px 64px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  transition: all 0.3s;
}

/* ---------- HEADER ---------- */

.about-header {
  text-align: center;
  margin-bottom: 90px;
}

.about-badge {
  font-family: 'Audiowide';
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.65;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-title {
  font-family: 'Merriweather';
  font-size: 44px;
  line-height: 1.22;
  margin-bottom: 26px;
  letter-spacing: -0.3px;
  margin-top: 10px;
}

.about-lead {
  font-family: 'Rubik';
  font-size: 18px;
  line-height: 1.85;
  opacity: 0.82;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- GRID ---------- */

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-bottom: 90px;
}

/* ---------- CARD ---------- */

.about-card {
  position: relative;
  padding: 44px 38px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  border-color: rgba(255, 255, 255, 0.22);
}

.about-card:hover::before {
  opacity: 1;
}

/* ---------- CARD TEXT ---------- */

.about-card h2 {
  font-family: 'NovaSquare';
  font-size: 22px;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
}

.about-card p,
.about-card li {
  font-family: 'Rubik';
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.88;
}

.about-card ul {
  padding-left: 18px;
}

/* ---------- COLOR AURA (SOFT) ---------- */

.mission::before {
  background: radial-gradient(circle at top left,
      rgba(0, 200, 255, 0.22),
      transparent 65%);
}

.vision::before {
  background: radial-gradient(circle at top left,
      rgba(140, 0, 255, 0.22),
      transparent 65%);
}

.values::before {
  background: radial-gradient(circle at top left,
      rgba(0, 255, 170, 0.22),
      transparent 65%);
}

/* ---------- FOOTER (SILENT MODE) ---------- */

.about-footer {
  text-align: center;
  padding-top: 42px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.about-footer p {
  font-family: 'Rubik';
  font-size: 13px;
  opacity: 0.45;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.about-footer strong {
  font-family: 'Rubik';
  font-weight: 600;
  opacity: 0.55;
}

.about-sign {
  font-family: 'Merienda';
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.35;
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 991px) {
  .about-container {
    width: 85%;
    padding: 55px 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .about-container {
    padding: 42px 28px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-lead {
    font-size: 16px;
  }
}