/* =========================================================
   SYSTEME DASHBOARD
========================================================= */

.systeme-dashboard {

    background: #020817;

    padding: 0 1.5rem 1.5rem;

}

/* =========================================================
   GRID
========================================================= */

.systeme-dashboard__grid {

    display: grid;

    grid-template-columns: 1fr 340px;

    gap: 16px;

    align-items: start;

}

/* =========================================================
   LEFT / RIGHT
========================================================= */

.systeme-dashboard__left,
.systeme-dashboard__right {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

/* =========================================================
   PANEL
========================================================= */

.systeme-dashboard__panel {

    border: 1px solid rgba(255,255,255,0.05);

    border-radius: 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.005)
        );

    padding: 16px;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 16px 40px rgba(0,0,0,0.24);

}

/* =========================================================
   TITLE
========================================================= */

.systeme-dashboard__title {

    font-size: 15px;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 18px;

}

/* =========================================================
   SERVICES
========================================================= */

.systeme-dashboard__services {

    display: grid;

    grid-template-columns: repeat(5, minmax(0,1fr));

    gap: 10px;

}

/* =========================================================
   SERVICE CARD
========================================================= */

.systeme-dashboard__service {

    padding: 12px 12px;

    border-radius: 14px;

    border: 1px solid rgba(255,255,255,0.05);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.005)
        );

    min-height: 150px;

}

.systeme-dashboard__service-icon {

    width: 40px;
    height: 40px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 16px;

    background:
        radial-gradient(
            circle at center,
            rgba(37,99,235,0.18),
            transparent 70%
        );

    border: 1px solid rgba(37,99,235,0.16);

}

.systeme-dashboard__service-icon svg {

    width: 18px;
    height: 18px;

    stroke: #3b82f6;

    stroke-width: 1.9;

}

.systeme-dashboard__service h3 {

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 10px;

}

.systeme-dashboard__service p {

    font-size: 10px;

    line-height: 1.7;

    color: rgba(255,255,255,0.68);

}

/* =========================================================
   BOTTOM
========================================================= */

.systeme-dashboard__bottom {

    display: grid;

    grid-template-columns: 330px 1fr;

    gap: 16px;

}

/* =========================================================
   SYSTEM STATUS
========================================================= */

.systeme-dashboard__system {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}

.systeme-dashboard__circle {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    border: 10px solid #22c55e;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    position: relative;

}

.systeme-dashboard__circle::before {

    content: "";

    position: absolute;

    inset: -10px;

    border-radius: 50%;

    border-top: 10px solid #4ade80;

    border-right: 10px solid transparent;

    border-left: 10px solid transparent;

    border-bottom: 10px solid transparent;

    transform: rotate(-30deg);

}

.systeme-dashboard__circle strong {

    font-size: 42px;

    color: #22c55e;

}

.systeme-dashboard__system-content h3 {

    font-size: 24px;

    line-height: 1.3;

    font-weight: 800;

    color: #4ade80;

    margin-bottom: 10px;

}

.systeme-dashboard__system-content p {

    font-size: 13px;

    line-height: 1.8;

    color: rgba(255,255,255,0.72);

    margin-bottom: 18px;

}

.systeme-dashboard__system-content ul {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-bottom: 20px;

}

.systeme-dashboard__system-content li {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    color: rgba(255,255,255,0.82);

}

.dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    display: inline-block;

}

.dot.green {

    background: #22c55e;

}

.systeme-dashboard__system-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

}

/* =========================================================
   HEADER
========================================================= */

.systeme-dashboard__header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 14px;

}

.systeme-dashboard__header a {

    font-size: 11px;

    color: #3b82f6;

}

/* =========================================================
   TABLE
========================================================= */

.systeme-dashboard__table {

    display: flex;

    flex-direction: column;

}

.systeme-dashboard__row {

    display: grid;

    grid-template-columns: 2fr 1.3fr .8fr 1fr;

    gap: 12px;

    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    font-size: 11px;

    color: rgba(255,255,255,0.82);

}

.systeme-dashboard__row--head {

    font-size: 10px;

    text-transform: uppercase;

    color: rgba(255,255,255,0.40);

}

/* =========================================================
   STATUS
========================================================= */

.status {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 4px 8px;

    border-radius: 999px;

    font-size: 10px;

    font-weight: 700;

}

.status.green {

    background: rgba(34,197,94,0.14);

    color: #22c55e;

}

/* =========================================================
   CTA
========================================================= */

.systeme-dashboard__cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.05);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.015),
            rgba(255,255,255,0.005)
        );

}

.systeme-dashboard__cta-left {

    display: flex;

    align-items: center;

    gap: 16px;

}

.systeme-dashboard__cta-icon {

    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(37,99,235,0.18),
            transparent 70%
        );

    border: 1px solid rgba(37,99,235,0.14);

}

.systeme-dashboard__cta-icon svg {

    width: 28px;
    height: 28px;

    stroke: #3b82f6;

}

.systeme-dashboard__cta h3 {

    font-size: 16px;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 6px;

}

.systeme-dashboard__cta p {

    font-size: 12px;

    line-height: 1.8;

    color: rgba(255,255,255,0.70);

}

/* =========================================================
   BUTTON
========================================================= */

.systeme-dashboard__button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 240px;

    padding: 14px 22px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 14px 28px rgba(37,99,235,0.24);

}

/* =========================================================
   BENEFITS
========================================================= */

.systeme-dashboard__benefits {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.systeme-dashboard__benefit {

    display: flex;

    align-items: flex-start;

    gap: 12px;

}

.systeme-dashboard__benefit-icon {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(37,99,235,0.14);

    background:
        radial-gradient(
            circle at center,
            rgba(37,99,235,0.14),
            transparent 70%
        );

}

.systeme-dashboard__benefit-icon svg {

    width: 20px;
    height: 20px;

    stroke: #3b82f6;

}

.systeme-dashboard__benefit h3 {

    font-size: 13px;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 4px;

}

.systeme-dashboard__benefit p {

    font-size: 11px;

    line-height: 1.7;

    color: rgba(255,255,255,0.68);

}

/* =========================================================
   ACTIONS
========================================================= */

.systeme-dashboard__actions {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.systeme-dashboard__actions a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 16px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.05);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.012),
            rgba(255,255,255,0.004)
        );

    color: rgba(255,255,255,0.82);

    font-size: 12px;

}

.systeme-dashboard__actions a span {

    display: flex;

    align-items: center;

    gap: 10px;

}

.systeme-dashboard__actions a svg {

    width: 18px;
    height: 18px;

    stroke: #3b82f6;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {

    .systeme-dashboard__services {

        grid-template-columns: repeat(5, 1fr);

    }

}

@media (max-width: 1200px) {

    .systeme-dashboard__grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 992px) {

    .systeme-dashboard__bottom {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 768px) {

    .systeme-dashboard {

        padding: 0 1rem 1rem;

    }

    .systeme-dashboard__services {

        grid-template-columns: 1fr;

    }

    .systeme-dashboard__cta {

        flex-direction: column;

        align-items: flex-start;

    }

    .systeme-dashboard__button {

        width: 100%;

    }

}