/* =========================================================
   CLICK GROW DIGITAL
   TESTIMONIALS PAGE
   PREMIUM GREEN + OFF-WHITE
========================================================= */


/* =========================================================
   TESTIMONIAL HERO
========================================================= */

.testimonial-hero {

    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 145px 0 90px;

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(34,197,94,.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 5% 85%,
            rgba(34,197,94,.07),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8faf9,
            #ffffff
        );

}


.testimonial-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(34,197,94,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34,197,94,.035) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );

    pointer-events: none;

}


.testimonial-hero-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    gap: 65px;

    align-items: center;

}


.testimonial-hero-content {

    position: relative;

    z-index: 3;

}


.testimonial-hero-content h1 {

    max-width: 760px;

    margin: 24px 0;

    font-size:
        clamp(48px, 5.6vw, 74px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.testimonial-hero-content p {

    max-width: 700px;

    margin: 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   HERO STATS
========================================================= */

.testimonial-hero-stats {

    display: flex;

    align-items: center;

    gap: 35px;

    flex-wrap: wrap;

    margin-top: 38px;

}


.testimonial-hero-stats > div {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.testimonial-hero-stats strong {

    color: #111827;

    font-size: 28px;

    line-height: 1;

}


.testimonial-hero-stats span {

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.testimonial-hero-visual {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.testimonial-orbit {

    position: absolute;

    border:
        1px solid
        rgba(34,197,94,.15);

    border-radius: 50%;

    pointer-events: none;

}


.testimonial-orbit.orbit-one {

    width: 470px;

    height: 470px;

    transform:
        rotate(-20deg)
        scaleY(.62);

    animation:
        testimonialOrbitOne 18s linear infinite;

}


.testimonial-orbit.orbit-two {

    width: 590px;

    height: 590px;

    border-style: dashed;

    border-color:
        rgba(34,197,94,.09);

    transform:
        rotate(25deg)
        scaleY(.43);

    animation:
        testimonialOrbitTwo 25s linear infinite reverse;

}


/* =========================================================
   TESTIMONIAL CORE
========================================================= */

.testimonial-core {

    position: relative;

    z-index: 5;

    width: 220px;

    height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(34,197,94,.15);

    border-radius: 50%;

    background:
        rgba(255,255,255,.78);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 30px 70px
        rgba(15,23,42,.10);

    animation:
        testimonialCoreFloat 5s ease-in-out infinite;

}


.testimonial-stars {

    display: flex;

    gap: 5px;

    margin-bottom: 18px;

}


.testimonial-stars i {

    color: #f59e0b;

    font-size: 15px;

}


.testimonial-core strong {

    color: #111827;

    font-size: 22px;

    letter-spacing: 2px;

    line-height: 1;

}


.testimonial-core span {

    margin-top: 6px;

    color: #16a34a;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;

}


/* =========================================================
   FLOATING REVIEW TAGS
========================================================= */

.floating-review {

    position: absolute;

    z-index: 7;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius: 14px;

    background:
        rgba(255,255,255,.78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.08);

    color: #334155;

    font-size: 10px;

    font-weight: 700;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.floating-review i {

    color: #16a34a;

}


.floating-review:hover {

    transform:
        translateY(-7px)
        scale(1.05);

    border-color:
        rgba(34,197,94,.28);

    box-shadow:
        0 20px 45px
        rgba(22,101,52,.12);

}


.review-one {

    top: 75px;

    left: 6%;

    animation:
        reviewOne 4.5s ease-in-out infinite;

}


.review-two {

    top: 65px;

    right: 8%;

    animation:
        reviewTwo 5s ease-in-out infinite;

}


.review-three {

    bottom: 80px;

    left: 8%;

    animation:
        reviewThree 5.2s ease-in-out infinite;

}


.review-four {

    right: 5%;

    bottom: 75px;

    animation:
        reviewFour 4.8s ease-in-out infinite;

}


/* =========================================================
   CLIENT REVIEWS
========================================================= */

.client-reviews {

    position: relative;

    overflow: hidden;

}


.client-reviews .section-header {

    max-width: 780px;

    margin: 0 auto;

    text-align: center;

}


.client-reviews .section-header h2 {

    margin: 18px 0;

}


.client-reviews .section-header p {

    color: #64748b;

}


.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 24px;

    margin-top: 60px;

}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {

    position: relative;

    overflow: hidden;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 27px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 12px 35px
        rgba(15,23,42,.05);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}


.testimonial-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #16a34a,
            #4ade80
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .4s ease;

}


.testimonial-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 60px
        rgba(15,23,42,.10);

}


.testimonial-card:hover::before {

    transform:
        scaleX(1);

}


/* =========================================================
   TESTIMONIAL CARD TOP
========================================================= */

.testimonial-card-top {

    display: flex;

    align-items: center;

    gap: 12px;

}


.client-avatar {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        #ecfdf3;

    color: #16a34a;

    font-size: 17px;

}


.client-details {

    min-width: 0;

    flex: 1;

}


.client-details h3 {

    margin: 0 0 4px;

    color: #111827;

    font-size: 15px;

    line-height: 1.2;

}


.client-details span {

    display: block;

    color: #64748b;

    font-size: 9px;

    line-height: 1.3;

}


.rating {

    display: flex;

    gap: 2px;

    align-self: flex-start;

    padding-top: 4px;

}


.rating i {

    color: #f59e0b;

    font-size: 8px;

}


/* =========================================================
   QUOTE ICON
========================================================= */

.quote-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        25px 0 16px;

    border-radius: 11px;

    background:
        rgba(236,253,243,.75);

    color: #16a34a;

    font-size: 13px;

}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-text {

    min-height: 100px;

    margin: 0;

    color: #475569;

    font-size: 12px;

    line-height: 1.8;

}


/* =========================================================
   TESTIMONIAL FOOTER
========================================================= */

.testimonial-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 22px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(15,23,42,.06);

}


.testimonial-footer span {

    color: #64748b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.testimonial-footer i {

    color: #16a34a;

    font-size: 10px;

}


/* =========================================================
   FEATURED TESTIMONIAL
========================================================= */

.featured-testimonial {

    border-color:
        rgba(34,197,94,.17);

    background:
        linear-gradient(
            145deg,
            rgba(236,253,243,.70),
            rgba(255,255,255,.50)
        );

}


.testimonial-result {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 16px;

    padding: 11px 13px;

    border:
        1px solid
        rgba(34,197,94,.10);

    border-radius: 12px;

    background:
        rgba(236,253,243,.70);

}


.testimonial-result i {

    color: #16a34a;

    font-size: 12px;

}


.testimonial-result strong {

    color: #166534;

    font-size: 10px;

}


/* =========================================================
   SUCCESS STORIES
========================================================= */

.success-stories {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.15),
            rgba(248,250,249,.80)
        );

}


.success-stories .section-header {

    max-width: 780px;

    margin: 0 auto;

    text-align: center;

}


.success-stories .section-header h2 {

    margin: 18px 0;

}


.success-stories .section-header p {

    color: #64748b;

}


.stories-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    margin-top: 60px;

}


.story-card {

    position: relative;

    overflow: hidden;

    min-height: 290px;

    padding: 32px 24px 27px;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 24px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.story-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.story-number {

    position: absolute;

    top: 15px;

    right: 17px;

    color:
        rgba(22,163,74,.16);

    font-size: 32px;

    font-weight: 850;

}


.story-card > i {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background:
        #ecfdf3;

    color: #16a34a;

    font-size: 17px;

}


.story-card h3 {

    margin: 0 0 12px;

    color: #111827;

    font-size: 18px;

}


.story-card p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.75;

}


.story-category {

    position: absolute;

    left: 24px;

    bottom: 22px;

    color: #16a34a;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1px;

}


/* =========================================================
   IMPACT
========================================================= */

.testimonial-impact {

    position: relative;

    overflow: hidden;

}


.testimonial-impact .section-header {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.testimonial-impact .section-header h2 {

    margin: 18px 0;

}


.testimonial-impact .section-header p {

    color: #64748b;

}


.testimonial-impact .results-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    margin-top: 60px;

}


.testimonial-impact .results-grid .card {

    position: relative;

    padding: 36px 20px;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 25px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.testimonial-impact .results-grid .card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.testimonial-impact .results-grid h2 {

    margin: 0 0 10px;

    color: #16a34a;

    font-size:
        clamp(40px,4vw,56px);

    line-height: 1;

}


.testimonial-impact .results-grid p {

    margin: 0;

    color: #475569;

    font-size: 10px;

    font-weight: 700;

}


/* =========================================================
   VIDEO TESTIMONIALS
========================================================= */

.video-testimonials {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.15),
            rgba(248,250,249,.80)
        );

}


.video-testimonials .section-header {

    max-width: 780px;

    margin: 0 auto;

    text-align: center;

}


.video-testimonials .section-header h2 {

    margin: 18px 0;

}


.video-testimonials .section-header p {

    color: #64748b;

}


.video-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

    margin-top: 60px;

}


.video-card {

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 25px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.video-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.video-screen {

    position: relative;

    height: 225px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(34,197,94,.15),
            transparent 65%
        ),
        linear-gradient(
            135deg,
            #f1fdf5,
            #f8faf9
        );

}


.video-screen::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(34,197,94,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34,197,94,.04) 1px,
            transparent 1px
        );

    background-size: 35px 35px;

}


.video-play {

    position: relative;

    z-index: 2;

    width: 62px;

    height: 62px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.80);

    border-radius: 50%;

    background:
        rgba(255,255,255,.75);

    color: #16a34a;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,.08);

    transition:
        transform .35s ease,
        background .35s ease;

}


.video-card:hover
.video-play {

    transform:
        scale(1.1);

    background:
        rgba(236,253,243,.90);

}


.video-screen > span {

    position: relative;

    z-index: 2;

    margin-top: 14px;

    color: #16a34a;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1.5px;

}


.video-info {

    padding:
        22px 22px 24px;

}


.video-info h3 {

    margin: 0 0 7px;

    color: #111827;

    font-size: 17px;

}


.video-info p {

    margin: 0;

    color: #64748b;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================================================
   WHY CLIENTS
========================================================= */

.why-clients {

    position: relative;

    overflow: hidden;

}


.why-clients .section-header {

    max-width: 760px;

    margin: 0 auto;

    text-align: center;

}


.why-clients .section-header h2 {

    margin: 18px 0;

}


.why-clients .section-header p {

    color: #64748b;

}


.why-clients .why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    margin-top: 60px;

}


.why-clients .card {

    position: relative;

    min-height: 235px;

    padding: 30px 22px;

    text-align: center;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 24px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:
        0 10px 30px
        rgba(15,23,42,.045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

}


.why-clients .card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(34,197,94,.20);

    box-shadow:
        0 25px 55px
        rgba(15,23,42,.08);

}


.why-clients .icon-box {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 20px;

    border-radius: 14px;

    background:
        #ecfdf3;

    color: #16a34a;

    font-size: 18px;

}


.why-clients .card h3 {

    margin: 0 0 10px;

    color: #111827;

    font-size: 17px;

}


.why-clients .card p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   FINAL CTA
========================================================= */

.testimonial-cta {

    position: relative;

    overflow: hidden;

    text-align: center;

}


.testimonial-cta::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.12),
            transparent 70%
        );

    pointer-events: none;

}


.testimonial-cta::after {

    content: "";

    position: absolute;

    bottom: -180px;

    left: -180px;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,197,94,.07),
            transparent 70%
        );

    pointer-events: none;

}


.testimonial-cta .glass {

    position: relative;

    z-index: 2;

    padding: 85px 65px;

    border:
        1px solid
        rgba(255,255,255,.55);

    border-radius: 34px;

    background:
        rgba(255,255,255,.48);

    backdrop-filter: blur(30px);

    -webkit-backdrop-filter: blur(30px);

    box-shadow:
        0 25px 65px
        rgba(15,23,42,.08);

}


.testimonial-cta .section-header {

    max-width: 820px;

    margin: 0 auto;

}


.testimonial-cta h2 {

    margin: 20px 0;

    font-size:
        clamp(38px,4.5vw,58px);

    line-height: 1.08;

    letter-spacing: -2px;

}


.testimonial-cta p {

    max-width: 760px;

    margin:
        0 auto 35px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;

}


.testimonial-cta .hero-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    flex-wrap: wrap;

}


.testimonial-cta .btn,
.testimonial-cta .btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes testimonialOrbitOne {

    from {

        transform:
            rotate(-20deg)
            scaleY(.62);

    }

    to {

        transform:
            rotate(340deg)
            scaleY(.62);

    }

}


@keyframes testimonialOrbitTwo {

    from {

        transform:
            rotate(25deg)
            scaleY(.43);

    }

    to {

        transform:
            rotate(-335deg)
            scaleY(.43);

    }

}


@keyframes testimonialCoreFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

}


@keyframes reviewOne {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


@keyframes reviewTwo {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(8px);

    }

}


@keyframes reviewThree {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(7px);

    }

}


@keyframes reviewFour {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-7px);

    }

}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width:1200px) {

    .testimonial-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stories-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .testimonial-impact .results-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .why-clients .why-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:992px) {

    .testimonial-hero {

        min-height: auto;

        padding:
            125px 0 75px;

    }


    .testimonial-hero-grid {

        grid-template-columns: 1fr;

        gap: 25px;

        text-align: center;

    }


    .testimonial-hero-content {

        max-width: 780px;

        margin: 0 auto;

    }


    .testimonial-hero-content p {

        margin-left: auto;

        margin-right: auto;

    }


    .testimonial-hero-stats {

        justify-content: center;

    }


    .testimonial-hero-visual {

        min-height: 450px;

    }


    .testimonial-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .video-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px) {

    .testimonial-hero {

        padding:
            105px 0 55px;

    }


    .testimonial-hero-content h1 {

        font-size: 45px;

        letter-spacing: -2px;

    }


    .testimonial-hero-content p {

        font-size: 14px;

    }


    .testimonial-hero-stats {

        gap: 22px;

    }


    .testimonial-hero-stats strong {

        font-size: 24px;

    }


    .testimonial-hero-stats span {

        font-size: 9px;

    }


    .testimonial-hero-visual {

        min-height: 380px;

    }


    .testimonial-orbit.orbit-one {

        width: 340px;

        height: 340px;

    }


    .testimonial-orbit.orbit-two {

        width: 430px;

        height: 430px;

    }


    .testimonial-core {

        width: 170px;

        height: 170px;

    }


    .testimonial-stars {

        margin-bottom: 13px;

    }


    .testimonial-stars i {

        font-size: 11px;

    }


    .testimonial-core strong {

        font-size: 18px;

    }


    .floating-review {

        padding:
            8px 10px;

        font-size: 8px;

    }


    .review-one {

        top: 45px;

        left: 0;

    }


    .review-two {

        top: 35px;

        right: 0;

    }


    .review-three {

        bottom: 40px;

        left: 0;

    }


    .review-four {

        right: 0;

        bottom: 35px;

    }


    .testimonial-grid {

        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 45px;

    }


    .testimonial-card {

        padding: 24px;

        border-radius: 23px;

    }


    .testimonial-text {

        min-height: auto;

    }


    .stories-grid {

        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 45px;

    }


    .story-card {

        min-height: 255px;

    }


    .testimonial-impact .results-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 12px;

        margin-top: 45px;

    }


    .testimonial-impact .results-grid .card {

        padding:
            28px 15px;

    }


    .testimonial-impact .results-grid h2 {

        font-size: 42px;

    }


    .video-grid {

        grid-template-columns: 1fr;

        gap: 15px;

        margin-top: 45px;

    }


    .video-screen {

        height: 220px;

    }


    .why-clients .why-grid {

        grid-template-columns: 1fr;

        gap: 13px;

        margin-top: 45px;

    }


    .why-clients .card {

        min-height: auto;

        padding:
            27px 21px;

    }


    .testimonial-cta .glass {

        padding:
            55px 25px;

        border-radius: 27px;

    }


    .testimonial-cta h2 {

        font-size: 37px;

    }


    .testimonial-cta p {

        font-size: 13px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:480px) {

    .testimonial-hero-content h1 {

        font-size: 37px;

        letter-spacing: -1.5px;

    }


    .testimonial-hero-content p {

        font-size: 13px;

        line-height: 1.7;

    }


    .testimonial-hero-stats {

        gap: 15px;

    }


    .testimonial-hero-stats strong {

        font-size: 21px;

    }


    .testimonial-hero-stats span {

        font-size: 8px;

    }


    .testimonial-hero-visual {

        min-height: 330px;

    }


    .testimonial-orbit.orbit-one {

        width: 270px;

        height: 270px;

    }


    .testimonial-orbit.orbit-two {

        width: 345px;

        height: 345px;

    }


    .testimonial-core {

        width: 140px;

        height: 140px;

    }


    .testimonial-stars {

        gap: 3px;

        margin-bottom: 10px;

    }


    .testimonial-stars i {

        font-size: 8px;

    }


    .testimonial-core strong {

        font-size: 15px;

    }


    .testimonial-core span {

        font-size: 7px;

        letter-spacing: 2px;

    }


    .floating-review {

        transform:
            scale(.88);

    }


    .floating-review:hover {

        transform:
            translateY(-5px)
            scale(.94);

    }


    .testimonial-card-top {

        gap: 9px;

    }


    .client-avatar {

        width: 43px;

        height: 43px;

        border-radius: 12px;

    }


    .client-details h3 {

        font-size: 14px;

    }


    .rating i {

        font-size: 7px;

    }


    .testimonial-card {

        padding:
            22px;

    }


    .quote-icon {

        width: 35px;

        height: 35px;

        margin-top: 20px;

    }


    .testimonial-text {

        font-size: 11px;

    }


    .testimonial-result strong {

        font-size: 9px;

    }


    .story-card {

        padding:
            28px 21px 25px;

    }


    .story-card h3 {

        font-size: 17px;

    }


    .story-card p {

        font-size: 10px;

    }


    .testimonial-impact .results-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .testimonial-impact .results-grid h2 {

        font-size: 36px;

    }


    .testimonial-impact .results-grid p {

        font-size: 8px;

    }


    .video-screen {

        height: 200px;

    }


    .video-play {

        width: 55px;

        height: 55px;

    }


    .testimonial-cta h2 {

        font-size: 31px;

    }


    .testimonial-cta .hero-buttons {

        flex-direction: column;

        width: 100%;

    }


    .testimonial-cta .btn,
    .testimonial-cta .btn-outline {

        width: 100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .testimonial-orbit,
    .testimonial-core,
    .floating-review {

        animation: none !important;

    }

}


/* =========================================================
   PERFORMANCE
========================================================= */

.testimonial-card,
.story-card,
.video-card,
.testimonial-impact .card,
.why-clients .card,
.testimonial-cta .glass {

    will-change: transform;

}


/* =========================================================
   END TESTIMONIALS CSS
========================================================= */