/*==================================================
ABOUT HOME
==================================================*/

.about-home{
    padding:110px 0;
    background:#fff;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

/*=========================
IMAGE
=========================*/

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:transform .4s ease, box-shadow .4s ease;
}

.about-image img:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/*=========================
CONTENU
=========================*/

.about-content{
    max-width:680px;
}

.about-content .section-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:40px;
    background:#f3efff;
    color:#6d28d9;
    font-weight:700;
    margin-bottom:22px;
}

.about-content h2{
    font-size:2.7rem;
    line-height:1.2;
    color:#241c44;
    margin-bottom:28px;
}

.about-content p{
    font-size:1.08rem;
    color:#666;
    line-height:1.95;
    margin-bottom:22px;
}

/*=========================
LISTE
=========================*/

.about-list{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:16px;
    color:#444;
    font-weight:500;
}

.about-list li::before{
    content:"✓";
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#efe9ff;
    color:#6d28d9;
    border-radius:50%;
    font-weight:bold;
    flex-shrink:0;
}

/*=========================
BOUTON PREMIUM
=========================*/

.about-content .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:24px;
    padding:16px 38px;
    background:linear-gradient(135deg,#7c3aed,#5b21b6);
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    font-weight:600;
    letter-spacing:.3px;
    border-radius:50px;
    box-shadow:0 12px 30px rgba(91,33,182,.25);
    transition:all .35s ease;
}

.about-content .btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,#8b5cf6,#6d28d9);
    box-shadow:0 18px 40px rgba(91,33,182,.35);
}

.about-content .btn:active{
    transform:translateY(-1px);
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.about-container{
    grid-template-columns:1fr;
    gap:50px;
}

.about-image{
    max-width:420px;
    margin:auto;
}

.about-content{
    max-width:100%;
    text-align:center;
}

.about-list li{
    justify-content:center;
}

}

@media(max-width:768px){

.about-home{
    padding:80px 20px;
}

.about-content h2{
    font-size:2rem;
}

.about-content p{
    font-size:1rem;
}

.about-content .btn{
    width:100%;
    padding:15px 25px;
}

}