.ragunda-usp {
    background: #1d1d1d;
    padding: 80px 0;
    position: relative;
}

.ragunda-usp__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: ragundaUspFadeIn 0.8s ease-out forwards;
}

@keyframes ragundaUspFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-usp__title {
    font-family: 'Gotkin', var(--ragunda-font, Arial, sans-serif);
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 3rem 0;
    line-height: 1.6;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: ragundaUspTitleFadeIn 0.6s ease-out 0.2s forwards;
}

@keyframes ragundaUspTitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-usp__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.ragunda-usp__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: ragundaUspItemFadeIn 0.6s ease-out forwards;
}

.ragunda-usp__item:nth-child(1) {
    animation-delay: 0.4s;
}

.ragunda-usp__item:nth-child(2) {
    animation-delay: 0.5s;
}

.ragunda-usp__item:nth-child(3) {
    animation-delay: 0.6s;
}

.ragunda-usp__item:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes ragundaUspItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-usp__icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    background: #ffc000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d1d1d;
    opacity: 0;
    transform: scale(0.8);
    animation: ragundaUspIconFadeIn 0.5s ease-out forwards;
}

.ragunda-usp__item:nth-child(1) .ragunda-usp__icon {
    animation-delay: 0.5s;
}

.ragunda-usp__item:nth-child(2) .ragunda-usp__icon {
    animation-delay: 0.6s;
}

.ragunda-usp__item:nth-child(3) .ragunda-usp__icon {
    animation-delay: 0.7s;
}

.ragunda-usp__item:nth-child(4) .ragunda-usp__icon {
    animation-delay: 0.8s;
}

@keyframes ragundaUspIconFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ragunda-usp__icon i {
    font-size: 24px;
    line-height: 1;
}

.ragunda-usp__content {
    flex: 1;
    min-width: 0;
    opacity: 0;
    transform: translateX(10px);
    animation: ragundaUspContentFadeIn 0.5s ease-out forwards;
}

.ragunda-usp__item:nth-child(1) .ragunda-usp__content {
    animation-delay: 0.6s;
}

.ragunda-usp__item:nth-child(2) .ragunda-usp__content {
    animation-delay: 0.7s;
}

.ragunda-usp__item:nth-child(3) .ragunda-usp__content {
    animation-delay: 0.8s;
}

.ragunda-usp__item:nth-child(4) .ragunda-usp__content {
    animation-delay: 0.9s;
}

@keyframes ragundaUspContentFadeIn {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-usp__item-title {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    color: #fff;
}

.ragunda-usp__item-text {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    color: #fff;
    max-width: 100%;
}

.ragunda-usp__item-text p {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}

.ragunda-usp__button-wrap {
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    animation: ragundaUspButtonFadeIn 0.5s ease-out 0.9s forwards;
}

@keyframes ragundaUspButtonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-usp__button {
    display: inline-block;
    border: 2px solid #ffc000;
    border-radius: 10px;
    padding: 0.6em 1.4em;
    background: none;
    color: #ffc000;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    box-shadow: none;
}

.ragunda-usp__button:hover,
.ragunda-usp__button:focus {
    background: #ffc000;
    color: #1d1d1d;
    border-color: #ffc000;
    text-decoration: none !important;
    box-shadow: none;
}

.ragunda-usp__button:after {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ragunda-usp {
        padding: 60px 0;
    }

    .ragunda-usp__title {
        font-size: 24px;
        margin-bottom: 2rem;
    }

    .ragunda-usp__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .ragunda-usp__item {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }

    .ragunda-usp__icon {
        width: 40px;
        height: 40px;
    }

    .ragunda-usp__icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .ragunda-usp {
        padding: 40px 0;
    }

    .ragunda-usp__container {
        padding: 0 1.5rem;
    }

    .ragunda-usp__title {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .ragunda-usp__grid {
        gap: 1rem;
    }

    .ragunda-usp__item {
        gap: 0.6rem;
    }

    .ragunda-usp__icon {
        width: 35px;
        height: 35px;
    }

    .ragunda-usp__icon i {
        font-size: 18px;
    }

    .ragunda-usp__item-title {
        font-size: 13px;
    }

    .ragunda-usp__item-text {
        font-size: 12px;
    }
}