* { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Inter', sans-serif; 
            background: #ffffff; 
            color: #334155; 
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        .container { width: min(1200px, 92%); margin: auto; }
        
        /* Section Spacing */
        section { padding: 90px 0; }

        h1, h2, h3 {
            color: #0f172a;
            font-weight: 700;
            letter-spacing: -0.02em;
        }

        /* Pure CSS Scroll Animations */
        .reveal { 
            opacity: 0; 
            transform: translateY(40px); 
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); 
        }
        .reveal.active { 
            opacity: 1; 
            transform: translateY(0); 
        }

        /* 1. Hero Section (Clean Gradient Light Background) */
        .hero { 
            text-align: center; 
            background: radial-gradient(circle at top, #f0f4ff 0%, #ffffff 70%); 
            padding: 140px 0 90px 0;  
        }
        .hero h1 { font-size: 56px; line-height: 1.15; margin-bottom: 24px; }
        .hero h1 span { color: #4f46e5; position: relative; }
        /* Subtle Yellow Highlight beneath span */
        .hero h1 span::after {
            content: "";
            position: absolute;
            bottom: 4px; left: 0; width: 100%; height: 8px;
            background: #fef08a; z-index: -1;
            border-radius: 4px;
        }
        .hero p { font-size: 19px; color: #475569; max-width: 720px; margin: auto; }

        /* 2. 5-Stage Content Grid (Premium Cards with Soft Shadows) */
        .stage-section { background: #ffffff; padding-top: 40px; }
        .stage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .stage-box { 
            padding: 40px; 
            background: #ffffff; 
            border: 1px solid #e2e8f0; 
            border-radius: 20px; 
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
        }
        .stage-box:hover { 
            border-color: #4f46e5; 
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.1), 0 10px 10px -5px rgba(79, 70, 229, 0.04);
        }
        .stage-box h3 { color: #4f46e5; margin-bottom: 16px; font-size: 22px; }
        .stage-box p { color: #475569; font-size: 15px; }

        /* 3 & 4. Platform Advantage + Image Layout (Combined & High Responsive Split Layout) */
        .platform { background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
        .split-layout { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 60px; 
            align-items: center; 
        }
        .platform-text h2 { font-size: 42px; margin-bottom: 24px; line-height: 1.2; }
        .platform-text p { color: #475569; font-size: 17px; margin-bottom: 30px; }
        
        /* Modern Process inside layout */
        .process-subflow { display: flex; flex-direction: column; gap: 20px; }
        .step-item { display: flex; gap: 15px; align-items: flex-start; }
        .step-num { 
            background: #e0e7ff; color: #4f46e5; font-weight: 700;
            width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; shrink: 0;
        }
        .step-content h4 { font-size: 16px; color: #0f172a; margin-bottom: 4px; }
        .step-content p { font-size: 14px; color: #64748b; margin: 0; }

        /* Smooth Interactive Graphic Container */
        .platform-image-wrapper { position: relative; width: 100%; display: flex; justify-content: center; }
        .platform-image-wrapper img { 
            width: 100%; 
            max-width: 520px; 
            height: auto;
            border-radius: 24px; 
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); 
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .platform-image-wrapper:hover img {
            transform: scale(1.03) translateY(-4px);
            box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.15);
        }

        /* 5. Premium Light CTA Box Section */
        .cta-section { background: #ffffff; text-align: center; padding: 100px 0; }
        .cta-wrapper {
            background: linear-gradient(135deg, #e0e7ff 0%, #fef08a 100%);
            padding: 60px 40px;
            border-radius: 32px;
            max-width: 1000px;
            margin: auto;
            box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.15);
        }
        .cta-wrapper h2 { font-size: 38px; margin-bottom: 16px; color: #0f172a; }
        .cta-wrapper p { max-width: 700px; margin: 0 auto 32px auto; color: #334155; font-size: 16px; }
        
        .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn { padding: 16px 38px; border: none; cursor: pointer; font-weight: 700; transition: all 0.3s ease; border-radius: 12px; font-size: 16px; }
        .btn-primary { background: #4f46e5; color: white; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3); }
        .btn-primary:hover { background: #4338ca; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4); }
        
        .btn-secondary { background: #ffffff; color: #4f46e5; border: 1px solid #e2e8f0; }
        .btn-secondary:hover { background: #f8fafc; transform: translateY(-3px); border-color: #cbd5e1; }
       
        /* ==========================================
           ULTRA RESPONSIVE STYLES (No Horizontal Overflow)
        ========================================== */
        @media (max-width: 992px) {
            .split-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .platform-image-wrapper { order: -1; } /* Image comes up on tablet/mobile beautifully */
            .step-item { text-align: left; }
            .hero h1 { font-size: 46px; }
        }

        @media (max-width: 768px) { 
            section { padding: 70px 0; }
            .hero { padding: 110px 0 60px 0; }
            .hero h1 { font-size: 36px; } 
            .hero p { font-size: 16px; }
            .stage-grid { grid-template-columns: 1fr; gap: 20px; } 
            .platform-text h2 { font-size: 30px; }
            .cta-wrapper { padding: 40px 24px; border-radius: 24px; }
            .cta-wrapper h2 { font-size: 28px; }
            .btn-group { flex-direction: column; gap: 12px; }
            .btn { width: 100%; text-align: center; }
        }
         .Banner {
        margin-bottom: 0px;
        position: relative;
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.85)), url('imgs/banner.avif') no-repeat center center/cover;
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .hero-content h1 {
        font-size: 42px;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 15px;
        text-transform: uppercase;
        color: white;
    }

    .hero-content h2{
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 0px;
        color: #cbd5e1;
        font-style: italic;
    }