/*
 * Page "Télécharger l'application" — Inkwell
 * Style éditorial sobre, dans l'esprit de la page "Notre histoire" :
 * colonne centrée, typographie généreuse, pas de décor superflu.
 */

.telecharger-hero {
    padding-top: 88px;
    padding-bottom: 72px;
    text-align: center;
}

.telecharger-hero__contenu {
    max-width: 640px;
    margin: 0 auto;
}

.telecharger-hero__contenu .section-compte__badge {
    margin-bottom: 24px;
}

.telecharger-chargement {
    font-size: 2rem;
    color: var(--couleur-corail);
    padding: 60px 0;
}

.telecharger-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--couleur-corail);
    margin-bottom: 14px;
}

.telecharger-eyebrow--disponible {
    color: var(--couleur-vert-emeraude);
}

.telecharger-titre {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--couleur-anthracite);
    margin-bottom: 20px;
}

.telecharger-texte {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(38, 53, 60, 0.8);
    max-width: 500px;
    margin: 0 auto 36px;
}

/*
 * Badges App Store / Google Play — classes dédiées (magasin-badge) pour ne
 * jamais entrer en conflit avec .badge-store (icône ronde 50x50 utilisée
 * ailleurs sur le site, dans la section CTA de l'accueil)
 */
.telecharger-magasins {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.telecharger-magasins--desactives {
    margin-bottom: 32px;
}

.magasin-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    padding: 12px 22px;
    border-radius: 12px;
    background-color: var(--couleur-anthracite);
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.magasin-badge:hover {
    transform: translateY(-2px);
}

.magasin-badge i {
    font-size: 1.9rem;
    flex-shrink: 0;
}

.magasin-badge__texte {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
    text-align: left;
}

.magasin-badge__texte small {
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.magasin-badge__texte strong {
    font-size: 1.08rem;
    font-weight: 700;
}

.magasin-badge--desactive {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.telecharger-retour {
    font-size: 0.95rem;
}

.telecharger-retour i {
    margin-right: 4px;
}

/* --- Section "Pourquoi une application mobile" --- */

.telecharger-corps {
    max-width: 720px;
}

.telecharger-soustitre {
    text-align: center;
    margin: 0 0 48px;
}

.telecharger-avantages {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.telecharger-avantage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(38, 53, 60, 0.08);
}

.telecharger-avantage:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.telecharger-avantage__icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 103, 106, 0.1);
    color: var(--couleur-corail);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.telecharger-avantage__titre {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--couleur-anthracite);
    margin-bottom: 6px;
}

.telecharger-avantage__texte {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(38, 53, 60, 0.7);
}

@media (max-width: 780px) {
    .telecharger-hero {
        padding-top: 56px;
        padding-bottom: 48px;
    }

    .telecharger-titre {
        font-size: 1.9rem;
    }

    .magasin-badge {
        min-width: 0;
        flex: 1 1 200px;
    }

    .telecharger-avantage {
        gap: 16px;
    }
}