/* Tarifs page — guarantee strip + comparison table (pricing.css handles the pricing grid itself) */
.guarantee-strip {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) { .guarantee-strip { grid-template-columns: 1fr; gap: 2.5rem; } }
.guar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.guar-title { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.guar-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; max-width: 280px; margin: 0 auto; }

.compare-section { padding: clamp(3.5rem, 7vw, 5.5rem) 1.5rem; background: #fff; }
.compare-wrap { max-width: 1000px; margin: 0 auto; }
.compare-title { text-align: center; font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; letter-spacing: -0.04em; color: var(--dark); margin-bottom: 2.5rem; }

@media (max-width: 640px) {
  .compare-section { display: none; }
}
