#ReviewsHome {
    display: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#ReviewsHome li {
    list-style: none !important;
}

#reviews {
    padding: 64px 0 52px;
    position: relative;
    overflow: hidden;
}

#reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#reviews .title {
    text-align: center;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
}

#reviews .title h3 {
    font-size: 32px;
    font-weight: 800;
    color: #F1F5F9;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 16px;
    margin: 0;
}

#reviews .title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6);
    border-radius: 2px;
}

#reviews .title h3 i {
    color: #6366F1;
    font-size: 26px;
}

.gs-rv-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 4px 4px 4px;
}

.gs-rv-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gs-rv-slide {
    flex: 0 0 calc(33.333% - 18px);
    margin: 0 9px;
    min-width: 0;
}

.gs-rv-card {
    background: #161B2E;
    border: 1px solid rgba(148,163,184,0.09);
    border-radius: 18px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    height: 100%;
}

.gs-rv-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 72px;
    line-height: 1;
    color: rgba(99,102,241,0.08);
    font-family: Georgia, serif;
    transition: color 0.35s ease;
    pointer-events: none;
}

.gs-rv-card:hover {
    border-color: rgba(99,102,241,0.28);
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(0,0,0,0.38), 0 0 0 1px rgba(99,102,241,0.12);
    background: #1A2038;
}

.gs-rv-card:hover::before {
    color: rgba(99,102,241,0.16);
}

.gs-rv-header {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gs-rv-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.gs-rv-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.gs-rv-meta {
    flex: 1;
    min-width: 0;
}

.gs-rv-name {
    font-size: 15px;
    font-weight: 700;
    color: #F1F5F9;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
}

.gs-rv-stars {
    display: flex;
    gap: 3px;
}

.gs-rv-stars i {
    color: #F59E0B;
    font-size: 11px;
}

.gs-rv-divider {
    height: 1px;
    background: rgba(148,163,184,0.07);
    margin: 0;
}

.gs-rv-text {
    font-size: 13.5px;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.gs-rv-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #6366F1;
    background: rgba(99,102,241,0.09);
    border: 1px solid rgba(99,102,241,0.18);
    border-radius: 7px;
    padding: 5px 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.gs-rv-tag::before {
    content: '✓';
    font-size: 10px;
    color: #10B981;
}

.gs-rv-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.gs-rv-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(148,163,184,0.14);
    background: #161B2E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #94A3B8;
    padding: 0;
    outline: none;
    flex-shrink: 0;
}

.gs-rv-arrow:hover {
    background: #6366F1;
    border-color: #6366F1;
    color: #fff;
    box-shadow: 0 0 18px rgba(99,102,241,0.4);
    transform: scale(1.08);
}

.gs-rv-arrow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gs-rv-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.gs-rv-dot {
    height: 7px;
    width: 7px;
    border-radius: 4px;
    background: rgba(148,163,184,0.2);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    outline: none;
}

.gs-rv-dot.active {
    width: 24px;
    background: #6366F1;
    box-shadow: 0 0 10px rgba(99,102,241,0.55);
}

.gs-rv-dot:hover:not(.active) {
    background: rgba(148,163,184,0.4);
    width: 14px;
}

#reviews .read-more {
    text-align: center;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

#reviews .read-more a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: transparent;
    border: 1.5px solid rgba(99,102,241,0.35);
    border-radius: 12px;
    color: #94A3B8;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

#reviews .read-more a:hover {
    background: rgba(99,102,241,0.08);
    border-color: #6366F1;
    color: #F1F5F9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.15);
}

@media (max-width: 1024px) {
    .gs-rv-slide { flex: 0 0 calc(50% - 18px); }
}

@media (max-width: 640px) {
    #reviews { padding: 48px 0 40px; }
    #reviews .title h3 { font-size: 26px; }
    .gs-rv-slide { flex: 0 0 calc(100% - 18px); }
    .gs-rv-card { padding: 22px 20px 20px; }
}