/* Download App Section - Light Theme */
.download-section {
    padding: 6rem 0;
    background: #ffffff;
    color: #0F172A;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background gradient effect - Subtle on white */
.download-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.download-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #0F172A;
}

.download-title span {
    color: #4F46E5;
    /* Brand color */
}

.download-desc {
    font-size: 1.25rem;
    color: #475569;
    /* Slate 600 */
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #0F172A;
    /* Dark buttons for contrast */
    border: 1px solid #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-download svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-download span {
    text-align: left;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    line-height: 1.1;
    color: #94a3b8;
}

.btn-download strong {
    font-size: 1rem;
    color: white;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2rem;
    }
}