/* Platform Section Styles */
        .platform-section {
            padding: 6rem 2rem;
            background: linear-gradient(to bottom, #f0f9ff, #e6f4ff);
            position: relative;
            overflow: hidden;
        }

        .platform-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            filter: blur(40px);
            z-index: 0;
        }

        .platform-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(30, 64, 175, 0.1);
            filter: blur(50px);
            z-index: 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #1e40af, #3b82f6);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.25rem;
            line-height: 1.7;
            color: #4b5563;
        }

        .platform-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 5rem;
            max-width: 1300px;
            margin: 0 auto 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .platform-features {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(30, 64, 175, 0.08);
            transition: all 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(30, 64, 175, 0.12);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(30, 64, 175, 0.2);
        }

        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }

        .feature-text h3 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: #1e40af;
        }

        .feature-text p {
            color: #4b5563;
            line-height: 1.6;
        }

        /* Platform Showcase Styles */
        .platform-showcase {
            position: relative;
            height: 500px;
            perspective: 1000px;
        }

        .showcase-card {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
            background: white;
            display: flex;
            flex-direction: column;
            transition: transform 0.6s ease, box-shadow 0.4s ease;
        }

        .showcase-card:nth-child(1) {
            transform: rotate(-5deg) translateX(-20px);
            z-index: 3;
            top: 0;
            left: 0;
            background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
        }

        .showcase-card:nth-child(2) {
            transform: rotate(2deg) translateX(20px);
            z-index: 2;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        }

        .showcase-card:nth-child(3) {
            transform: rotate(0deg);
            z-index: 1;
            top: 40px;
            left: 40px;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        }

        .platform-showcase:hover .showcase-card:nth-child(1) {
            transform: rotate(-3deg) translateX(-10px) translateY(-10px);
        }

        .platform-showcase:hover .showcase-card:nth-child(2) {
            transform: rotate(1deg) translateX(10px) translateY(-5px);
        }

        .platform-showcase:hover .showcase-card:nth-child(3) {
            transform: rotate(0deg) translateY(-5px);
        }

        .card-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .card-content i {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .card-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #1e40af;
        }

        .card-content p {
            color: #475569;
            line-height: 1.6;
        }

        /* Store Slider Styles */
        .stores-slider-container {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .slider-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .slider-header h3 {
            font-size: 2.2rem;
            color: #1e40af;
            margin-bottom: 1rem;
        }

        .slider-header p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .stores-slider {
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
            backdrop-filter: blur(10px);
        }

        .slider-track {
            display: flex;
            animation: scroll 40s linear infinite;
            width: calc(200px * 16);
        }

        .slide {
            height: 140px;
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 1rem;
        }

        .store-logo {
            width: 160px;
            height: 100px;
            border-radius: 16px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid #e0f2fe;
            position: relative;
            overflow: hidden;
        }

        .store-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .store-logo:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 30px rgba(30, 64, 175, 0.15);
        }

        .store-logo:hover::before {
            opacity: 1;
        }

        .store-logo i {
            font-size: 2.2rem;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .store-name {
            font-weight: 600;
            color: #1e40af;
            font-size: 1.1rem;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 8));
            }
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        .platform-cta {
            text-align: center;
            margin-top: 5rem;
            position: relative;
            z-index: 2;
        }

        .platform-cta .cta-btn {
            padding: 1.2rem 3rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(90deg, #1e40af, #3b82f6);
            color: white;
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
            position: relative;
            overflow: hidden;
        }

        .platform-cta .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .platform-cta .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30, 64, 175, 0.35);
        }

        .platform-cta .cta-btn:hover::before {
            left: 100%;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .platform-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .platform-showcase {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .platform-section {
                padding: 4rem 1.5rem;
            }
            
            .section-header h2 {
                font-size: 2.3rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
            
            .feature {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 1rem;
            }
            
            .feature-icon {
                margin: 0 auto;
            }
            
            .platform-showcase {
                height: 350px;
            }
            
            .showcase-card:nth-child(1),
            .showcase-card:nth-child(2),
            .showcase-card:nth-child(3) {
                transform: none;
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 2rem;
            }
            
            .platform-showcase {
                display: flex;
                flex-direction: column;
                height: auto;
            }
            
            .slider-header h3 {
                font-size: 1.8rem;
            }
        }