/* ============================================
   MOBILE APP SECTION STYLES
   ============================================ */

.mobile-app-section {
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        rgba(98, 65, 30, 0.02) 100%
    );
    padding: 80px 0;
}

.app-cta-card {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 60px;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(98, 65, 30, 0.2);
}

.app-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.app-title {
    font-size: 36px;
    font-family: var(--font-primary);
    font-weight: var(--font-extra-bold);
    margin-bottom: 15px;
}

.app-description {
    font-size: 18px;
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
    opacity: 0.9;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
}

.app-store-badge,
.play-store-badge {
    height: 50px;
    width: auto;
}

.free-offer-banner {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.offer-title {
    font-size: 32px;
    font-family: var(--font-primary);
    font-weight: var(--font-extra-bold);
    color: var(--primary);
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-text {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: var(--font-medium);
    color: var(--text-color);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn-small {
    display: inline-block;
}

.app-store-badge-small,
.play-store-badge-small {
    height: 40px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-app-section {
        padding: 40px 0;
    }

    .app-cta-card {
        padding: 30px 20px;
    }

    .app-title {
        font-size: 28px;
    }

    .free-offer-banner {
        padding: 30px 20px;
    }

    .offer-title {
        font-size: 24px;
    }
}
