@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root{
    --blue:#1f3f8b;
    --blue-soft:#eef4ff;
    --green:#35a853;
    --green-dark:#247a35;
    --bg:#f7f9fc;
    --white:#fff;
    --text:#172033;
    --muted:#5f6b7a;
    --border:#e5eaf0;
    --shadow:0 18px 45px rgba(23,32,51,.10);
    --shadow-soft:0 8px 22px rgba(23,32,51,.07);
    --radius:24px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    font-family:"Inter",Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
}

a{text-decoration:none;color:inherit}

main{min-height:75vh}

.vc-container,.container{
    width:92%;
    max-width:1180px;
    margin:0 auto;
}

/* HEADER */

.vc-site-header{
    background:white;
    padding:10px 0;
    border-bottom:1px solid var(--border);
}

.vc-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.vc-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.vc-brand-logo{
    width:145px;
    height:auto;
}

.vc-brand strong{
    display:block;
    font-size:38px;
    font-weight:900;
    line-height:1;
}

.vc-brand span{
    display:block;
    font-size:17px;
    font-weight:800;
    margin-top:4px;
}

.vc-brand em{
    display:block;
    font-style:normal;
    color:var(--green-dark);
    font-size:14px;
    font-weight:800;
    margin-top:3px;
}

.vc-login-btn{
    background:var(--green);
    color:white;
    padding:12px 20px;
    border-radius:999px;
    font-weight:900;
    white-space:nowrap;
}

.vc-login-btn:hover{
    background:var(--green-dark);
}

/* NAV */

.vc-product-nav{
    background:#eef5ff;
    border-top:1px solid #dbe6ff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:50;
}

.vc-product-nav-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    padding:18px 0;
    overflow:visible;
}

.vc-product-nav-inner a{
    background:white;
    border:1px solid var(--border);
    padding:16px 26px;
    border-radius:999px;
    font-size:16px;
    font-weight:900;
    box-shadow:var(--shadow-soft);
    transition:.2s;
}

.vc-product-nav-inner a:hover{
    transform:translateY(-2px);
    background:var(--blue-soft);
    border-color:var(--blue);
    color:var(--blue);
}

.vc-site-notice{
    background:var(--blue-soft);
    border-bottom:1px solid #dbe5ff;
    padding:10px 0;
    font-size:14px;
    font-weight:800;
    text-align:center;
}

/* BUTTONS */

.vc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 24px;
    border-radius:999px;
    font-weight:900;
    transition:.2s;
}

.vc-btn-primary{
    background:var(--green);
    color:white;
    box-shadow:var(--shadow-soft);
}

.vc-btn-primary:hover{
    background:var(--green-dark);
    transform:translateY(-2px);
}

.vc-btn-secondary{
    background:white;
    color:var(--text);
    border:1px solid var(--border);
}

.vc-btn-secondary:hover{
    background:var(--blue-soft);
    color:var(--blue);
    transform:translateY(-2px);
}

/* HERO */

.vc-home-saas{
    background:linear-gradient(180deg,#fff 0%,#f7f9fc 100%);
    padding:45px 0 55px;
}

.vc-home-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:34px;
    align-items:center;
}

.vc-badge{
    display:inline-block;
    background:var(--blue-soft);
    color:var(--blue);
    padding:9px 16px;
    border-radius:999px;
    font-weight:900;
    font-size:14px;
    margin-bottom:18px;
}

.vc-home-left h1{
    font-size:66px;
    line-height:.98;
    font-weight:900;
    letter-spacing:-2px;
    margin:0 0 22px;
}

.vc-home-lead{
    font-size:18px;
    line-height:1.75;
    color:var(--muted);
    max-width:680px;
}

.vc-home-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:28px;
}

.vc-home-reassurance{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px;
}

.vc-home-reassurance div{
    background:white;
    border:1px solid var(--border);
    border-radius:999px;
    padding:9px 13px;
    font-weight:800;
    font-size:13px;
    box-shadow:var(--shadow-soft);
}

/* HOW CARD */

.vc-how-card{
    background:white;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    box-shadow:var(--shadow);
}

.vc-how-card h2{
    font-size:28px;
    margin:0 0 22px;
}

.vc-how-mini-grid{
    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    gap:10px;
    align-items:center;
}

.vc-how-mini{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
    text-align:center;
}

.vc-how-mini span{
    width:34px;
    height:34px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--blue);
    color:white;
    font-weight:900;
    margin-bottom:8px;
}

.vc-how-mini h3{
    margin:0 0 5px;
    font-size:16px;
}

.vc-how-mini p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.45;
}

.vc-how-arrow{
    color:var(--blue);
    font-weight:900;
    font-size:22px;
}

.vc-private-note{
    margin-top:18px;
    background:var(--blue-soft);
    border-radius:18px;
    padding:15px;
    color:var(--text);
    font-weight:750;
    font-size:14px;
    line-height:1.55;
}

/* MODULE CARDS */

.vc-modules-overview{
    background:white;
    padding:70px 0;
}

.vc-modules-overview h2{
    text-align:center;
    font-size:36px;
    margin:0 0 34px;
}

.vc-overview-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.vc-overview-card{
    background:white;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:24px;
    box-shadow:var(--shadow-soft);
    transition:.2s;
}

.vc-overview-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.vc-overview-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:var(--blue-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:16px;
}

.vc-overview-card h3{
    font-size:20px;
    margin:0 0 10px;
}

.vc-overview-card p{
    color:var(--muted);
    line-height:1.6;
    font-size:15px;
}

.vc-overview-card a{
    color:var(--blue);
    font-weight:900;
    display:inline-block;
    margin-top:16px;
}

.vc-preview-label{
    display:inline-block;
    background:var(--blue-soft);
    color:var(--blue);
    border-radius:999px;
    padding:7px 11px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.06em;
    margin:12px 0;
}

/* FAKE PREVIEWS */

.vc-fake-screen,
.vc-fake-map,
.vc-fake-quiz,
.vc-fake-actions{
    background:var(--bg);
    border:1px solid var(--border);
    border-radius:18px;
    padding:15px;
    min-height:150px;
}

.vc-fake-line{
    height:14px;
    width:90%;
    border-radius:999px;
    background:#dbeafe;
    margin-bottom:12px;
}

.vc-fake-line.short{width:55%}

.vc-fake-table{
    height:90px;
    border-radius:14px;
    background:repeating-linear-gradient(180deg,#fff 0,#fff 28px,#e5e7eb 29px);
}

.vc-fake-map{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#dbeafe,#edf9f0);
}

.vc-fake-map span{
    position:absolute;
    width:52px;
    height:52px;
    border-radius:50%;
    background:rgba(53,168,83,.28);
}

.vc-fake-map span:nth-child(1){left:22px;top:26px}
.vc-fake-map span:nth-child(2){right:34px;top:20px;background:rgba(31,63,139,.22)}
.vc-fake-map span:nth-child(3){left:42%;bottom:22px}
.vc-fake-map span:nth-child(4){right:18px;bottom:24px;width:28px;height:28px}

.vc-fake-quiz p{
    color:var(--text);
    font-weight:900;
}

.vc-fake-quiz div{
    background:white;
    border-radius:12px;
    padding:8px 10px;
    margin:7px 0;
    font-weight:700;
}

.vc-fake-quiz .good{
    background:#edf9f0;
    color:var(--green-dark);
}

.vc-fake-actions div{
    display:flex;
    justify-content:space-between;
    gap:10px;
    background:white;
    padding:10px;
    border-radius:12px;
    margin-bottom:8px;
}

.vc-fake-actions em{
    background:var(--blue-soft);
    color:var(--blue);
    border-radius:999px;
    padding:3px 8px;
    font-style:normal;
    font-weight:900;
    font-size:12px;
}

/* SECTIONS */

.vc-section{
    padding:75px 0;
}

.vc-section-soft{
    background:white;
}

.vc-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.vc-section-kicker{
    color:var(--green-dark);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:13px;
}

.vc-section h2{
    font-size:38px;
    line-height:1.15;
    margin:12px 0 18px;
}

.vc-section p{
    color:var(--muted);
    font-size:17px;
    line-height:1.75;
}

.vc-highlight-box{
    background:linear-gradient(135deg,var(--blue),#172554);
    color:white;
    border-radius:var(--radius);
    padding:34px;
    box-shadow:var(--shadow);
}

.vc-highlight-box h3,
.vc-highlight-box p{
    color:white;
}

/* LOVE */

.vc-users-love{
    background:var(--bg);
    padding:70px 0;
}

.vc-users-love h2{
    text-align:center;
    font-size:36px;
    margin:0 0 34px;
}

.vc-love-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.vc-love-grid div{
    background:white;
    border:1px solid var(--border);
    border-radius:20px;
    padding:22px;
    box-shadow:var(--shadow-soft);
    color:var(--muted);
}

.vc-love-grid strong{
    color:var(--text);
}

/* CTA */

.vc-cta{
    background:linear-gradient(135deg,var(--blue),#172554);
    color:white;
    padding:65px 0;
}

.vc-cta-with-fenny{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:28px;
    align-items:center;
}

.vc-cta h2{
    font-size:34px;
    margin:0 0 12px;
}

.vc-cta p{
    color:rgba(255,255,255,.88);
    line-height:1.7;
}

.vc-fenny-big{
    width:72px;
    height:72px;
    border-radius:24px;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
}

/* FOOTER */

.vc-site-footer{
    background:white;
    border-top:1px solid var(--border);
    padding:45px 0 0;
}

.vc-footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:36px;
}

.vc-site-footer h3,
.vc-site-footer h4{
    margin-top:0;
}

.vc-site-footer p,
.vc-site-footer a{
    color:var(--muted);
}

.vc-site-footer a{
    display:block;
    margin:9px 0;
    font-weight:700;
}

.vc-footer-bottom{
    border-top:1px solid var(--border);
    margin-top:32px;
    text-align:center;
    padding:18px;
    color:var(--muted);
    font-weight:800;
}

/* RESPONSIVE */

@media(max-width:1050px){
    .vc-home-grid,
    .vc-overview-grid,
    .vc-love-grid,
    .vc-split{
        grid-template-columns:1fr 1fr;
    }

    .vc-how-mini-grid{
        grid-template-columns:1fr;
    }

    .vc-how-arrow{display:none}
}

@media(max-width:760px){
    .vc-header-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .vc-login-btn{
        width:100%;
        text-align:center;
    }

    .vc-product-nav-inner{
        justify-content:flex-start;
    }

    .vc-home-grid,
    .vc-overview-grid,
    .vc-love-grid,
    .vc-split,
    .vc-cta-with-fenny,
    .vc-footer-grid{
        grid-template-columns:1fr;
    }

    .vc-home-left h1{
        font-size:44px;
    }

    .vc-home-actions{
        flex-direction:column;
    }

    .vc-btn{
        width:100%;
    }

    .vc-section{
        padding:55px 0;
    }
}
#decouvrir,
#section-carbone,
#section-territoire,
#section-campus,
#section-transition {
    scroll-margin-top: 160px;
}
/* ===== CORRECTIONS FINALES HEADER / MENU ===== */

.vc-site-header {
    padding: 6px 0 !important;
}

.vc-brand-logo {
    width: 145px !important;
    height: auto;
}

.vc-product-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, #eef5ff, #f8fbff) !important;
    border-top: 1px solid #dbe6ff;
    border-bottom: 1px solid #dbe6ff;
    overflow: hidden;
}

.vc-product-nav-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 14px;
    padding: 18px 70px !important;
    overflow-x: auto !important;
    scrollbar-width: none;
}

.vc-product-nav-inner::-webkit-scrollbar {
    display: none;
}

.vc-product-nav-inner a {
    flex: 0 0 auto;
    padding: 16px 26px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(31, 63, 139, 0.12);
}

/* Flèches gauche / droite */

.vc-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dbe6ff;
    background: white;
    color: #1f3f8b;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
    z-index: 100;
}

.vc-left {
    left: 14px;
}

.vc-right {
    right: 14px;
}

.vc-nav-arrow:hover {
    background: #eef5ff;
}
/* ==========================================================
   PAGE TARIFS
==========================================================*/

.vc-pricing-hero{

    padding:70px 0;

    text-align:center;

    background:linear-gradient(180deg,#ffffff,#f7f9fc);

}

.vc-pricing-hero h1{

    max-width:900px;

    margin:25px auto;

}

.vc-pricing-hero p{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

}

/* ===========================
   CARTES TARIFS
=========================== */

.vc-pricing-section{

    padding:80px 0;

}

.vc-pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.vc-price-card{

    position:relative;

    background:white;

    border-radius:28px;

    border:1px solid var(--border);

    padding:35px;

    box-shadow:var(--shadow-soft);

    transition:.25s;

}

.vc-price-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.vc-price-card-featured{

    border:3px solid var(--green);

    transform:scale(1.04);

}

.vc-price-badge{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:var(--green);

    color:white;

    padding:8px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:900;

}

.vc-price-icon{

    font-size:54px;

    margin-bottom:18px;

}

.vc-price-card h2{

    margin-bottom:12px;

}

.vc-price{

    font-size:50px;

    font-weight:900;

    color:var(--blue);

    margin-bottom:28px;

}

.vc-price span{

    font-size:18px;

    color:var(--muted);

}

.vc-price-card ul{

    padding-left:20px;

    margin-bottom:30px;

}

.vc-price-card li{

    margin:12px 0;

    color:var(--muted);

    line-height:1.6;

}

/* ===========================
   TABLEAU
=========================== */

.vc-price-table{

    width:100%;

    border-collapse:collapse;

    margin-bottom:28px;

}

.vc-price-table th{

    background:var(--blue-soft);

    padding:12px;

    font-size:14px;

}

.vc-price-table td{

    text-align:center;

    padding:12px;

    border-bottom:1px solid var(--border);

}

/* ===========================
   TOUT EST INCLUS
=========================== */

.vc-included-section{

    background:white;

    padding:80px 0;

}

.vc-included-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

    margin-top:45px;

}

.vc-included-grid div{

    background:#f8fbff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:24px;

    text-align:center;

    font-size:18px;

    font-weight:700;

}

/* ===========================
   CHIFFRES
=========================== */

.vc-proof-section{

    padding:70px 0;

}

.vc-proof-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    text-align:center;

}

.vc-proof-grid strong{

    display:block;

    font-size:60px;

    color:var(--green);

    margin-bottom:12px;

}

.vc-proof-grid span{

    color:var(--muted);

}

/* ===========================
   FAQ
=========================== */

.vc-faq-section{

    background:white;

    padding:80px 0;

}

.vc-faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:45px;

}

.vc-faq-item{

    background:#f8fbff;

    border-radius:22px;

    padding:28px;

    border:1px solid var(--border);

}

.vc-faq-item h3{

    margin-bottom:12px;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1050px){

.vc-pricing-grid,

.vc-proof-grid,

.vc-included-grid,

.vc-faq-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:760px){

.vc-pricing-grid,

.vc-proof-grid,

.vc-included-grid,

.vc-faq-grid{

grid-template-columns:1fr;

}

.vc-price-card-featured{

transform:none;

}

.vc-price{

font-size:40px;

}

}
/* ===== PAGE CONNEXION ===== */

.vc-login-page{
    padding:80px 0;
    background:linear-gradient(180deg,#ffffff,#f7f9fc);
}

.vc-login-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:50px;
    align-items:center;
}

.vc-login-left h1{
    font-size:52px;
    line-height:1.05;
    margin:20px 0;
}

.vc-login-left p{
    font-size:19px;
    line-height:1.8;
    color:var(--muted);
}

.vc-login-benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:30px;
}

.vc-login-benefits div{
    background:white;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    font-weight:900;
    box-shadow:var(--shadow-soft);
}

.vc-login-card{
    background:white;
    border:1px solid var(--border);
    border-radius:28px;
    padding:38px;
    box-shadow:var(--shadow);
}

.vc-login-card h2{
    font-size:32px;
    margin:0 0 10px;
}

.vc-login-card p{
    color:var(--muted);
    margin-bottom:28px;
}

.vc-login-card form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.vc-login-card label{
    font-weight:900;
}

.vc-login-card input{
    width:100%;
    padding:15px 16px;
    border:1px solid var(--border);
    border-radius:14px;
    font-size:16px;
}

.vc-login-card input:focus{
    outline:none;
    border-color:var(--blue);
    box-shadow:0 0 0 4px rgba(31,63,139,.12);
}

.vc-login-submit{
    margin-top:12px;
    width:100%;
}

.vc-login-error{
    background:#fee2e2;
    color:#991b1b;
    border-radius:14px;
    padding:14px;
    font-weight:800;
    margin-bottom:20px;
}

.vc-login-links{
    display:flex;
    justify-content:space-between;
    gap:16px;
    margin-top:24px;
    font-weight:800;
}

.vc-login-links a{
    color:var(--blue);
}

@media(max-width:850px){
    .vc-login-grid,
    .vc-login-benefits{
        grid-template-columns:1fr;
    }

    .vc-login-left h1{
        font-size:40px;
    }

    .vc-login-links{
        flex-direction:column;
    }
}
.vc-login-links-vertical {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vc-login-links-vertical a:last-child {
    background: #eef5ff;
    border: 1px solid #dbe6ff;
    padding: 12px 16px;
    border-radius: 999px;
    width: 100%;
}
.vc-header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.vc-offer-btn {
    background: #1f3f8b;
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(31,63,139,.18);
}

.vc-offer-btn:hover {
    background: #172554;
    color: white;
}

@media(max-width:760px){
    .vc-header-actions {
        width: 100%;
        flex-direction: column;
    }

    .vc-offer-btn,
    .vc-login-btn {
        width: 100%;
        text-align: center;
    }
}
.vc-team-help {
    font-weight: 800;
    color: var(--text);
    margin-top: 22px;
}

.vc-team-buttons {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.vc-team-buttons .vc-btn {
    width: 100%;
}
/* ===== DASHBOARD VERTCLAIR ===== */

.vc-dashboard-hero {
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    padding: 55px 0 35px;
}

.vc-dashboard-hero h1 {
    font-size: 52px;
    margin: 18px 0;
}

.vc-dashboard-hero p {
    max-width: 850px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.8;
}

.vc-dashboard-main {
    padding: 45px 0 80px;
}

.vc-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 35px;
}

.vc-dashboard-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 26px;
    box-shadow: var(--shadow-soft);
    transition: .2s;
    color: var(--text);
}

.vc-dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.vc-dashboard-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 18px;
}

.vc-dashboard-card h2 {
    font-size: 21px;
    margin: 0 0 10px;
}

.vc-dashboard-card p {
    color: var(--muted);
    line-height: 1.6;
}

.vc-dashboard-card span {
    display: inline-block;
    margin-top: 12px;
    font-weight: 900;
    color: var(--blue);
}

.vc-dashboard-panels {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 24px;
    margin-top: 30px;
}

.vc-dashboard-panel {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.vc-dashboard-panel h2 {
    margin-top: 0;
}

.vc-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.vc-dashboard-stats div {
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
}

.vc-dashboard-stats strong {
    display: block;
    font-size: 34px;
    color: var(--green);
}

.vc-dashboard-stats span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.vc-dashboard-empty {
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: 18px;
    color: var(--muted);
    font-weight: 800;
}

.vc-dashboard-help {
    color: var(--muted);
}

.vc-dashboard-suggestion {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--blue), #172554);
    color: white;
    border-radius: 28px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.vc-dashboard-suggestion h2,
.vc-dashboard-suggestion p {
    color: white;
}

@media(max-width:1050px) {
    .vc-dashboard-grid,
    .vc-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vc-dashboard-panels {
        grid-template-columns: 1fr;
    }
}

@media(max-width:760px) {
    .vc-dashboard-grid,
    .vc-dashboard-stats,
    .vc-dashboard-suggestion {
        grid-template-columns: 1fr;
    }

    .vc-dashboard-hero h1 {
        font-size: 38px;
    }
}