.band-base{
    width: 1280px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.band{
    display: flex;
    justify-content: center;
    background: #071325;
}

.band-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.band-content{
    background: #c59c18;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    height: 150px;
    width: 25%;
}
.bottom-base{
    display: flex;
    width: 1280px;
}


.bottom{
    background: linear-gradient(180deg, #0b1220 0%, #0a1020 100%);
    margin-top: 80px;
    padding: 90px 0 70px;
    display: flex;
    justify-content: center;
}

.bottom-inner{
    width: min(1200px, 92%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bottom-title{
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
}

.bottom-subtitle{
    margin: 0 0 40px 0;
    max-width: 820px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.bottom-base{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.bottom-content{
    text-align: left;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: 26px 24px;
    color: rgba(255,255,255,0.88);
    box-shadow: 0 18px 50px -30px rgba(0,0,0,0.55);
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* petit accent teal en bord */
.bottom-content::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(58,168,163,0.35); /* #3AA8A3 */
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.bottom-content:hover{
    transform: translateY(-5px);
    border-color: rgba(58,168,163,0.25);
    box-shadow: 0 28px 70px -40px rgba(0,0,0,0.75);
}

.bottom-content:hover::before{
    opacity: 1;
}

.bottom-content p{
    margin: 0;
}

.bottom-content p:first-child{
    color: #ffffff;
    margin-bottom: 10px;
}

/* responsive */
@media (max-width: 1280px){
    .bottom-base{
        grid-template-columns: 1fr;
    }
    .bottom{
        padding: 70px 0 55px;
    }
}

