/* ============================================
   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;
            height: fit-content; /* Match stats column height */
        }

        .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;
        }

        /* ============================================
           CAROUSEL NAVIGATION (VERTICAL)
           ============================================ */

        .testimonials-carousel {
            position: relative;
            padding: 60px 0; /* Top/bottom padding instead of left/right */
        }

        .carousel-arrow {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: white;
            border: 2px solid #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: #FF6B4A;
            border-color: #FF6B4A;
        }

        .carousel-arrow:hover svg {
            stroke: white;
        }

        .carousel-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-arrow:disabled:hover {
            background: white;
            border-color: #E5E5E5;
        }

        .carousel-arrow:disabled:hover svg {
            stroke: currentColor;
        }

        .carousel-arrow svg {
            width: 24px;
            height: 24px;
            stroke: #171717;
            transition: stroke 0.3s ease;
        }

        .carousel-prev {
            top: 0; /* Top arrow */
        }

        .carousel-prev svg {
            transform: rotate(90deg); /* Point up */
        }

        .carousel-next {
            bottom: 0; /* Bottom arrow */
        }

        .carousel-next svg {
            transform: rotate(90deg); /* Point down */
        }

        /* Testimonials Track (vertical scrollable container) */
        .testimonials-track {
            display: flex;
            flex-direction: column; /* Vertical stack */
            gap: 24px;
            overflow-y: auto; /* Enable vertical scroll */
            scroll-behavior: smooth;
            scroll-snap-type: y mandatory; /* Snap to prevent card cutting */
            -webkit-overflow-scrolling: touch;
            height: 600px; /* Fixed height to show exactly 2 cards */
            scrollbar-width: none; /* Hide scrollbar */
            -ms-overflow-style: none;
        }

        .testimonials-track::-webkit-scrollbar {
            display: none; /* Hide scrollbar for Chrome/Safari/Edge */
        }

        .testimonials-track .testimonial-card {
            flex: 0 0 auto; /* Natural height */
            width: 100%; /* Full width */
            scroll-snap-align: start; /* Snap to top of card */
            scroll-snap-stop: always; /* Force stop at each card */
        }

        /* Carousel Dots Indicator */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

        .carousel-dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #E5E5E5;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .carousel-dots .dot:hover {
            background: #A3A3A3;
        }

        .carousel-dots .dot.active {
            background: #FF6B4A;
            width: 32px;
            border-radius: 5px;
        }

        /* 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;
            }

            /* Carousel mobile adjustments */
            .testimonials-carousel {
                padding: 50px 0; /* Vertical padding */
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }

            .carousel-arrow svg {
                width: 20px;
                height: 20px;
            }

            .testimonials-track {
                overflow-y: auto; /* Vertical scroll */
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                height: 550px; /* Smaller on tablet - still shows 2 cards */
            }

            .testimonials-track::-webkit-scrollbar {
                display: none;
            }

            /* Keep vertical stack on tablet */
            .testimonials-track .testimonial-card {
                width: 100%; /* Full width */
            }
        }

        @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;
            }

            /* Carousel small mobile */
            .testimonials-carousel {
                padding: 40px 0; /* Vertical padding */
            }

            .carousel-arrow {
                width: 36px;
                height: 36px;
            }

            .carousel-arrow svg {
                width: 18px;
                height: 18px;
            }

            .testimonials-track {
                height: 500px; /* Smaller on mobile - still shows 2 cards */
            }

            .carousel-dots {
                gap: 8px;
                margin-top: 20px;
            }

            .carousel-dots .dot {
                width: 8px;
                height: 8px;
            }

            .carousel-dots .dot.active {
                width: 24px;
            }

            /* Keep vertical stack on mobile */
            .testimonials-track .testimonial-card {
                width: 100%; /* Full width */
            }
        }

        /* 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;
        }
