section#usps{
    position: relative;
    padding: 80px 0;
    isolation: isolate;
}

section#usps:before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  pointer-events: none;
  z-index: -1;

  /* Altijd een perfect vierkant → rond masker */
  width: clamp(220px, 60%, 46rem);
  aspect-ratio: 1;

  /* De glow zelf: rond + zachte rand */
  background: radial-gradient(
    circle at 50% 50%,
    rgba(191, 54, 46, 0.45) 0%,
    rgba(122, 40, 113, 0.38) 35%,
    rgba(122, 40, 113, 0.18) 58%,
    transparent 70%
  );

  /* Zachte blur, schaalt mee zodat hij in kleine secties niet te heftig is */
  filter: blur(clamp(8px, 1.5vw, 20px));
  opacity: .9;
}
section#usps .container > h2{
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 100px;
    border: 1px solid #243891;
    color: #233891;
    width: fit-content;
    margin: 0 auto;
}

section#usps .container > h3{
    color: #233891;
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}

section#usps .container .onderstetekst{
    margin-bottom: 15px;
}

section#usps .container .onderstetekst p{
    text-align: center;
    color: #233891;
    font-size: 18px;
    margin: 0 auto;
}

section#usps .uspwrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    
}

section#usps .uspwrapper .singleusp h4{
    font-size: 18px;
    line-height: 26px;
    color: white;
    margin: 0;
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 10px;
}

section#usps .uspwrapper .singleusp .wrap{
    text-align: center;
}

section#usps .uspwrapper .singleusp .wrap p{
    margin: 0;
}

section#usps .uspwrapper .singleusp .uspicon{
    flex: 0 0 130px;
    border-radius: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out all;
}

section#usps .uspwrapper .singleusp{
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: start;
    gap: 15px;
    flex-wrap: wrap;
    flex: 1;
    box-sizing: border-box;
    transition: 0.2s ease-in-out all;
    background: rgb(255 255 255 / 14%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 20px 40px;
    border-radius: 4px;
}

section#usps .uspwrapper .singleusp:nth-child(n+4){
    margin-top: 40px;
}

section#usps .uspwrapper .singleusp .uspicon img{
    width: 70px;
    height: 70px;
    object-fit: contain;
}

@media only screen and (max-width: 1000px) {
    section#usps .uspwrapper .singleusp{
        flex: 0 0 100%;
        display: block;
    }

    section#usps .uspwrapper .singleusp .uspicon{
        margin-bottom: 10px;
    }
}