/* ==========================================================
   BENEFITS — comparison + chips + testimonial
   ========================================================== */
.benefits {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 44px 120px;
}

.benefits-head { text-align: center; margin-bottom: 64px; }

.benefits-head .stars-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.benefits-head .stars-line .stars { gap: 2px; }
.benefits-head .stars-line .stars svg { width: 15px; height: 15px; }

.benefits-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 16px;
}

.benefits-head .sub {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
}

/* ---- comparison table ---- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 860px;
  margin: 0 auto 84px;
}

.compare-col h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.compare-col.them .compare-row { color: var(--text-muted); }

.compare-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-col.them .compare-icon { background: #ececef; }

.compare-col.us .compare-icon {
  background: linear-gradient(135deg, var(--purple), #9a6cf0);
}

/* ---- benefit chips ---- */
.benefit-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}

.chip-card {
  background: var(--card-gray);
  border-radius: 16px;
  padding: 40px 20px 44px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(16,16,20,0.15);
}

.chip-icon {
  width: 58px; height: 58px;
  margin: 0 auto 26px;
  background: #fff;
  border: 1px solid rgba(112,71,235,0.35);
  border-radius: 14px;
  box-shadow: 0 8px 20px -8px rgba(112,71,235,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-card p {
  font-size: 16.5px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---- CTA ---- */
.benefits-cta-wrap { text-align: center; margin-bottom: 56px; }


/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .benefit-chips { grid-template-columns: repeat(2, 1fr); }
  .compare { gap: 40px; }
}

@media (max-width: 640px) {
  .benefits { padding: 24px 20px 80px; }
  .compare { grid-template-columns: 1fr; gap: 36px; margin-bottom: 60px; }
  .benefit-chips { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .chip-card { padding: 28px 14px 30px; }
  .chip-card p { font-size: 14.5px; }
}
