/* SECTION */
.enterprise-hero {
    background: var(--color-bg);
    color: #fff;
}

/* Breadcrumb */
.breadcrumb-custom {
    font-size: 0.85rem;
    color: var(--color-text);
}

    .breadcrumb-custom a {
        color: #34d399;
        text-decoration: none;
    }

    .breadcrumb-custom span {
        margin: 0 6px;
    }

    .breadcrumb-custom .current {
        color: var(--color-text);
    }

/* Titre */
.enterprise-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Texte */
.enterprise-subtitle {
    max-width: 520px;
    font-size: 1.1rem;
    color: var(--color-text);
}

/* CARD */
.enterprise-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient( 180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02) );
    border: 1px dashed rgba(52, 211, 153, 0.35);
    transition: transform 0.1s ease;
}

    .enterprise-card:hover {
        transform: translateY(-5px);
        background-color: var(--color-bg-alt);
        box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    }

/* Icône */
    .enterprise-card .card-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background-color: rgba(52, 211, 153, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-text);
        font-size: 1.4rem;
    }

    /* Contenu */
    .enterprise-card h3 {
        margin: 0 0 6px 0;
        color: #34d399;
        font-size: 1.2rem;
    }

    .enterprise-card p {
        margin-bottom: 14px;
        color: var(--color-text);
    }

/* Badge */
.badge-soon {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background-color: var(--color-bg-alt2);
    color: var(--color-text);
}



/* =======================
   SECTION HEADERS
   ======================= */
.enterprise-section {
    background-color: var(--color-bg-alt);
    padding-bottom: 50px;
    border-radius: var(--radius-lg);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text);
}

    .section-header h3 {
        font-size: 1.4rem;
        margin: 0;
    }

.section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--color-bg-alt2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

/* =======================
   SMALL CARDS
   ======================= */
.enterprise-card-small {
    position: relative;
    padding: 24px;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient( 180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02) );
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .enterprise-card-small:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .enterprise-card-small h5 {
        color: var(--color-text);
        margin-bottom: 12px;
    }

    .enterprise-card-small p {
        color: var(--color-text);
        font-size: 0.95rem;
    }

    .enterprise-card-small .card-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        color: #34d399;
        opacity: 0.9;
    }

/* =======================
   LARGE CARD
   ======================= */
.enterprise-card-large {
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient( 180deg, var(--color-bg-alt2), var(--color-bg-alt) );
    border: 1px dashed rgba(52, 211, 153, 0.35);
}





/* =======================
   SMALL CARDS (reuse)
   ======================= */
.enterprise-card-small {
    position: relative;
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient( 180deg, var(--color-bg-alt2), var(--color-bg-alt) );
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .enterprise-card-small:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .enterprise-card-small h5 {
        color: var(--color-text);
        margin-bottom: 12px;
    }

    .enterprise-card-small p {
        color: var(--color-text);
        font-size: 0.95rem;
    }

    .enterprise-card-small .card-icon {
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 1.2rem;
        color: var(--color-text);
    }

/* =======================
   CTA FORMATION CARD
   ======================= */
.enterprise-card-cta {
    padding: 48px 32px;
    border-radius: 32px;
    background: linear-gradient( 180deg, var(--color-bg-alt2), var(--color-bg-alt) );
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 30px 80px rgba(0,0,0,0.45);
    position: relative;
}


    .enterprise-card-cta h4 {
        color: var(--color-text);
        font-size: 1.6rem;
    }

    .enterprise-card-cta p {
        max-width: 820px;
        margin: 0 auto 24px;
        color: var(--color-text);
        line-height: 1.6;
    }

