.reviews-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1150px;
    margin: 0 auto;
}

.reviews-header {
    text-align: center;
    margin-bottom: 55px;
}

.reviews-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 50px;
    background: rgba(168, 85, 247, 0.08);
    color: #c084fc;
    font-size: 14px;
    margin-bottom: 18px;
}

.reviews-header h2 {
    font-size: 38px;
    margin: 0 0 15px;
    color: #fff;
}

.reviews-header h2 span {
    color: #a855f7;
}

.reviews-header p {
    color: #a1a1aa;
    font-size: 16px;
    margin: 0 auto 25px;
}

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    direction: ltr;
}

.reviews-rating strong {
    font-size: 42px;
    color: #fff;
}

.stars,
.review-stars {
    color: #facc15;
    letter-spacing: 3px;
}

.reviews-rating small {
    display: block;
    direction: rtl;
    color: #71717a;
    margin-top: 3px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.45);
    box-shadow: 0 15px 45px rgba(124, 58, 237, 0.15);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    direction: rtl;
    margin-bottom: 22px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-top strong {
    display: block;
    color: #fff;
    font-size: 15px;
}

.review-top span {
    display: block;
    color: #71717a;
    font-size: 12px;
    margin-top: 3px;
}

.review-stars {
    margin-right: auto;
    font-size: 13px;
    white-space: nowrap;
}

.review-card p {
    color: #d4d4d8;
    font-size: 14px;
    line-height: 2;
    margin: 0;
}

.reviews-footer {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #a1a1aa;
    font-size: 14px;
}

.reviews-footer a {
    padding: 11px 22px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transition: 0.3s ease;
}

.reviews-footer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

@media (max-width: 850px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .reviews-section {
        padding: 70px 15px;
    }

    .review-card {
        padding: 22px;
    }

    .review-stars {
        font-size: 11px;
    }
}
