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

.download-page {
    width: 80%;
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.download-hero {
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px 80px;
}


/* Android icon */

.download-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 24px;

    background: linear-gradient(
        to bottom,
        #5A79FC,
        #364BC4
    );

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-icon i {
    font-size: 48px;
    color: #fff;
}


/* Heading */

.download-hero h1 {
    color: #fff;

    font-size: clamp(40px, 7vw, 80px);
    line-height: 1.05;

    font-weight: 700;

    margin: 0 0 25px;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


/* Description */

.download-description {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.75);

    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;

    margin: 0 0 35px;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.download-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    min-width: 230px;

    padding: 14px 28px;

    background: linear-gradient(
        to bottom,
        #5A79FC,
        #364BC4
    );

    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.download-button i {
    font-size: 28px;
}

.download-button span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1.1;
}

.download-button small {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.download-button:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

    filter: brightness(1.08);
}


.download-note {
    color: rgba(255, 255, 255, 0.4);

    font-size: 13px;

    margin-top: 15px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.download-features {
    padding: 80px 0;
    text-align: center;
}

.download-features h2 {
    color: #fff;

    font-size: clamp(30px, 5vw, 50px);

    margin: 0 0 50px;
}


.download-feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.download-feature {
    background: linear-gradient(
        to bottom,
        #0E1B38 0%,
        #0C1936 50%,
        #0A1733 100%
    );

    border: 2px solid #192941;

    border-radius: 20px;

    padding: 35px 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.download-feature:hover {
    transform: translateY(-6px);

    border-color: rgba(255, 255, 255, 0.12);

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}


.download-feature i {
    font-size: 34px;

    color: #5A79FC;

    margin-bottom: 20px;
}


.download-feature h3 {
    color: #fff;

    font-size: 20px;

    margin: 0 0 10px;
}


.download-feature p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.download-bottom-cta {
    background: linear-gradient(to bottom, #0E1B38 0%, #0C1936 50%, #0A1733 100%);
    border: 2px solid #192941;

    border-radius: 20px;

    padding: 60px 25px;

    margin: 40px 0 80px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.download-bottom-cta h2 {
    color: #fff;

    font-size: clamp(28px, 4vw, 42px);

    margin: 0 0 15px;
}


.download-bottom-cta p {
    color: rgba(255, 255, 255, 0.7);

    font-size: 17px;

    line-height: 1.5;

    max-width: 600px;

    margin: 0 auto 30px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .download-page {
        width: 90%;
    }

    .download-hero {
        min-height: 65vh;

        padding: 70px 10px;
    }

    .download-hero h1 {
        font-size: clamp(38px, 11vw, 60px);
    }

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

    .download-feature-grid {
        grid-template-columns: 1fr;
    }

    .download-features {
        padding: 60px 0;
    }

    .download-bottom-cta {
        padding: 45px 20px;
    }

    .download-button {
        width: 100%;
        max-width: 280px;
    }
}

