/* ==========================================
   VIDEO TESTIMONIAL MANAGEMENT PAGE STYLES
   ========================================== */

/* Hero Section */
.testimonial-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background:  linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 117, 58, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom:  24px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-nav span {
    color: var(--text-light);
}

.page-title {
    font-size: 52px;
    font-weight:  700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.page-title . highlight {
    color: var(--primary-color);
    position: relative;
}

.page-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 540px;
}

.trust-indicators {
    display: flex;
    gap: 32px;
    margin-bottom:  32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* Hero Video Showcase */
.hero-video-showcase {
    position: relative;
    padding: 20px;
}

.video-player-mockup {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.video-player-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

. play-button svg {
    width: 32px;
    height: 32px;
    color: var(--bg-white);
    margin-left: 4px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(1, 117, 58, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(1, 117, 58, 0);
    }
}

. video-stats {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.stat-badge {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.stat-badge . stat-icon {
    font-size: 28px;
}

.stat-badge .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-badge .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.problem-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-grey);
    border-radius: 16px;
    height: 100%;
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.problem-card:hover {
    transform:  translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 56px;
    margin-bottom:  16px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin:  0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--bg-grey);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.work-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-visual {
    position: relative;
    margin-bottom: 24px;
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(1, 117, 58, 0.3);
}

.step-illustration {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-illustration svg {
    width: 48px;
    height: 48px;
    color: var(--bg-white);
}

.step-info h3 {
    font-size: 20px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* What You Get Section */
.what-you-get-section {
    padding:  80px 0;
    background-color: var(--bg-white);
}

.feature-box {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-grey);
    border-radius: 16px;
    height: 100%;
    transition:  var(--transition-base);
    margin-bottom: 30px;
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin:  0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--bg-white);
}

.feature-box h3 {
    font-size: 18px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    background-color: var(--bg-grey);
}

.use-cases-grid {
    display:  grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.use-case-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.use-case-card:hover {
    border-color:  var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.use-case-image {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.use-case-image svg {
    width: 28px;
    height: 28px;
    color: var(--bg-white);
}

.use-case-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.use-case-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding:  80px 0;
    background-color: var(--bg-white);
}

.testimonial-result-card {
    background: var(--bg-grey);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    margin-bottom: 30px;
}

.testimonial-result-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.result-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
}

.result-quote:: before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.result-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom:  20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--text-secondary);
}

.result-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    padding: 12px 16px;
    border-radius: 8px;
}

.result-metric . metric-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.result-metric .metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Video CTA Section */
.video-cta-section {
    padding:  80px 0;
    background:  linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content-box h2 {
    font-size:  42px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content-box p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-form-box {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.lead-form h3 {
    font-size: 24px;
    font-weight:  700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    transition: var(--transition-base);
}

.lead-form input:focus,
. lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 117, 58, 0.1);
}

.lead-form textarea {
    resize: vertical;
}

.lead-form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.lead-form .btn svg {
    width: 20px;
    height: 20px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top:  16px;
    font-size:  12px;
    color: var(--text-secondary);
}

.form-note svg {
    width: 14px;
    height: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-title {
        font-size: 42px;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:  768px) {
    .testimonial-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .video-stats {
        flex-direction: column;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .use-cases-grid {
        gap: 16px;
    }
    
    .use-case-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content-box h2 {
        font-size: 32px;
    }
    
    .cta-form-box {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 28px;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width:  24px;
        height:  24px;
    }
    
    .stat-badge {
        flex:  1;
    }
    
    .cta-content-box h2 {
        font-size: 26px;
    }
    
    .cta-form-box {
        padding: 20px;
    }
}