/* Social Proof Section */
.social-proof-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.proof-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-testimonial {
    display: flex;
    align-items: stretch;
    background: #111;
    border-radius: 18px;
    overflow: hidden;
    max-width: 620px;
    margin: 2.5rem auto 0;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.featured-testimonial img {
    width: 240px;
    min-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.featured-testimonial-text {
    padding: 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}
.featured-testimonial-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.featured-testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.featured-testimonial-quote {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    font-style: italic;
}
@media (max-width: 600px) {
    .featured-testimonial { flex-direction: column; }
    .featured-testimonial img { width: 100%; height: 180px; }
    .featured-testimonial-text { padding: 1.25rem; }
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.05), rgba(138, 224, 94, 0.05));
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent);
    backdrop-filter: blur(20px);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, #4169E1, #8AE05E);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(65, 105, 225, 0.3);
}

.final-cta-btn i {
    font-size: 20px;
}

.cta-subtext {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pain-section, .solution-section, .product-preview, .social-proof-section {
        padding: 80px 0;
    }
    
    .final-cta-section {
        padding: 100px 0;
    }
    
    .pain-cards, .solution-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .preview-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .proof-stats {
        grid-template-columns: 1fr;
    }
    
    .final-cta-btn {
        padding: 18px 32px;
        font-size: 16px;
    }
}
