.swipe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.row-testimonials {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease-out;
    touch-action: pan-y;
    padding: 0 calc(50% - 190px);
}

.rc-group {
    position: relative;
    width: 380px;
    flex-shrink: 0;
}

.rc-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #0f172a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.rc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.1);
}

.rc-glow-top,
.rc-glow-bottom {
    position: absolute;
    height: 128px;
    width: 128px;
    border-radius: 50%;
    filter: blur(40px);
    transition: all 0.5s ease;
}

.rc-glow-top {
    top: -64px;
    left: -64px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), transparent);
}

.rc-glow-bottom {
    bottom: -64px;
    right: -64px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.2), transparent);
}

.rc-group:hover .rc-glow-top,
.rc-group:hover .rc-glow-bottom {
    transform: scale(1.5);
    opacity: 0.7;
}

.rc-content {
    position: relative;
    padding: 24px;
}

.rc-header-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    color: rgba(99, 102, 241, 0.1);
}

.rc-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-top: 16px;
    margin-bottom: 8px;
}

.rc-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}

.rc-avatar-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.rc-avatar-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: linear-gradient(to right, #818df800, #c084fc00);
    opacity: 0.75;
    filter: blur(4px);
    transition: opacity 0.3s ease;
}

.rc-group:hover .rc-avatar-glow {
    opacity: 1;
}

.rc-avatar {
    position: relative;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-avatar svg {
    width: 100%;
    height: 100%;
    color: #818cf8;
}

.rc-user-info {
    flex: 1;
}

.rc-user-info h4 {
    font-weight: 600;
    color: white;
    font-size: 14px;
}

.rc-user-info p {
    font-size: 12px;
    color: #94a3b8;
}

.rc-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
    margin-left: auto;
}

.rc-verified svg {
    width: 16px;
    height: 16px;
    color: #818cf8;
}

.rc-verified span {
    font-size: 12px;
    font-weight: 500;
    color: #818cf8;
}

.rc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
    justify-content: flex-end;
}

.rc-stat-item {
    background: rgba(60, 91, 163, 0.5);
    border-radius: 12px;
    grid-column: 3;
    width: 100%;
    height: 60px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rc-stat-item:hover {
    background: rgba(60, 91, 163, 0.7);
}

.rc-stat-item svg {
    width: 20px;
    height: 20px;
    color: #818cf8;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

.rc-stat-value {
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-left: 4px;
}

.rc-stat-label {
    font-size: 10px;
    color: #94a3b8;
    margin-top: 4px;
}

.swipe-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #0f172a;
    width: 24px;
    border-radius: 4px;
}