/* =========================================================
   Nero Development — For Businesses (page-specific)
   ========================================================= */

/* ---------- How it works — 4-step grid ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nero-charcoal-6);
  margin-top: 3.5rem;
  list-style: none;
}
.step-card {
  background: var(--nero-charcoal-1);
  padding: 2rem;
  min-height: 200px;
}
.step-card__num { font-size: 0.75rem; color: var(--nero-orange); }
.step-card__name { font-size: 1.0625rem; font-weight: 400; margin-top: 14px; }
.step-card__desc { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }

/* ---------- What you get — 3-column grid ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--nero-charcoal-6);
  margin-top: 3.5rem;
}
.benefit-card { background: var(--nero-black-1); padding: 2rem; }
.benefit-card__title { font-size: 1.0625rem; font-weight: 400; }
.benefit-card__desc { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 12px; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 900px;
  margin-inline: auto;
}
.faq-list { margin-top: 3rem; }
.faq-item {
  border-top: 1px solid var(--border-faint);
  padding-block: 1.75rem;
}
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--border-faint); }

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #fff;
  list-style: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--nero-orange);
  transition: transform 0.15s ease;
}
.faq-item__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  left: 50%; top: 0;
  width: 1.5px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-item__icon::after { transform: translateX(-50%) scaleY(0); }

.faq-item__answer {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 65ch;
  margin-top: 1.25rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .faq-item__summary { font-size: 1rem; gap: 1rem; }
}
