/* ============================================
   SOCIAL PROOF SECTION
   Customer testimonials with statistics display
   ============================================ */

        .social-proof {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 24px;
        }

        .social-proof .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .social-proof .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #FF6B4A;
            margin-bottom: 16px;
        }

        .social-proof .section-title {
            font-size: 42px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .social-proof .section-subtitle {
            font-size: 18px;
            color: #737373;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .proof-container {
            display: grid;
            grid-template-columns: 2fr 3fr;
            gap: 60px;
            margin-top: 60px;
            align-items: start;
            overflow: hidden;
        }

        /* Left side - Stats */
        .stats-column {
            background: #171717;
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            height: fit-content;
        }

        .stats-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 107, 74, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 107, 74, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .stats-header {
            position: relative;
            z-index: 2;
            margin-bottom: 50px;
        }

        .stats-header h3 {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .stats-header p {
            font-size: 16px;
            color: #A3A3A3;
            line-height: 1.6;
        }

        .stat-item {
            position: relative;
            z-index: 2;
            margin-bottom: 40px;
            padding-left: 30px;
            border-left: 3px solid #FF6B4A;
        }

        .stat-item:last-child {
            margin-bottom: 0;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            letter-spacing: -1px;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .stat-plus {
            font-size: 32px;
            color: #FF6B4A;
        }

        .stat-label {
            font-size: 16px;
            color: #A3A3A3;
            font-weight: 500;
        }

        /* Right side - Testimonials */
        .testimonials-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
            min-width: 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            border: 2px solid #E5E5E5;
            transition: all 0.3s ease;
            position: relative;
            max-width: 100%;
        }

        .testimonial-card:hover {
            border-color: #FF6B4A;
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B4A 0%, #FF8A6B 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: white;
            flex-shrink: 0;
        }

        .testimonial-meta {
            flex: 1;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 600;
            color: #171717;
            margin-bottom: 4px;
        }

        .testimonial-device {
            font-size: 14px;
            color: #737373;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            font-size: 18px;
        }

        .testimonial-text {
            font-size: 15px;
            color: #171717;
            line-height: 1.7;
            margin-bottom: 16px;
        }


        .testimonial-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid #E5E5E5;
        }

        .testimonial-date {
            font-size: 13px;
            color: #737373;
        }

        .testimonial-verified {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #FF6B4A;
        }

        /* Tablet responsive */
        @media (max-width: 1200px) {
            .proof-container {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        /* Mobile responsive */
        @media (max-width: 968px) {
            .social-proof {
                padding: 80px 20px;
            }

            .social-proof .section-title {
                font-size: 36px;
            }

            .proof-container {
                grid-template-columns: 1fr !important;
                gap: 40px;
            }

            .stats-column {
                padding: 40px 30px;
            }

            .stats-header h3 {
                font-size: 28px;
            }

            .stat-number {
                font-size: 40px;
            }

            .stat-plus {
                font-size: 28px;
            }

            .testimonial-header {
                flex-wrap: wrap;
            }

            .testimonial-stars {
                width: 100%;
                margin-top: 8px;
            }
        }

        @media (max-width: 640px) {
            .social-proof {
                padding: 60px 16px;
            }

            .social-proof .section-header {
                margin-bottom: 40px;
            }

            .social-proof .section-title {
                font-size: 28px;
            }

            .social-proof .section-subtitle {
                font-size: 15px;
            }

            .stats-column {
                padding: 32px 24px;
            }

            .stats-header {
                margin-bottom: 36px;
            }

            .stats-header h3 {
                font-size: 24px;
            }

            .stats-header p {
                font-size: 14px;
            }

            .stat-item {
                margin-bottom: 32px;
                padding-left: 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-plus {
                font-size: 24px;
            }

            .stat-label {
                font-size: 14px;
            }

            .testimonial-card {
                padding: 24px;
            }

            .testimonial-avatar {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .testimonial-device {
                font-size: 13px;
            }

            .testimonial-stars {
                font-size: 16px;
            }

            .testimonial-text {
                font-size: 14px;
            }


            .testimonial-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        /* Demo section */
        .demo-section {
            margin-top: 80px;
            padding: 40px;
            background: white;
            border-radius: 12px;
            border: 2px dashed #E5E5E5;
        }

        .demo-section h3 {
            color: #171717;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .demo-section p {
            color: #737373;
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .demo-section code {
            background: #FAFAFA;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 14px;
            color: #FF6B4A;
        }
