/* Block: pp-v2-testimonials
 * Extracted from css/product-solutions-v2.css + css/agent-accounts-2026.css
 * Variables and the legacy section-padding neutralizer are scoped to the
 * block root (.pp-v2-testimonials) so each block is self-contained and configurable.
 */

.pp-v2-testimonials {
    --pp-black: #000000;
    --pp-dark: #151515;
    --pp-dark-card: #212121;
    --pp-dark-bg: #1f1f1f;
    --pp-border-dark: #404040;
    --pp-border-light: #d8d8d8;
    --pp-green: #1ea482;
    --pp-green-bold: #0b9b8a;
    --pp-gray: #8e8e8e;
    --pp-gray-light: #d8d8d8;
    --pp-white: #ffffff;
    --pp-beige: #fafafa;
    --pp-content-max: 1200px;
    --pp-font-heading: "Manrope", sans-serif;
    --pp-font-body: "Inter", sans-serif;
    --pp-font-mono: "Inconsolata", "JetBrains Mono", monospace;
}

.pp-v2-testimonials:not(.container) {
    padding: var(--pp-section-pad, 0px) !important;
}

.pp-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--pp-font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.2px;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.pp-v2-btn:hover {
    opacity: 0.85;
}

.pp-v2-btn--primary {
    background: var(--pp-black);
    color: var(--pp-white);
    border: none;
    min-width: 186px;
}

.pp-v2-btn.pp-v2-btn--primary:hover {
    background: var(--pp-black);
    color: var(--pp-white);
    opacity: 1;
    animation: pp-v2-btn-bounce 0.45s ease;
}

@keyframes pp-v2-btn-bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-4px);
    }

    55% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}

.pp-v2-btn--outline {
    background: transparent;
    color: var(--pp-black);
    border: 2px solid var(--pp-black);
    background-color: var(--pp-white);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.pp-v2-btn.pp-v2-btn--outline:hover {
    background-color: var(--pp-black);
    color: var(--pp-white);
    border-color: var(--pp-black);
    opacity: 1;
}

.pp-v2-green-text {
    color: var(--pp-green-bold);
    font-weight: 700;
}

.pp-v2-green-text--soft {
    color: var(--pp-green);
    font-weight: inherit;
}

.pp-v2-testimonials {
    background: var(--pp-beige);
    padding: 0;
}

.pp-v2-testimonials__container {
    max-width: var(--pp-content-max);
    margin: 0 auto;
    padding: 68px 0 90px;
    border-left: 1px solid var(--pp-border-light);
    border-right: 1px solid var(--pp-border-light);
}

.pp-v2-testimonials__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 48px;
}

.pp-v2-testimonials__header h2 {
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 40px;
    line-height: 55px;
    letter-spacing: -1px;
    color: var(--pp-black);
}

.pp-v2-testimonials__header h2 strong {
    font-weight: 700;
}

.pp-v2-testimonials__subtitle {
    font-family: var(--pp-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #666;
    margin: 0;
}

.pp-v2-testimonials__layout {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--pp-border-light);
    border-bottom: 1px solid var(--pp-border-light);
    border-radius: 0;
    background: white;
}

.pp-v2-testimonials__logos {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--pp-border-light);
}

.pp-v2-testimonials__logo-tab {
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--pp-black);
    background: none;
    border: none;
    border-bottom: 1px solid var(--pp-border-light);
    padding: 0 24px;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    opacity: 0.5;
}

.pp-v2-testimonials__logo-tab:last-child {
    border-bottom: none;
}

.pp-v2-testimonials__logo-tab:hover {
    background: #f7f7f7;
}

.pp-v2-testimonials__logo-tab.active {
    opacity: 1;
}

.pp-v2-testimonials__logo-img {
    height: auto;
    width: auto;
    max-width: 145px;
    object-fit: contain;
    display: block;
}

.pp-v2-testimonials__panels {
    flex: 1;
    padding: 0;
}

.pp-v2-testimonials__panel {
    display: none;
    padding: 30px 50px 36px;
}

.pp-v2-testimonials__panel.active {
    display: block;
    animation: sp26TestimonialIn 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
    .pp-v2-testimonials__panel.active {
        animation: none;
    }
}

.pp-v2-testimonials__headline {
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
    color: var(--pp-black);
    margin: 0 0 30px;
}

.pp-v2-testimonials__body {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.pp-v2-testimonials__body + a.pp-v2-btn.pp-v2-btn--outline {
    position: relative;
    top: -40px;
}

.pp-v2-testimonials__stats {
    display: flex;
    gap: 0;
    min-width: 363px;
}

.pp-v2-testimonials__stat {
    padding: 0 30px 0 0;
    border-right: 1px solid var(--pp-border-light);
    margin-right: 30px;
}

.pp-v2-testimonials__stat:last-child {
    border-right: none;
    margin-right: 0;
}

.pp-v2-testimonials__stat-value {
    font-family: var(--pp-font-heading);
    font-weight: 800;
    font-size: 34px;
    text-wrap: nowrap;
    line-height: 1;
    color: var(--pp-green);
    display: block;
    margin-bottom: 8px;
}

.pp-v2-testimonials__stat-label {
    font-family: var(--pp-font-heading);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--pp-black);
    display: block;
    max-width: 152px;
}

.pp-v2-testimonials__quote-block blockquote {
    font-family: var(--pp-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #333;
    margin: 0 0 16px;
    padding: 0;
    border: none;
}

.pp-v2-testimonials:not(.sp26-v2-testimonials) .pp-v2-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pp-v2-testimonials:not(.sp26-v2-testimonials)
    .pp-v2-testimonials__author-photo {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

.pp-v2-testimonials:not(.sp26-v2-testimonials)
    .pp-v2-testimonials__author-photo
    img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-v2-testimonials__author-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.pp-v2-testimonials__author-info strong {
    font-family: var(--pp-font-heading);
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    color: var(--pp-black);
}

.pp-v2-testimonials__author-info span {
    font-family: var(--pp-font-body);
    font-weight: 400;
    font-size: 11px;
    color: #666;
}

@media (max-width: 1024px) {
    .pp-v2-testimonials__layout {
        flex-direction: column;
    }

    .pp-v2-testimonials__logos {
        flex: none;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--pp-border-light);
        overflow-x: auto;
        padding-top: 4px;
    }

    .pp-v2-testimonials__logo-tab {
        border-bottom: none;
        border-right: 1px solid var(--pp-border-light);
        flex: 0 0 25%;
        text-align: center;
        justify-content: center;
        font-size: 14px;
        padding: 16px 12px;
        min-height: 72px;
    }

    .pp-v2-testimonials__logo-tab.active {
        border-left: none;
        border-bottom: 3px solid var(--pp-green);
        box-shadow: none;
    }

    .pp-v2-testimonials__body {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .pp-v2-hero__buttons .pp-v2-btn {
        flex: 1 1 auto;
        padding: 12px 24px;
    }

    .pp-v2-testimonials__header h2 {
        font-size: 28px;
        line-height: 38px;
    }

    .pp-v2-testimonials__stats {
        flex: none;
        width: 100%;
        gap: 20px;
    }

    .pp-v2-testimonials__stat {
        min-height: 116px;
        padding: 20px;
        margin-right: 0;
    }

    .pp-v2-testimonials__quote-block {
        width: 100%;
        padding-left: 0;
        padding-top: 28px;
        border-left: none;
        border-top: 1px solid var(--pp-border-light);
    }
}

@media (max-width: 1024px) {
    .pp-v2-hero__buttons .pp-v2-btn {
        width: 100%;
        max-width: 320px;
    }

    .pp-v2-testimonials__logos {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-right: none;
        border-bottom: 1px solid var(--pp-border-light);
        padding: 0 16px;
    }

    .pp-v2-testimonials__logo-tab {
        flex: 0 0 auto;
        min-width: 140px;
        border-right: 1px solid var(--pp-border-light);
        border-bottom: none;
        min-height: 60px;
        justify-content: center;
        text-align: center;
    }

    .pp-v2-testimonials__logo-tab.active {
        border-bottom: 3px solid var(--pp-green);
        box-shadow: none;
    }

    .pp-v2-testimonials__panel {
        padding: 32px 20px;
    }

    .pp-v2-testimonials__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 1024px) {
    .pp-v2-testimonials__body + a.pp-v2-btn.pp-v2-btn--outline {
        top: 0;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .pp-v2-hero--agentic .pp-v2-hero__buttons .pp-v2-btn {
        width: 100%;
    }
}

@keyframes sp26TestimonialIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp26-v2-testimonials__footer .pp-v2-btn.pp-v2-btn--primary:hover {
    background: var(--pp-white);
    color: var(--pp-black);
}
/* Sales & CRM vertical ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â dark clickable testimonial module */
.sp26-v2-testimonials {
    background: #000;
    --pp-section-pad: 0;
    -webkit-font-smoothing: antialiased;
}

.sp26-v2-testimonials .pp-v2-testimonials__container {
    max-width: 1200px;
    padding: 0;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
}

.sp26-v2-testimonials .pp-v2-testimonials__header {
    padding: 66px 40px 58px;
    margin: 0;
    border-bottom: 1px solid #222;
}

.sp26-v2-testimonials .pp-v2-testimonials__header h2 {
    color: #fff;
    font-size: 40px;
    line-height: 42px;
    font-weight: 600;
    letter-spacing: -1.2px;
    margin: 0 0 10px;
}

.sp26-v2-testimonials .pp-v2-testimonials__header h2 .pp-v2-green-text--soft {
    color: var(--pp-green-bold);
    font-weight: 700;
}

.sp26-v2-testimonials .pp-v2-testimonials__subtitle {
    color: #fff;
    font-size: 18px;
    line-height: 21px;
}

.sp26-v2-testimonials .pp-v2-testimonials__layout {
    min-height: 350px;
    background: #000;
    border-top: none;
    border-bottom: 1px solid #222;
}

.sp26-v2-testimonials .pp-v2-testimonials__logos {
    flex: 0 0 239px;
    border-right: 1px solid #282828;
    padding: 25px 0 24px;
}

.sp26-v2-testimonials .pp-v2-testimonials__logo-tab {
    min-height: 58px;
    justify-content: flex-start;
    padding: 15px 54px;
    border: 0;
    color: #fff;
    opacity: 0.22;
    background: transparent;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        filter 0.22s ease;
}

.sp26-v2-testimonials .pp-v2-testimonials__logo-tab:hover,
.sp26-v2-testimonials .pp-v2-testimonials__logo-tab.active {
    background: transparent;
    opacity: 1;
    transform: translateX(2px);
    filter: none;
}

.sp26-v2-testimonials .pp-v2-testimonials__panels {
    position: relative;
    min-height: 350px;
}

.sp26-v2-testimonials .pp-v2-testimonials__panel {
    display: none;
    padding: 29px 42px 30px 48px;
}

.sp26-v2-testimonials .pp-v2-testimonials__panel.active {
    display: block;
    animation: sp26TestimonialIn 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sp26-v2-testimonials .pp-v2-testimonials__headline {
    max-width: 640px;
    color: #f3f3f3;
    font-size: 24px;
    line-height: 31px;
    font-weight: 700;
    letter-spacing: -0.65px;
    margin: 0 0 36px;
}

.sp26-v2-testimonials .pp-v2-testimonials__body {
    align-items: flex-start;
    gap: 79px;
    margin-bottom: 0;
}

.sp26-v2-testimonials .pp-v2-testimonials__stats {
    min-width: 252px;
}

.sp26-v2-testimonials .pp-v2-testimonials__stat {
    min-width: 126px;
    padding-right: 25px;
    margin-right: 25px;
}

.sp26-v2-testimonials .pp-v2-testimonials__stat {
    border-color: #404040;
}

.sp26-v2-testimonials .pp-v2-testimonials__stat-value {
    color: var(--pp-green-bold);
    font-size: 32px;
    line-height: 36px;
    font-weight: 800;
    letter-spacing: -0.75px;
    margin-bottom: 8px;
}

.sp26-v2-testimonials .pp-v2-testimonials__stat-label {
    max-width: 100px;
    color: #fff;
    font-family: var(--pp-font-body);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.sp26-v2-testimonials .pp-v2-testimonials__quote-block {
    max-width: 383px;
    padding-top: 4px;
}

/* When a testimonial has no stats, keep the quote in the same spot
   as if the stats column (min-width 252px + 79px gap) were present. */
.sp26-v2-testimonials
    .pp-v2-testimonials__body
    > .pp-v2-testimonials__quote-block:first-child {
    margin-left: 331px;
}

.sp26-v2-testimonials .pp-v2-testimonials__quote-block blockquote {
    color: #fff;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: -0.42px;
    margin-bottom: 28px;
}

.sp26-v2-testimonials .pp-v2-testimonials__author {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.sp26-v2-testimonials .pp-v2-testimonials__author-photo {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 34%, #ffd5b8 0 18%, transparent 19%),
        radial-gradient(circle at 50% 108%, #171f28 0 39%, transparent 40%),
        linear-gradient(135deg, #c4f3ff, #168c80);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 22%);
}

.sp26-v2-testimonials .pp-v2-testimonials__author-photo img {
    border-radius: 50%;
}

.sp26-v2-testimonials .pp-v2-testimonials__author-info strong {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 800;
}

.sp26-v2-testimonials .pp-v2-testimonials__author-info span {
    color: #b7b7b7;
    font-size: 11px;
    line-height: 12px;
}

.sp26-v2-testimonials .pp-v2-btn--outline {
    min-width: 0;
    padding: 10px 19px;
    border: 1px solid #626262;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-family: Poppins;
    line-height: 18px;
    letter-spacing: -0.1px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.sp26-v2-testimonials .pp-v2-btn--outline:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
    opacity: 1;
}

.sp26-v2-testimonials__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
    min-height: 122px;
}

.sp26-v2-testimonials__footer p {
    margin: 0;
    color: #fff;
    font-family: var(--pp-font-body);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.38px;
}

.sp26-v2-testimonials__footer .pp-v2-btn--primary {
    min-width: 126px;
    padding: 9px 21px;
    background: #fff;
    color: #000;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.12px;
    box-shadow: 0 0 0 1px rgb(255 255 255 / 50%);
}

@keyframes sp26TestimonialIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .sp26-v2-testimonials .pp-v2-testimonials__header {
        padding: 48px 28px 40px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__layout {
        min-height: 0;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__logos {
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #282828;
        padding: 0 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab {
        flex: 0 0 auto;
        min-width: 164px;
        justify-content: center;
        padding: 14px 18px;
        border-right: 1px solid #282828;
    }

    /* Full-width mobile tabs: drop the desktop translateX nudge so the
       active tab can't bleed 2px past the edge and trigger a horizontal scrollbar. */
    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab:hover,
    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab.active {
        transform: none;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab.active {
        border-bottom: 3px solid var(--pp-green-bold);
    }

    .sp26-v2-testimonials .pp-v2-testimonials__panels {
        min-height: 0;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__panel {
        padding: 34px 30px 38px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__body {
        gap: 34px;
    }

    .sp26-v2-testimonials
        .pp-v2-testimonials__body
        > .pp-v2-testimonials__quote-block:first-child {
        margin-left: 286px;
    }
}

@media (max-width: 768px) {
    .sp26-v2-testimonials .pp-v2-testimonials__header h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__body {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .sp26-v2-testimonials
        .pp-v2-testimonials__body
        > .pp-v2-testimonials__quote-block:first-child {
        margin-left: 0;
        padding-top: 0;
        border-top: 0;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__stats {
        width: 100%;
        min-width: 0;
        gap: 0;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__stat {
        flex: 1;
        min-height: 0;
        min-width: 0;
        padding: 0 20px 0 0;
        margin-right: 20px;
        border-right: 1px solid #343434;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__quote-block {
        max-width: none;
        width: 100%;
        padding-top: 26px;
        border-top: 1px solid #282828;
    }

    .sp26-v2-testimonials__footer {
        flex-direction: column;
        gap: 18px;
        padding: 28px 24px;
        text-align: center;
    }
}

@media (max-width: 555px) {
    .sp26-v2-testimonials .pp-v2-testimonials__header {
        padding: 40px 22px 34px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab {
        justify-content: flex-start;
        min-width: 0;
        padding: 16px 24px;
        border-right: 0;
        border-bottom: 1px solid #282828;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__logo-tab.active {
        border-bottom: 1px solid #282828;
        box-shadow: inset 4px 0 0 var(--pp-green-bold);
    }

    .sp26-v2-testimonials .pp-v2-testimonials__panel {
        padding: 30px 22px 34px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__headline {
        font-size: 22px;
        line-height: 29px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__stats {
        flex-direction: column;
        gap: 18px;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__stat {
        padding: 0 0 18px;
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid #343434;
    }

    .sp26-v2-testimonials .pp-v2-testimonials__stat:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }
}
