/* =========================================================
   Greenleaf LTD — benefits.css
   Pairs with includes/benefits.html.
   ========================================================= */

.benefits {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}

.benefits-heading {
  max-width: 560px;
  margin-bottom: 48px;
}

.benefits-heading h2 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--navy-900);
}

.benefits-heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #3B4668;
}

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

.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--navy-900);
}

.benefit-icon svg { width: 24px; height: 24px; }

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.benefit-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4A5478;
}

.benefit-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold-600);
}

.benefit-link:hover,
.benefit-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .benefits-inner { padding: 64px 20px; }
}
