/* ===== ABOUT SECTION (Про компанію) ===== */

.about-section {
  padding-bottom: var(--space-3xl) 0;
  background: #fff;
}

.about-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.about-content p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--c-text-light);
  margin-bottom: var(--space-lg);
}
.about-content p:last-child {
  margin-bottom: 0;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.about-feature {
  text-align: center;
  padding: var(--space-xl);
  background: var(--c-bg-gray);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--c-primary);
}

.about-feature-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--c-text);
}

.about-feature-text {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--c-text-light);
}

/* Адаптив */
@media (max-width: 767px) {
  .about-section {
    padding-bottom: var(--space-2xl) 0;
  }
  .about-title {
    font-size: var(--text-xl);
  }
  .about-content p {
    font-size: var(--text-sm);
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about-feature {
    padding: var(--space-lg);
  }
}
