.debug {
    border: 1px solid red;
}


#about {
    /*background-color: red;*/
}

/* section{
    padding-top: 20px;
} */

.two-of-us {
    width: 1500px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}

.articles {
    display: flex;
    flex-wrap: wrap;
    width: var(--content-width);
    justify-content: space-evenly;
    padding-top: 50px;
}

article {
    /*text-align: center;*/
    width: 300px;
    padding: 0 0 20px 0 !important;
}

.card {
    background: #fff;
    width: 350px;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px !important;
}

.card .card-photo {
    position: relative;
    display: inline-block;
    width: 100%;
}

.card img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.card .linkedin-link {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s;
}

.card .linkedin-link svg {
    width: 18px;
    height: 18px;
    fill: #0a66c2;
}

.card .linkedin-link:hover {
    opacity: 0.7;
}

/* CHIFFRES SECTION */
#chiffres {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 15% 40px;
    background: #fff;
}

#chiffres h2 {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

#chiffres h2 strong {
    font-weight: 700;
}

.chiffres-bar {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    background: var(--background-sweet-orange);
    border-radius: 12px;
    padding: 30px 20px;
    gap: 20px;
}

.chiffre-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.chiffre-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--premium-color);
    margin-bottom: 6px;
}

.chiffre-label {
    font-size: 0.85rem;
    color: #555;
}

/* DIFFERENCE SECTION */
#difference {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 15% 60px;
    background: #fff;
}

#difference h2 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.difference-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-left: calc((100% - var(--content-width)) / 2);
    padding-right: calc((100% - var(--content-width)) / 2);
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.difference-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #333;
}

.difference-list li svg {
    width: 22px;
    height: 22px;
    fill: var(--premium-color);
    flex-shrink: 0;
}

.cta-box {
    background: var(--background-sweet-grey);
    border-radius: 12px;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}

.cta-box p {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-primary {
    background: var(--premium-color);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-outline {
    background: transparent;
    color: var(--premium-color);
    border: 2px solid var(--premium-color);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
    background: var(--premium-color);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .chiffres-bar {
        flex-direction: column;
        gap: 25px;
    }

    .difference-content {
        flex-direction: column;
        align-items: center;
    }

    .cta-box {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        text-align: center;
        width: 100%;
    }
}
