/* ===== ЛИЧНЫЙ КАБИНЕТ В ТЕЛЕФОНЕ ===== */
.lk-app-promo-section{
    text-align: -webkit-center;
}

.lk-app-promo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    padding: 10px;
    background: white;
    border-radius: 20px;
    color: white;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    flex-wrap: wrap;
}

.lk-app-promo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.lk-app-promo-container::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.lk-app-promo-content {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lk-app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    margin-bottom: 35px;
}

.lk-app-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.lk-app-feature i {
    color: #ffd700;
    font-size: 20px;
}

.lk-app-download p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.lk-app-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.lk-app-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.lk-app-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lk-app-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.lk-app-icon span {
    font-size: 14px;
    font-weight: 500;
}

.lk-app-mockup {
    flex: 5;
    position: relative;
    z-index: 2;
    text-align: center;
}

.lk-app-promo-content h2 {
    font-size: 20px;
    font-weight: 300;
    flex: 10;
    color: #666;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lk-app-mockup img {
    max-width: 100%;
    height: 150px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .lk-app-promo-container {
        flex-direction: column;
        text-align: center;
        background: white;
        border-radius: 20px;
        padding: 40px;
    }

    .lk-app-promo-content {
        flex-direction: column;
    }

    .lk-app-promo-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .lk-app-features {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .lk-app-icons {
        justify-content: center;
    }

    .lk-app-mockup {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .lk-app-promo-content h2 {
        font-size: 28px;
    }

    .lk-app-features {
        grid-template-columns: 1fr;
    }

    .lk-app-icons {
        flex-direction: column;
        align-items: center;
    }

    .lk-app-icon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .lk-app-promo-container {
        padding: 30px 20px;
    }

    .lk-app-promo-content h2 {
        font-size: 24px;
    }

    .lk-app-mockup img {
        height: 120px;
    }

    .lk-app-feature {
        font-size: 14px;
    }
}