.mobile-app-section {
    background-color: var(--famous-primary);
    width: 100%;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 20px;
}

.mobile-mockup {
    max-width: 400px;
    max-height: 300px !important;

    margin-bottom: -10px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.mobile-app-section h2 {
    line-height: 1.3;
    color: var(--text-high);
    font-size: clamp(1.6rem, 2.2vw, 2.15rem) !important;
    letter-spacing: 0.01em;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
}

.mobile-app-section p {
    color: var(--text-medium);
}

.mobile-app-section .lead {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.65;
    max-width: 44ch;
    margin-bottom: 16px;
}

.mobile-app-section h4 {
    color: var(--text-high);
    font-size: clamp(1rem, 1.35vw, 1.24rem) !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
    line-height: 1.4;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.app-buttons {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
}

.app-buttons .btn {
    border-radius: var(--borderRadius-default);
    font-weight: 500;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    text-align: left;
    white-space: nowrap;
}

.app-buttons .btn span {
    font-size: 0.92rem;
    line-height: 1;
}

.app-buttons .btn:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: #f8f9fa;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}


.store-btn-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .mobile-mockup {
        max-width: 300px;
        margin-top: 40px;
    }

    .mobile-app-section {
        padding-bottom: 60px;
    }

    .mobile-app-section h2 {
        font-size: clamp(1.35rem, 6.2vw, 1.8rem) !important;
    }

    .mobile-app-section h4 {
        font-size: clamp(0.96rem, 4.2vw, 1.1rem) !important;
    }

    .mobile-app-section .lead {
        max-width: none;
    }

    .app-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}