/**
 * Content Section Styles — Price Factors, Benefits Grid, Why Us
 * @package HairEvolutionFactory
 */

/* ===== PRICE FACTORS ===== */
.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .factors-grid { grid-template-columns: repeat(5, 1fr); }
}

.factor-item { text-align: center; }

.factor-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.factor-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.factor-item p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ===== BENEFITS GRID (Why Low Price / For Whom) ===== */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.benefit-card .box-icon { margin-bottom: 1rem; }

.benefit-card.centered { text-align: center; }

.benefit-card.centered .box-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}


/* ===== WHY US LIST ===== */
.why-us-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}

.why-us-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.why-us-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.why-us-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
