/* ============================================================================
   DOWNLOAD PAGE STYLES
   ============================================================================ */

/* Override body for download page — allow scrolling */
body:has(.download-page) {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #FAF5FF 0%, #FFFFFF 100%);
    overflow: auto;
    min-height: 100vh;
}

.download-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #222222;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.download-container {
    max-width: 600px;
    text-align: center;
}

.download-headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #222222;
    margin: 24px 0 16px;
    letter-spacing: -0.5px;
}

.download-subheadline {
    font-size: 17px;
    color: #717171;
    margin: 0 0 40px;
    line-height: 1.6;
}

/* Install Instructions */
.install-instructions {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.install-card {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.install-icon {
    width: 64px;
    height: 64px;
    background: #FAF5FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #A855F7;
}

.install-icon i,
.install-icon svg {
    width: 32px;
    height: 32px;
}

.install-icon-success {
    background: #ECFDF5;
    color: #10B981;
}

.install-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #222222;
}

.install-card p {
    font-size: 15px;
    color: #717171;
    margin: 0 0 20px;
}

.install-card ol {
    text-align: left;
    padding-left: 24px;
    margin: 0;
}

.install-card ol li {
    font-size: 15px;
    color: #555;
    padding: 8px 0;
    line-height: 1.5;
}

.install-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.install-card .btn i,
.install-card .btn svg {
    width: 20px;
    height: 20px;
}

/* Hero CTA button styling */
.hero-cta {
    margin-top: 32px;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-cta .btn i,
.hero-cta .btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .download-page {
        padding: 32px 16px;
    }

    .download-headline {
        font-size: 26px;
    }

    .download-subheadline {
        font-size: 16px;
    }

    .install-card {
        padding: 24px 20px;
    }
}
