.usp {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 5rem) var(--gap-l);
    background-color: #071534;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.usp__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% -10%, rgba(19, 125, 164, 0.42), rgba(19, 125, 164, 0) 38%),
        linear-gradient(180deg, rgba(5, 17, 47, 0.72), rgba(5, 17, 47, 0.92));
    pointer-events: none;
}

.usp > *:not(.usp__overlay) {
    position: relative;
    z-index: 1;
}

.usp__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 4rem);
    align-items: start;
}

.usp__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
}

.usp__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
}

.usp__icon svg {
    width: 100%;
    height: 100%;
}

.usp__icon--placeholder {
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.usp__title {
    margin: 0;
    color: #fff;
    font-family: var(--primary-font), sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.1rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
}

.usp__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--primary-font), sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.usp__description {
    color: rgba(255, 255, 255, 0.74);
    font-family: var(--primary-font), sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    max-width: 18rem;
}

.usp--with-heading {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl, 64px);
}

.usp__section-title {
    font-family: var(--primary-font), sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    letter-spacing: -0.02em;
}

.usp__section-title-highlight {
    color: var(--color-primary);
}

.usp__title[data-counter] {
    display: inline-block;
}

.usp--tone-light {
    background-color: #ffffff;
}

.usp--tone-light .usp__overlay {
    background:
        radial-gradient(circle at 10% 35%, rgba(0, 161, 214, 0.08), rgba(0, 161, 214, 0) 26%),
        radial-gradient(circle at 92% 68%, rgba(34, 60, 129, 0.06), rgba(34, 60, 129, 0) 22%);
}

.usp--tone-light .usp__section-title,
.usp--tone-light .usp__title,
.usp--tone-light .usp__subtitle,
.usp--tone-light .usp__description,
.usp--tone-light .usp__icon {
    color: #141a26;
}

.usp--tone-light .usp__section-title-highlight {
    color: var(--color-primary);
}

.usp--tone-light .usp__subtitle {
    color: #171d2a;
}

.usp--tone-light .usp__description {
    color: var(--color-text-secondary, #a3b0c2);
}

.usp--tone-light .usp__icon--placeholder {
    border-color: rgba(20, 26, 38, 0.18);
}

.usp--numbered-reasons {
    padding: clamp(4rem, 6vw, 5.5rem) var(--gap-l);
}

.usp--numbered-reasons .usp__grid {
    width: calc(300px + (1350 - 300) * ((100vw - 320px) / (1920 - 320)));
}

.usp--numbered-reasons .usp__section-title {
    color: #141a26;
    font-size: 36px;
    font-weight: 200;
    letter-spacing: -0.035em;
}

.usp--numbered-reasons .usp__section-title-highlight {
    color: var(--color-primary);
}

.usp--numbered-reasons .usp__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 2rem);
    max-width: min(1380px, 100%);
}

.usp--numbered-reasons .usp__item {
    gap: 0.75rem;
}

.usp--numbered-reasons .usp__title {
    color: var(--color-primary);
    font-size: clamp(3rem, 3.8vw, 3.85rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    padding-bottom: 0.8rem;
    position: relative;
}

.usp--numbered-reasons .usp__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    transform: translateX(-50%);
}

.usp--numbered-reasons .usp__subtitle {
    color: #171d2a;
    font-size: clamp(0.95rem, 0.98vw, 1.04rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.03em;
    max-width: 22ch;
    text-wrap: balance;
}

.usp--numbered-reasons .usp__description {
    display: none;
}

.usp--numbered-reasons.usp--tone-dark .usp__section-title {
    color: #ffffff;
}

.usp--numbered-reasons.usp--tone-dark .usp__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.usp--numbered-reasons.usp--tone-light .usp__title {
    color: var(--color-primary);
}

.usp--numbered-reasons.usp--tone-light .usp__subtitle {
    color: #171d2a;
}

@media ( max-width: 960px ) {
    .usp__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usp--numbered-reasons .usp__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media ( max-width: 768px ) {
    .usp {
        padding: var(--gap-l) var(--gap-m);
    }

    .usp__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100% !important;
    }

    .usp__title {
        font-size: clamp(2.2rem, 11vw, 2.8rem);
    }

    .usp__subtitle {
        font-size: 0.85rem;
    }

    .usp--numbered-reasons .usp__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .usp--numbered-reasons .usp__section-title {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }
}
