/* css/component/benefits.css */

.benefits-section {
  background-color: #1A0F0A; /* Глубокий темный фон */
  color: #F4F2EB;
  padding: 5rem 2rem;
  font-family: var(--font-main);
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
}

.benefits-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
  text-transform: uppercase;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #2A1A12;
  border: 1px solid rgba(225, 26, 39, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  /* border-radius удален */
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  color: #FFFFFF;
  text-transform: uppercase;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #A89B8C;
  margin: 0;
}