/* MOBILE SHOWCASE SECTION - TEXT LEFT, IMAGE RIGHT */

.mobile-showcase {
    background: linear-gradient(135deg, #0b131f 0%, #0b131f 100%);
    position: relative;
    padding: 100px 0;
    min-height: 530px;
    overflow: hidden;
}

.mobile-showcase::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20%; /* Moved to right side for image area */
    transform: translateX(50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse 60% 40% at center top,
            rgba(0, 212, 170, 0.4) 0%,
            rgba(0, 188, 155, 0.25) 25%,
            rgba(0, 164, 140, 0.15) 50%,
            rgba(0, 140, 125, 0.08) 70%,
            transparent 85%);
    z-index: 1;
}

/* UPDATED: Container to hold both text and image */
.mobile-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 400px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    gap: 60px;
}

/* NEW: Left side text content */
.mobile-text {
    flex: 1;
    max-width: 600px;
    color: white;
    padding-right: 40px;
}

.mobile-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.mobile-text h2 .highlight {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-subtitle {
    font-size: 1.6rem;
    color: #00d4aa;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* NEW: Feature list for the text area */
.mobile-features {
    margin-top: 2rem;
}

.mobile-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.mobile-feature::before {
    content: '✓';
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.mobile-feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

/* UPDATED: Right side image container */
.mobile-image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 3;
}

/* About Section - Keep as simple white section */
.about {
    background: #ffffff;
    padding: 80px 0;
    color: #333;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    text-align: center;
    max-width: 1040px;
}

.about-text h2 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.about-text h2 .highlight {
    color: #00d4aa;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(29, 28, 28, 0.9);
    font-weight: 370;
}

/* Partnership Section - Keep existing styles */
.partnership {
    background: linear-gradient(135deg, #0e1726 0%, #0b131f 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 260px;
    transform: translateY(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(9, 209, 169, 0.35) 0%,
            rgba(7, 196, 158, 0.25) 20%,
            rgba(23, 156, 132, 0.15) 40%,
            rgba(0, 90, 75, 0.08) 60%,
            transparent 75%);
    filter: blur(40px);
    z-index: 1;
}

.partnership-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    gap: 120px;
}

.partnership-text {
    max-width: 500px;
    text-align: center;
}

.partnership-text h2 {
    font-size: 2.2rem;
    font-weight: 550;
    color: white;
    margin-bottom: 0.9rem;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
    text-align: center;
}

.partnership-text .highlight2 {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 550;
}

.partnership-text p {
    font-size: 1.5rem;
    color: white;
    font-weight: 550;
    line-height: 1.6;
    font-family: 'Satoshi', sans-serif;
    width: 400px;
    text-align: center;
    margin: 0 auto;
}

.partnership-badge {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 350px;
    flex-shrink: 0;
    margin-left: auto;
}

.partnership-badge img {
    width: 280px;
    height: 240px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .mobile-showcase {
        padding: 60px 0;
        min-height: auto;
    }

    .mobile-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        height: auto;
    }

    .mobile-text {
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        order: 1;
    }

    .mobile-text h2 {
        font-size: 2.4rem;
    }

    .mobile-text p {
        font-size: 1rem;
    }

    .mobile-subtitle {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .mobile-feature-text {
        font-size: 0.9rem;
    }

    .mobile-features {
        margin-top: 1.5rem;
    }

    .mobile-feature {
        justify-content: center;
        text-align: center;
    }

    .mobile-image-container {
        max-width: 100%;
        order: 2;
    }

    .mobile-image {
        max-width: 80%;
        max-height: 300px;
    }

    /* About section mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        padding: 0 15px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Partnership mobile */
    .partnership {
        padding: 60px 0;
    }

    .partnership::before {
        left: 50px;
        width: 400px;
        height: 400px;
    }

    .partnership-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 15px;
    }

    .partnership-text {
        margin-right: 0;
    }

    .partnership-text h2 {
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .partnership-text p {
        font-size: 1.1rem;
        width: 100%;
    }

    .partnership-badge {
        min-width: auto;
    }

    .partnership-badge img {
        width: 220px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .mobile-text h2 {
        font-size: 2rem;
    }

    .mobile-text p {
        font-size: 0.95rem;
    }

    .mobile-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .mobile-feature-text {
        font-size: 0.85rem;
    }

    .mobile-feature-text {
        font-size: 0.9rem;
    }

    .about {
        padding: 50px 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .partnership {
        padding: 50px 0;
    }

    .partnership::before {
        left: 20px;
        width: 300px;
        height: 300px;
    }

    .partnership-text h2 {
        font-size: 1.9rem;
    }

    .partnership-text p {
        font-size: 1rem;
    }

    .partnership-badge img {
        width: 180px;
    }
}