/* =========================================================
   BUREAUTIQUE BENEFITS
========================================================= */

.bureautique-benefits {

    background: #020817;

    padding: 24px 2rem 0;

    position: relative;

    overflow: hidden;

}

/* =========================================================
   GRID
========================================================= */

.bureautique-benefits__grid {

    display: grid;

    grid-template-columns: 320px 320px 1fr;

    gap: 0;

    align-items: stretch;

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 18px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(34,197,94,0.10),
            transparent 70%
        ),
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.005)
        );

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 20px 60px rgba(0,0,0,0.28);

}

/* =========================================================
   LEFT
========================================================= */

.bureautique-benefits__left {

    padding: 22px 26px;

}

/* =========================================================
   TITLE
========================================================= */

.bureautique-benefits__title {

    font-size: 18px;

    line-height: 1.3;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 12px;

    letter-spacing: -0.03em;

}

/* =========================================================
   LINE
========================================================= */

.bureautique-benefits__line {

    width: 42px;

    height: 2px;

    background: #22c55e;

    border-radius: 999px;

    margin-bottom: 18px;

}

/* =========================================================
   LIST
========================================================= */

.bureautique-benefits__list {

    display: flex;

    flex-direction: column;

    gap: 12px;

}

/* =========================================================
   ITEM
========================================================= */

.bureautique-benefits__item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}

.bureautique-benefits__item svg {

    width: 16px;
    height: 16px;

    stroke: #22c55e;

    stroke-width: 2;

    flex-shrink: 0;

    margin-top: 2px;

}

.bureautique-benefits__item span {

    font-size: 12px;

    line-height: 1.7;

    color: rgba(255,255,255,0.84);

    font-weight: 500;

}

/* =========================================================
   VISUAL
========================================================= */

.bureautique-benefits__visual {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 16px;

    border-left: 1px solid rgba(255,255,255,0.05);

    border-right: 1px solid rgba(255,255,255,0.05);

}

.bureautique-benefits__visual img {

    width: 100%;

    height: auto;

    display: block;

    border-radius: 12px;

    object-fit: cover;

}

/* =========================================================
   RIGHT
========================================================= */

.bureautique-benefits__right {

    padding: 22px 28px;

}

/* =========================================================
   RIGHT TITLE
========================================================= */

.bureautique-benefits__right-title {

    font-size: 18px;

    line-height: 1.3;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 12px;

    letter-spacing: -0.03em;

}

/* =========================================================
   FEATURES
========================================================= */

.bureautique-benefits__features {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    margin-top: 8px;

}

/* =========================================================
   FEATURE
========================================================= */

.bureautique-benefits__feature {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 0 18px;

    border-right: 1px solid rgba(255,255,255,0.08);

}

.bureautique-benefits__feature:last-child {

    border-right: none;

}

/* =========================================================
   FEATURE ICON
========================================================= */

.bureautique-benefits__feature svg {

    width: 34px;
    height: 34px;

    stroke: #22c55e;

    stroke-width: 1.8;

    margin-bottom: 14px;

}

/* =========================================================
   FEATURE TITLE
========================================================= */

.bureautique-benefits__feature h4 {

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 10px;

}

/* =========================================================
   FEATURE TEXT
========================================================= */

.bureautique-benefits__feature p {

    font-size: 11px;

    line-height: 1.8;

    color: rgba(255,255,255,0.70);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .bureautique-benefits__grid {

        grid-template-columns: 1fr;

    }

    .bureautique-benefits__visual {

        border-left: none;

        border-right: none;

        border-top: 1px solid rgba(255,255,255,0.05);

        border-bottom: 1px solid rgba(255,255,255,0.05);

    }

}

@media (max-width: 768px) {

    .bureautique-benefits {

        padding: 20px 1rem 0;

    }

    .bureautique-benefits__left,
    .bureautique-benefits__right {

        padding: 22px 18px;

    }

    .bureautique-benefits__features {

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    .bureautique-benefits__feature {

        border-right: none;

        padding: 0;

    }

}