.mobile-showcase {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mobile-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phones-wrap {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    justify-content: center;
}

.phone {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.phone-main {
    width: 240px;
    height: 480px;
    background: var(--navy-3);
    border: 7px solid rgba(255, 255, 255, .15);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .6), 0 0 48px rgba(29, 78, 216, .2);
    animation: phoneFloat 5s ease-in-out infinite;
}

.phone-sec {
    width: 200px;
    height: 400px;
    background: var(--navy-3);
    border: 6px solid rgba(255, 255, 255, .1);
    box-shadow: 0 32px 64px rgba(0, 0, 0, .5);
    animation: phoneFloat 6s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.phone-notch {
    width: 70px;
    height: 20px;
    background: var(--navy);
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    padding: 32px 14px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 4px;
}

.ps-stats {
    display: flex;
    gap: 6px;
}

.ps-stat {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
}

.ps-stat .n {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.ps-stat .l {
    font-size: 9px;
    color: rgba(255, 255, 255, .35);
    margin-top: 2px;
}

.ps-lead {
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.ps-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.ps-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
}

.ps-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, .35);
}

.ps-tag {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 99px;
    font-weight: 700;
    margin-left: auto;
    flex-shrink: 0;
}

.ps-wa {
    background: rgba(37, 211, 102, .08);
    border: 1px solid rgba(37, 211, 102, .2);
    border-radius: 8px;
    padding: 9px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.ps-wa-icon {
    font-size: 16px;
}

.ps-wa-text {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
}

.ps-wa-text strong {
    color: #25D366;
    display: block;
    font-size: 11px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feat-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.feat-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.store-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

.store-icon {
    font-size: 26px;
}

.store-sub {
    font-size: 11px;
    opacity: .45;
    display: block;
    margin-bottom: 2px;
}

.notif-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.notif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.notif-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .4s;
}

.notif-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(29, 78, 216, .1);
    transform: translateY(-4px);
}

.notif-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.notif-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.notif-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.coming-section {
    background: var(--navy);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media(max-width:1024px) {
    .mobile-inner {
        grid-template-columns: 1fr;
    }

    .phones-wrap {
        margin-bottom: 40px;
    }

    .notif-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .phones-wrap {
        flex-direction: column;
        align-items: center;
    }

    .phone-sec {
        display: none;
    }

    .notif-grid {
        grid-template-columns: 1fr;
    }
}