/* USP Sectie – apart design (bosgroen/linnen varianten) */
.jh-usps { position: relative; padding: clamp(40px, 7vw, 100px) 16px; }
.jh-usps__container { max-width: 1240px; margin-inline: auto; }

/* Variants */
.jh-usps--forest {
   background: #fbf7f1;
  color: #eef3ec;
}
.jh-usps--linen {
  background: #f7f3ec;
  color: #1e1e1e;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.04);
}

/* Header */
.jh-usps__header { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.jh-usps__title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.jh-usps--forest .jh-usps__title { color: #333; }
.jh-usps__intro {
  max-width: 72ch;
  margin: 10px auto 0;
  opacity: .9;
  font-size: clamp(16px, 1.2vw, 18px);
  color: #333;
}

/* Grid */
.jh-usps__grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none; padding: 0; margin: 0;
}
.jh-usps--cols-3 .jh-usps__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Card */
.jh-usps__card {
  position: relative;
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 28px);
      background: white;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
      color: #1f2a1f;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.jh-usps--linen .jh-usps__card {
  background: #fff;
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.jh-usps__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.18);
}

/* Icon */
.jh-usps__icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 12px;
      background: #476930;
    border: 1px solid rgba(0, 0, 0, .06);
    color: white;
}
.jh-usps--linen .jh-usps__icon {
  background: #f5f6f6; border-color: rgba(0,0,0,.06);
}
.jh-usps__icon svg { width: 26px; height: 26px; display: block; }

/* Micro tag */
.jh-usps__tag {
  display: inline-block;
  font-size: 12px; line-height: 1;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 10px;
  letter-spacing: .015em;
      color: #333;
}
.jh-usps--linen .jh-usps__tag {
  background: #f2f2f2; border-color: rgba(0,0,0,.06);
}

/* Text */
.jh-usps__label {
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 4px 0 6px;
}
.jh-usps__text {
  opacity: .92;
  font-size: 15.5px;
  line-height: 1.6;
}

/* CTA */
.jh-usps__footer { text-align: center; margin-top: clamp(22px, 3.6vw, 40px); }
.jh-usps__btn {
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #476930;
    color: #0b2212;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
    transition: transform .08s 
ease, box-shadow .2s 
ease, background .2s 
ease, color .2s 
ease;
    color: white;
    border-radius: 1000px;
}
.jh-usps--linen .jh-usps__btn { background: #1f3d1f; color: #fff; border-color: rgba(0,0,0,.12); }
.jh-usps__btn:hover { transform: translateY(-1px); box-shadow: 0 14px 26px rgba(0,0,0,.2); }

/* Trust strip */
.jh-usps__trust { margin-top: clamp(24px, 4vw, 48px); text-align: center; }
.jh-usps__trust-title { opacity: .8; margin-bottom: 10px; font-size: 14px; letter-spacing: .02em; }
.jh-usps__trust-logos {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; align-items: center;
}
.jh-usps__trust-logo { max-height: 36px; width: auto; opacity: .9; filter: saturate(.85); }

/* Responsive */
@media (max-width: 1024px) {
  .jh-usps__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .jh-usps__grid { grid-template-columns: 1fr; }
}
