/* === USP strip === */
#usps{
  --bg: #f6f9fc;          /* achtergrond balk */
  --fg: #0b1220;          /* primaire tekst */
  --muted: #475569;       /* secundaire tekst (als nodig) */
  --accent: #0ea5ff;      /* link/brand kleur */
  --icon-bg: #ffffff;     /* achtergrond van icon-badge */
  --ring: rgba(2,132,199,.18);

  background: var(--bg);
  color: var(--fg);
  padding: clamp(28px, 4vw, 64px) 0;
}

#usps .container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

#usps .uspwrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  align-items: stretch;
}

/* Card */
#usps .singleusp{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: clamp(18px, 2.5vw, 28px);
  box-shadow: 0 1px 0 rgba(2,6,23,.04), 0 8px 7px -10px rgba(2,6,23,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

#usps .singleusp:hover{
  transform: translateY(-3px);
  box-shadow: 0 2px 0 rgba(2,6,23,.04), 0 18px 30px -12px rgba(2,6,23,.18);
}

/* Icon badge */
#usps .uspicon{
  width: 64px; height: 64px;
  border-radius: 9999px;
  background: var(--icon-bg);
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px var(--ring) inset;
}

#usps .uspicon i{
font-size: 28px;
    line-height: 1;
    color: #00a1de;
}

/* Titel */
#usps .singleusp h4{
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.25;
  margin: 6px 0 0;
  color: var(--accent);
  text-wrap: balance;     /* voorkomt lelijke afbreking bij lange titels */
}