/* ===== ABOUT PAGE ===== */
.about-page-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-very-light) 0%, #e8f0f8 50%, var(--blue-very-light) 100%);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 20px 0;
}

.feature-card {
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out forwards;
  will-change: transform;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 111, 12, 0.1), transparent);
  transition: left 0.4s ease;
  pointer-events: none;
  will-change: left;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 12px 24px rgba(7, 40, 80, 0.12);
  border-color: var(--primary-blue);
}

.feature-icon-container {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--blue-medium) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(7, 40, 80, 0.2);
}

.feature-icon {
  font-size: 40px;
}

.feature-title {
  font-family: 'NeoTech Bold', 'Arial Black', Arial, sans-serif;
  color: var(--primary-blue);
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.feature-description {
  font-family: 'Lucida Sans', Arial, sans-serif;
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 1.05rem;
}

