/* ---------- Layout ---------- */

.download-container {
    max-width: 800px;
}

.download-hero {
    text-align: center;
}

.download-title {
    margin-top: 1rem;
}

.download-subtitle {
    max-width: 700px;
    margin: 1.5rem auto;
    font-size: 1.3rem;
    font-weight: 500;
}

.download-benefits {
    max-width: 520px;
    margin: 2rem auto;
    text-align: left;
    line-height: 2;
}

.section-gap {
    height: 2.5rem;
}

.section-divider {
    margin: 4rem 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
}

.section-intro {
    max-width: 700px;
    margin: 1rem auto 2rem;
}

/* ---------- Download Cards ---------- */

.download-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 280px;
    max-width: 420px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .download-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 24px rgba(0,0,0,.15);
    }

    .download-card h3 {
        margin: 0;
        font-size: 2rem;
    }

    .download-card p {
        margin: .9rem 0;
    }

.version {
    color: #666;
}

.trial {
    color: #2b7a2b;
    font-weight: 600;
}

/* ---------- Buttons ---------- */

.download-button {
    display: inline-block;
    margin-top: auto;
    padding: .9rem 1.8rem;
    background: #1d7cf2;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(29,124,242,.25);
    transition: background .2s ease, transform .2s ease;
}

    .download-button:hover {
        background: #1767c7;
        transform: translateY(-2px);
    }

/* ---------- Screenshot ---------- */

.screenshot-section {
    margin: 2rem 0;
    text-align: center;
}

.screenshot-frame {
    padding: 12px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}

.screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ---------- Getting Started ---------- */

.getting-started {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #1d7cf2;
    color: white;
    font-weight: bold;
}

.step-text {
    font-size: 1.1rem;
}

.help-text {
    margin-top: 2rem;
}

.cta {
    margin-top: 2rem;
    text-align: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 700px) {

    .download-card {
        max-width: none;
    }

    .download-subtitle {
        font-size: 1.15rem;
    }

    .download-card h3 {
        font-size: 1.7rem;
    }

    .step-text {
        font-size: 1rem;
    }
}

.android-install {
    margin: 2rem 0;
}