/* ============================================
   BANDEAU TÉLÉCHARGEMENT (au-dessus du footer)
   ============================================ */
/* Bandeau + footer au-dessus des fonds fixes de certaines pages (login, inscription…) */
.askim-band,
.askim-footer {
    position: relative;
    z-index: 20;
}

.askim-band {
    position: relative;
    overflow: hidden;
    background-color: #e74c3c;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cpath fill='%23000' fill-opacity='0.06' d='M45 62l-2.2-2C35 53 30 48.4 30 42.8 30 38.2 33.6 34.6 38.2 34.6c2.6 0 5.1 1.2 6.8 3.1 1.7-1.9 4.2-3.1 6.8-3.1 4.6 0 8.2 3.6 8.2 8.2 0 5.6-5 10.2-12.8 17.2L45 62z'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    background-size: 90px 90px, cover;
}

.askim-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
    gap: 2rem;
}

.askim-band-text {
    padding: 60px 0;
}

.askim-band-text h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 0.8rem;
}

.askim-band-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.askim-band-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.askim-band-stores a {
    display: inline-block;
    transition: transform 0.25s ease;
}

.askim-band-stores a:hover {
    transform: translateY(-2px);
}

.askim-band-stores img {
    display: block;
    height: 48px;
    width: auto;
}

/* Téléphones inclinés, coupés par le bas du bandeau */
.askim-band-phones {
    position: relative;
    align-self: stretch;
    min-height: 300px;
}

.askim-band-phone {
    position: absolute;
    width: 190px;
    aspect-ratio: 9 / 19.5;
    background: #fff;
    border-radius: 32px;
    padding: 7px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.askim-band-phone img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 26px;
}

.askim-band-phone-back {
    right: 38%;
    top: 70px;
    transform: rotate(-16deg);
}

.askim-band-phone-front {
    right: 8%;
    top: 30px;
    transform: rotate(-16deg);
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.askim-footer {
    background: #fff;
    color: #333;
    padding: 70px 0 0;
    border-top: none;
}

.askim-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 50px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.askim-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.askim-footer-logo svg {
    width: 26px;
    height: 26px;
    color: #e74c3c;
}

.askim-footer-logo:hover {
    color: #111;
    text-decoration: none;
}

.askim-footer-tagline {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.8rem 0 1.4rem;
    max-width: 260px;
}

.askim-footer-socials {
    display: flex;
    gap: 1.1rem;
}

.askim-footer-socials a {
    color: #222;
    display: inline-flex;
    transition: color 0.2s ease, transform 0.2s ease;
}

.askim-footer-socials a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.askim-footer-socials svg {
    width: 22px;
    height: 22px;
}

.askim-footer-col h3 {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.3rem;
}

.askim-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.askim-footer-col li {
    margin-bottom: 0.9rem;
}

.askim-footer-col a {
    color: #333;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.askim-footer-col a:hover {
    color: #e74c3c;
    text-decoration: none;
}

.askim-footer a:focus-visible {
    outline: 2px solid #e74c3c;
    outline-offset: 3px;
    border-radius: 4px;
}

.askim-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.4rem 5%;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #999;
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
    .askim-footer-inner {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .askim-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .askim-band-inner {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        min-height: 0;
    }

    .askim-band-text {
        padding: 50px 0 10px;
    }

    .askim-band-text h2 {
        font-size: 2rem;
    }

    .askim-band-text p {
        font-size: 1rem;
    }

    .askim-band-stores {
        justify-content: center;
    }

    .askim-band-stores img {
        height: 44px;
    }

    .askim-band-phones {
        min-height: 230px;
    }

    .askim-band-phone {
        width: 150px;
        border-radius: 26px;
        padding: 6px;
    }

    .askim-band-phone img {
        border-radius: 21px;
    }

    .askim-band-phone-back {
        right: auto;
        left: calc(50% - 150px);
        top: 60px;
    }

    .askim-band-phone-front {
        right: auto;
        left: calc(50% - 20px);
        top: 35px;
    }

    .askim-footer {
        padding-top: 50px;
    }

    .askim-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.2rem 1.5rem;
        padding-bottom: 36px;
    }

    .askim-footer-col:last-child {
        grid-column: 1 / -1;
    }

    .askim-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
}
