.pv-testimonials-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 2rem 5rem;

    border-radius: 2.5rem;
    overflow: hidden;
    margin-bottom: 5rem;

    transform-style: preserve-3d;
    perspective: 2000px;

    isolation: isolate;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pv-testimonials-title {
    text-align: center;
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 5.5rem;
    background: linear-gradient(45deg, #0d6efd 0%, #4991ff 50%, #0d6efd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0d6efd;
    position: relative;
    text-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pv-testimonials-title::before {
    content: "";
    position: absolute;
    top: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #0d6efd;
    box-shadow: 0 0 30px rgba(13, 110, 253, 0.7);
    border-radius: 3px;
}

.pv-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -1.8rem;
    left: 50%;
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, rgba(13,110,253,0) 0%, rgba(13,110,253,0.8) 50%, rgba(13,110,253,0) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
}

.pv-testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    padding: 0 1.5rem;
    transform-style: preserve-3d;
    margin-bottom: 3rem;
    width: 100%;
}

.pv-testimonial {
    position: relative;
    background: rgba(8, 10, 20, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 1.5rem;
    padding: 4rem;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(13, 110, 253, 0.15),
        0 0 0 1px rgba(13, 110, 253, 0.12) inset;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(13, 110, 253, 0.1);
    overflow: hidden;
    z-index: 2;
    transform: translateZ(0);
    color: #fff;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0% 100%
    );
    max-width: 650px;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 25, 0.85) 0%, 
        rgba(13, 20, 40, 0.95) 100%);
}

.pv-testimonial:hover {
    transform: translateY(-20px) scale(1.05) rotateX(8deg) rotateY(-4deg);
    box-shadow: 
        0 45px 85px rgba(0, 0, 0, 0.5),
        0 25px 40px rgba(13, 110, 253, 0.2),
        0 0 0 1px rgba(13, 110, 253, 0.25) inset,
        0 0 40px rgba(13, 110, 253, 0.15);
    background: linear-gradient(135deg, 
        rgba(13, 20, 40, 0.9) 0%, 
        rgba(13, 25, 50, 0.98) 100%);
}

.pv-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
        rgba(13, 110, 253, 0.15),
        transparent 60%);
    z-index: 0;
}

.pv-testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(13, 110, 253, 0.1) 0%, 
        rgba(13, 110, 253, 0) 40%);
    z-index: 0;
    pointer-events: none;
}

.pv-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.pv-testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 2rem;
    border: 2px solid rgba(13, 110, 253, 0.4);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 0 6px rgba(8, 10, 20, 0.9);
    position: relative;
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateZ(20px) rotate(-3deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        0% 100%
    );
}

.pv-testimonial:hover .pv-testimonial-avatar {
    transform: translateZ(35px) rotate(0deg);
    box-shadow: 
        0 25px 40px rgba(0, 0, 0, 0.6),
        0 0 0 6px rgba(8, 10, 20, 0.9),
        0 0 30px rgba(13, 110, 253, 0.4);
    border-color: rgba(13, 110, 253, 0.8);
}

.pv-testimonial-avatar-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(13, 110, 253, 0.4);
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.3));
}

.pv-testimonial-meta {
    flex-grow: 1;
    transform: translateZ(5px);
}

.pv-testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: 0px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffffff 20%, #0d6efd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
}

.pv-testimonial:hover .pv-testimonial-name {
    background: linear-gradient(45deg, #0d6efd 0%, #4991ff 50%, #0d6efd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(13, 110, 253, 0.5);
    letter-spacing: 1px;
}

.pv-testimonial-company {
    font-size: 1rem;
    color: rgba(13, 110, 253, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pv-testimonial-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 0.4rem;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.pv-testimonial-rating {
    display: none;
}

.pv-testimonial-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pv-testimonial-quote {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 2.5rem 0 2rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    flex-grow: 1;
    transform: translateZ(10px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.3px;
    padding: 2.5rem 2rem;
    background: rgba(13, 110, 253, 0.05);
    border-left: 4px solid #0d6efd;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.12),
        0 3px 6px rgba(0, 0, 0, 0.08);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        95% 100%,
        0 100%
    );
    background: linear-gradient(135deg,
        rgba(13, 110, 253, 0.03) 0%,
        rgba(13, 110, 253, 0.08) 100%);
}

.pv-testimonial:hover .pv-testimonial-quote {
    transform: translateZ(20px) translateY(-3px);
    color: #ffffff;
    background: rgba(13, 110, 253, 0.08);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.18),
        0 5px 10px rgba(0, 0, 0, 0.1),
        0 0 25px rgba(13, 110, 253, 0.12);
    border-left-color: #0d6efd;
}

.pv-testimonial-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4px;
    width: 4px;
    height: 50px;
    background: #0d6efd;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.8);
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pv-testimonial:hover .pv-testimonial-quote::before {
    height: 100px;
    box-shadow: 0 0 30px rgba(13, 110, 253, 1);
}

.pv-testimonial-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, #0d6efd 0%, #3d8bfd 100%);
    color: #ffffff;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transform: translateZ(20px) rotate(3deg);
    border: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        90% 100%,
        0 100%
    );
}

.pv-testimonial:hover .pv-testimonial-badge {
    transform: translateZ(25px) rotate(0deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(13, 110, 253, 0.3);
}

.pv-testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    transform: translateZ(5px);
}

.pv-testimonial-reactions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pv-reaction {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 0.3rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pv-reaction:hover {
    background: rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
    color: rgba(13, 110, 253, 0.9);
}

.pv-reaction i {
    margin-right: 0.4rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
}

.pv-reaction:hover i {
    transform: scale(1.3);
    color: #0d6efd;
}

.pv-reaction-count {
    font-weight: 600;
    position: relative;
}

.pv-testimonial-highlight {
    position: relative;
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(13, 110, 253, 0.08);
    border: none;
    border-radius: 0;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #ffffff;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(13, 110, 253, 0.15) inset;
    transform: translateZ(15px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    letter-spacing: 0.3px;
    font-size: 1.05rem;
    line-height: 1.7;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        0% 100%
    );
}

.pv-testimonial:hover .pv-testimonial-highlight {
    transform: translateZ(25px) translateY(-5px);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(13, 110, 253, 0.25) inset,
        0 0 30px rgba(13, 110, 253, 0.1);
    background: rgba(13, 110, 253, 0.12);
}

.pv-testimonial.featured {
    border: 1px solid rgba(13, 110, 253, 0.35);
    background: linear-gradient(135deg, 
        rgba(20, 20, 28, 0.95) 0%, 
        rgba(10, 10, 15, 0.98) 100%);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(13, 110, 253, 0.25) inset,
        0 5px 20px rgba(13, 110, 253, 0.15) inset;
    transform: translateZ(15px);
}

.pv-testimonial.featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent rgba(13, 110, 253, 0.8) transparent transparent;
    z-index: 1;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.pv-testimonial.featured .pv-testimonial-badge {
    background: linear-gradient(45deg, #0a1a3a 0%, #0d3b7a 100%);
    color: #ffffff;
    border: none;
}

.pv-testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 10;
    padding-bottom: 1rem;
    transform-style: preserve-3d;
    width: 100%;
    max-width: 500px;
}

.pv-nav-btn {
    border: none;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.35),
        0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: rgba(13, 110, 253, 0.8);
    font-size: 1.3rem;
    transform: translateZ(10px);
    clip-path: polygon(
        0% 0%,
        100% 0%,
        100% 70%,
        85% 100%,
        0% 100%
    );
}

.pv-nav-btn:hover {
    transform: scale(1.2) translateY(-8px) translateZ(20px);
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(13, 110, 253, 0.3);
}

.pv-nav-btn:active {
    transform: scale(1.1) translateY(-4px) translateZ(15px);
    transition-duration: 0.1s;
}

.pv-nav-dots {
    display: flex;
    gap: 0.8rem;
}

.pv-nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(13, 110, 253, 0.25);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.3) inset;
    transform: translateZ(5px) rotate(45deg);
}

.pv-nav-dot.active {
    background: rgba(13, 110, 253, 0.9);
    border-color: rgba(13, 110, 253, 0.9);
    transform: scale(1.5) translateZ(10px) rotate(45deg);
    box-shadow: 
        0 8px 15px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(13, 110, 253, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.pv-nav-dot:hover {
    background: rgba(13, 110, 253, 0.6);
    border-color: rgba(13, 110, 253, 0.6);
    transform: scale(1.3) translateZ(8px) rotate(45deg);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(13, 110, 253, 0.4);
}

.pv-testimonial-animation {
    position: absolute;
    width: 300px;
    height: 300px;
    clip-path: polygon(
        0% 15%,
        15% 0%,
        85% 0%,
        100% 15%,
        100% 85%,
        85% 100%,
        15% 100%,
        0% 85%
    );
    background: radial-gradient(circle, 
        rgba(13, 110, 253, 0.12) 0%, 
        rgba(13, 110, 253, 0.03) 50%,
        rgba(13, 110, 253, 0) 80%);
    filter: blur(60px);
    z-index: 0;
    animation: float 15s ease-in-out infinite;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

.pv-anim-1 {
    top: -80px;
    left: 10%;
    width: 400px;
    height: 400px;
    animation-delay: 0s;
    background: radial-gradient(circle, 
        rgba(13, 110, 253, 0.08) 0%, 
        rgba(13, 110, 253, 0.02) 50%,
        rgba(13, 110, 253, 0) 80%);
}

.pv-anim-2 {
    bottom: -120px;
    right: 10%;
    width: 500px;
    height: 500px;
    animation-delay: -4s;
    background: radial-gradient(circle, 
        rgba(65, 135, 255, 0.05) 0%, 
        rgba(65, 135, 255, 0.02) 50%,
        rgba(65, 135, 255, 0) 80%);
    clip-path: polygon(
        20% 0%, 
        80% 0%, 
        100% 20%, 
        100% 80%, 
        80% 100%, 
        20% 100%, 
        0% 80%, 
        0% 20%
    );
}

.pv-anim-3 {
    top: 40%;
    left: 60%;
    width: 250px;
    height: 250px;
    animation-delay: -2s;
    animation-duration: 15s;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.01) 50%,
        rgba(255, 255, 255, 0) 80%);
    clip-path: polygon(
        50% 0%, 
        100% 50%, 
        50% 100%, 
        0% 50%
    );
}

.pv-testimonials-branding {
    position: absolute;
    bottom: 20px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateZ(5px);
}

.pv-testimonials-branding:hover {
    opacity: 1;
    transform: translateZ(10px) scale(1.05);
}

.pv-logo {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(36%) sepia(82%) saturate(2539%) hue-rotate(210deg) brightness(101%) contrast(101%);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pv-testimonials-branding:hover .pv-logo {
    filter: brightness(0) saturate(100%) invert(36%) sepia(82%) saturate(2539%) hue-rotate(210deg) brightness(130%) contrast(101%);
    transform: scale(1.1) rotate(5deg);
}

.pv-testimonials-branding span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.pv-testimonials-branding:hover span {
    color: #0d6efd;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.9), 0 0 10px rgba(13, 110, 253, 0.4);
}

@keyframes float {
    0% {
        transform: translatey(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        transform: translatey(-30px) rotate(5deg);
        opacity: 0.9;
    }
    75% {
        opacity: 0.6;
    }
    100% {
        transform: translatey(0) rotate(0deg);
        opacity: 0.7;
    }
}

.client-banner-section {
    background: linear-gradient(to right, 
        rgba(12, 12, 15, 0) 0%, 
        rgba(12, 12, 15, 1) 15%, 
        rgba(12, 12, 15, 1) 85%, 
        rgba(12, 12, 15, 0) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border-top: 1px solid rgba(13, 110, 253, 0.1);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.scrolling-banner-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.scrolling-banner-container::before,
.scrolling-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}


.scrolling-banner {
    display: flex;
    animation: scroll 60s linear infinite;
    gap: 6rem;
}

.client-banner-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.client-banner-item:hover {
    transform: scale(1.15) translateY(-10px);
    filter: drop-shadow(0 15px 20px rgba(255, 202, 40, 0.15));
}

.client-logo {
    max-height: 90px;
    width: auto;
    filter: grayscale(100%) brightness(0.7) sepia(10%) hue-rotate(10deg);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.client-banner-item:hover .client-logo {
    filter: grayscale(0) brightness(1.1);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 3rem));
    }
}

@media (max-width: 1400px) {
    .pv-testimonials-grid {
        gap: 1.5rem;
    }

    .pv-testimonial {
        padding: 3rem;
    }
}



@media (max-width: 992px) {
    .pv-testimonials-grid {
        flex-direction: column;
    }
    
    .pv-testimonials-container {
        padding: 3rem 1rem;
    }
    
    .pv-testimonials-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .client-logo {
        max-height: 60px;
    }
    
    .scrolling-banner {
        gap: 3rem;
    }
    
    .pv-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pv-testimonials-title {
        font-size: 2.2rem;
    }
    
    .pv-testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    .pv-testimonial {
        padding: 2rem;
    }
    
    .pv-testimonials-container {
        border-radius: 1rem;
        margin-bottom: 3rem;
    }
    
    .pv-testimonial-quote {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .pv-testimonials-title {
        font-size: 1.8rem;
    }
    
    .pv-testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .pv-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .pv-testimonial-badge {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .client-banner-section {
        padding: 3rem 0;
    }
    
    .pv-testimonial.featured::after {
        border-width: 0 40px 40px 0;
    }
}

.pv-fade-in {
    animation: fadeIn 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    opacity: 0;
    transform: perspective(1500px);
    will-change: transform, opacity;
}

.pv-fade-in { animation-delay: 0.6s; }

@keyframes fadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(40px) rotateX(15deg) scale(0.95); 
        filter: blur(8px);
    }
    20% {
        opacity: 0.4;
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0) scale(1); 
        filter: blur(0);
    }
}

.pulse-effect {
    animation: pulseEffect 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pulseEffect {
    0% { transform: scale(1); }
    40% { transform: scale(1.3); }
    60% { transform: scale(0.95); }
    80% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pv-reaction.active {
    background: rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.4);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(13, 110, 253, 0.4) inset,
        0 0 15px rgba(13, 110, 253, 0.1);
}

.pv-reaction.active[data-type="helpful"] i {
    color: #0d6efd;
}

.pv-reaction.active[data-type="agree"] i {
    color: #4caf50;
}

.pv-reaction.active[data-type="love"] i {
    color: #ff5252;
}
