body.testimonial-page {
    background:
        radial-gradient(circle at top left, rgba(176, 126, 80, 0.10), transparent 24%),
        radial-gradient(circle at bottom right, rgba(31, 42, 68, 0.08), transparent 26%),
        linear-gradient(180deg, #fbf8f3 0%, #ffffff 42%, #f6f1e9 100%);
}

/* Hero */
.testimonial-hero {
    position: relative;
    padding: 150px 0 120px;
    min-height: 600px;
    background: linear-gradient(180deg, rgba(11, 14, 22, 0.42), rgba(11, 14, 22, 0.54));
    overflow: hidden;
}

.testimonial-hero .jarallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.testimonial-hero::before {
    content: "";
    position: absolute;
    inset: auto auto -80px -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 126, 80, 0.20) 0%, rgba(176, 126, 80, 0) 70%);
    pointer-events: none;
}

.testimonial-hero::after {
    content: "";
    position: absolute;
    inset: 90px -100px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 68%);
    pointer-events: none;
}

.testimonial-hero .hero-content {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-hero .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.testimonial-hero h1 {
    color: #fff;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.testimonial-hero p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.9;
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-hero .btn-main {
    min-width: 180px;
}

/* Intro */
.testimonial-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.testimonial-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(176, 126, 80, 0.12);
    border: 1px solid rgba(176, 126, 80, 0.14);
    color: #b07e50;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Video testimonial */
.video-testimonial-section {
    position: relative;
    overflow: hidden;
}

.video-testimonial-copy {
    max-width: 480px;
}

.video-testimonial-copy h2 {
    margin: 12px 0 16px;
    color: #9b7026;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1.08;
}

.video-testimonial-copy p {
    margin: 0;
    color: #5b6473;
    font-size: 17px;
    line-height: 1.85;
}

.video-testimonial-frame {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at 20% 15%, rgba(176, 126, 80, 0.18), transparent 28%),
        linear-gradient(145deg, #1f2540 0%, #111522 100%);
    box-shadow: 0 22px 55px rgba(31, 42, 68, 0.18);
}

.video-testimonial-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    pointer-events: none;
}

.video-testimonial-player {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    overflow: hidden;
}

.video-testimonial-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.video-testimonial-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    background:
        radial-gradient(circle at center, rgba(176, 126, 80, 0.24), transparent 34%),
        linear-gradient(145deg, #1f2540 0%, #111522 100%);
}

.video-testimonial-placeholder i {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #b07e50;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    font-size: 30px;
}

.video-testimonial-placeholder span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.video-testimonial-player--missing .video-testimonial-placeholder::after {
    content: "Add a valid YouTube video URL or 11-character video ID";
    max-width: 260px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Cards */
.testimonial-card {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 42, 68, 0.08);
    box-shadow: 0 16px 40px rgba(31, 42, 68, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #b07e50, #f1d4a9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 52px rgba(31, 42, 68, 0.14);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card--featured {
    background:
        radial-gradient(circle at top right, rgba(176, 126, 80, 0.18), transparent 30%),
        linear-gradient(180deg, #1f2540 0%, #1e243c 100%);
    color: #fff;
}

.testimonial-card--soft {
    background:
        radial-gradient(circle at top left, rgba(31, 42, 68, 0.06), transparent 25%),
        linear-gradient(180deg, #fcfaf7 0%, #ffffff 100%);
}

.quote-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(176, 126, 80, 0.12);
    color: #b07e50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex: 0 0 auto;
}

.testimonial-card--featured .quote-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.9;
    color: #566171;
    margin: 0;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    display: flex;
    text-wrap: initial;
}

.testimonial-card--featured .testimonial-text {
    color: rgba(255, 255, 255, 0.84);
}

.client-info {
    padding-top: 16px;
    border-top: 1px solid rgba(31, 42, 68, 0.08);
    margin-top: auto;
}

.testimonial-card--featured .client-info {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.client-info h5 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #111522;
}

.testimonial-card--featured .client-info h5 {
    color: #fff;
}

.client-info span {
    display: block;
    font-size: 14px;
    color: #7b8594;
    margin-bottom: 6px;
}

.testimonial-card--featured .client-info span {
    color: rgba(255, 255, 255, 0.68);
}

.client-info small {
    display: block;
    font-size: 13px;
    color: #b07e50;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonial-card--featured .client-info small {
    color: rgba(255, 255, 255, 0.82);
}

/* Value section */
.testimonial-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(176, 126, 80, 0.16), transparent 24%),
        linear-gradient(180deg, #1f2540 0%, #1e243c 100%);
}

.testimonial-values::before {
    content: "";
    position: absolute;
    right: -110px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.testimonial-value-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, background 0.35s ease;
}

.testimonial-value-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
}

.value-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 126, 80, 0.18);
    color: #f1d4a9;
    font-size: 20px;
    margin-bottom: 18px;
}

.testimonial-value-card h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.15;
}

.testimonial-value-card p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 0;
    line-height: 1.85;
}

/* CTA */
.testimonial-cta-box {
    background:
        radial-gradient(circle at top left, rgba(176, 126, 80, 0.14), transparent 22%),
        linear-gradient(180deg, #fbf8f3 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 64px 30px;
    box-shadow: 0 18px 45px rgba(31, 42, 68, 0.08);
}

.testimonial-cta-box h2 {
    margin-bottom: 15px;
    color: #1f2a44;
}

.testimonial-cta-box p {
    max-width: 720px;
    margin: 0 auto;
    color: #5b6473;
    line-height: 1.9;
}

/* Responsive */
@media (max-width: 991px) {
    .testimonial-hero {
        min-height: 540px;
        padding: 120px 0 90px;
    }

    .testimonial-hero .abs.w-80.bottom-10 {
        bottom: 4%;
    }

    .testimonial-hero .jarallax-img {
        object-position: 54% center;
    }

    .testimonial-hero h1 {
        font-size: clamp(38px, 7vw, 58px);
    }

    .testimonial-value-card h4 {
        font-size: 22px;
    }

    .video-testimonial-copy {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .testimonial-hero {
        min-height: auto;
        padding: 0;
        background: #111522;
    }

    .testimonial-hero .jarallax-img {
        object-position: 58% center;
        opacity: 0.74;
    }

    .testimonial-hero .gradient-edge-top {
        opacity: 0.85;
    }

    .testimonial-hero .sw-overlay {
        opacity: 0.68;
    }

    .testimonial-hero .abs.w-80.bottom-10 {
        position: relative;
        bottom: auto;
        transform: none;
        width: 100% !important;
        padding: 118px 0 64px;
    }

    .testimonial-hero .hero-content {
        max-width: 520px;
        padding: 0 12px;
    }

    .testimonial-hero .subtitle {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .testimonial-hero h1 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.06;
        letter-spacing: 0;
    }

    .testimonial-card,
    .testimonial-value-card {
        padding: 22px;
        border-radius: 20px;
    }

    .video-testimonial-frame {
        border-radius: 20px;
    }

    .video-testimonial-frame::before {
        inset: 10px;
        border-radius: 16px;
    }

    .video-testimonial-player {
        min-height: 220px;
    }

    .testimonial-hero p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 460px;
    }

    .testimonial-hero .btn-main {
        min-width: 150px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.75;
    }

    .client-info h5 {
        font-size: 18px;
    }

    .testimonial-cta-box {
        padding: 42px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .testimonial-hero .jarallax-img {
        object-position: 62% center;
        opacity: 0.64;
    }

    .testimonial-hero .abs.w-80.bottom-10 {
        padding: 104px 0 54px;
    }

    .testimonial-hero .hero-content {
        padding: 0 8px;
    }

    .testimonial-hero h1 {
        font-size: 31px;
    }

    .testimonial-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .testimonial-hero .d-flex {
        gap: 10px !important;
    }

    .testimonial-hero .btn-main {
        width: 100%;
        max-width: 240px;
        min-width: 0;
    }
}

@media (max-width: 360px) {
    .testimonial-hero .abs.w-80.bottom-10 {
        padding-top: 96px;
        padding-bottom: 46px;
    }

    .testimonial-hero h1 {
        font-size: 28px;
    }

    .testimonial-hero p {
        font-size: 13px;
    }
}
