.mobile-app-section {
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a8a 100%);
    color: white;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.mobile-app-content {
    position: relative;
    z-index: 1;
}

.mobile-app-section h2 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.mobile-app-section .lead {
    font-size: 1.05rem;
    opacity: 0.9;
}

.mobile-app-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.mobile-app-features-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-app-feature-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.mobile-app-feature-inline i {
    font-size: 1.25rem;
    opacity: 0.85;
}

.mobile-app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-app-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
}

.mobile-app-buttons .btn-light {
    background: white;
    color: #2d5a27;
    border: none;
    font-weight: 600;
}

.mobile-app-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.google-play-badge-img {
    height: 70px;
    width: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
}

.google-play-badge-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mobile-app-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 36px 0;
    }

    .mobile-app-section h2 {
        font-size: 1.4rem;
    }

    .mobile-app-section .lead {
        font-size: 0.95rem;
    }

    .mobile-app-features-strip {
        gap: 1rem;
    }

    .mobile-app-feature-inline {
        font-size: 0.85rem;
    }

    .mobile-app-feature-inline i {
        font-size: 1.1rem;
    }

    .mobile-app-buttons .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .google-play-badge-img {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .mobile-app-section {
        padding: 30px 0;
    }

    .mobile-app-section h2 {
        font-size: 1.25rem;
    }

    .mobile-app-section .lead {
        font-size: 0.9rem;
    }

    .mobile-app-features-strip {
        gap: 0.75rem;
        justify-content: center;
    }

    .mobile-app-feature-inline {
        font-size: 0.8rem;
    }

    .mobile-app-feature-inline i {
        font-size: 1rem;
    }

    .mobile-app-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .google-play-badge-img {
        height: 50px;
    }
}
