.app-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

@media (max-width: 768px) {
    .app-section {
        padding: 3rem 1rem;
    }
}

.app-section-header {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.app-section-header .section-subtitle {
    margin-top: 1rem;
}

.app-section-cta {
    display: flex;
    justify-content: center;
}

.app-section-cta .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.app-section-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
}
