/* ===== TESTIMONIALS PAGE STYLES ===== */

/* Hero Section */
.testimonials-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.testimonials-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.testimonials-hero__subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.hero-stat {
    text-align: center;
}

.hero-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    line-height: 1;
}

.hero-stat__label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 8px;
    display: block;
}

/* Featured Testimonial */
.featured-testimonial {
    padding: 80px 0;
    background: #f8fafc;
}

.featured-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    color: #ffffff;
}

.featured-card__quote {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.featured-card__text {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.featured-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.author-rating {
    margin-left: auto;
    font-size: 1.25rem;
}

.featured-card__results {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.section-header.light h2 {
    color: #ffffff;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: #64748b;
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: #f1f5f9;
    color: #6366f1;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Video Testimonials */
.video-testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.video-info p {
    font-size: 0.9rem;
    color: #64748b;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.result-card .result-number {
    font-size: 3rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 8px;
}

.result-card .result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.result-card p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* CTA Section */
.testimonials-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-buttons .btn--primary {
    background: #ffffff;
    color: #6366f1;
}

.cta-buttons .btn--primary:hover {
    background: #f1f5f9;
}

.cta-buttons .btn--secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-buttons .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== RESPONSIVE STYLES ===== */

@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .testimonials-hero {
        padding: 140px 0 60px;
    }

    .testimonials-hero__title {
        font-size: 2.5rem;
    }

    .testimonials-hero__subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stat__number {
        font-size: 2rem;
    }

    .featured-card {
        padding: 40px 30px;
    }

    .featured-card__text {
        font-size: 1.2rem;
    }

    .featured-card__author {
        flex-wrap: wrap;
    }

    .author-rating {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .featured-card__results {
        flex-wrap: wrap;
        gap: 20px;
    }

    .result-item {
        flex: 1;
        min-width: 100px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .result-card {
        padding: 30px 20px;
    }

    .result-card .result-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-hero__title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .featured-card__quote {
        font-size: 5rem;
    }

    .featured-card__text {
        font-size: 1.1rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-cta {
        padding: 60px 0;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
    }
}
