/* /Components/Layout/MainLayout.razor.rz.scp.css */
.site-shell[b-zfq5xci9k8] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header[b-zfq5xci9k8] {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
}

.header-inner[b-zfq5xci9k8] {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.brand[b-zfq5xci9k8] {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
}

.brand img[b-zfq5xci9k8] {
    display: block;
    width: 230px;
    max-width: 34vw;
    height: auto;
}

.main-nav[b-zfq5xci9k8] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav[b-zfq5xci9k8]  a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.main-nav[b-zfq5xci9k8]  a:hover,
.main-nav[b-zfq5xci9k8]  a.active {
    color: var(--brand-blue);
}

.account-nav[b-zfq5xci9k8] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.account-cta[b-zfq5xci9k8] {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.account-cta:hover[b-zfq5xci9k8] {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 76, 190, 0.2);
}

.site-main[b-zfq5xci9k8] {
    flex: 1 0 auto;
}

.site-footer[b-zfq5xci9k8] {
    margin-top: auto;
    padding: 3.5rem 0 1.5rem;
    background: #071526;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid[b-zfq5xci9k8] {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr;
    gap: 3rem;
}

.footer-brand img[b-zfq5xci9k8] {
    width: 245px;
    max-width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.96;
}

.footer-brand p[b-zfq5xci9k8] {
    max-width: 430px;
}

.site-footer h2[b-zfq5xci9k8] {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 0.95rem;
}

.site-footer p[b-zfq5xci9k8] {
    margin: 0.45rem 0;
    line-height: 1.6;
}

.site-footer a[b-zfq5xci9k8] {
    display: block;
    margin: 0.55rem 0;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover[b-zfq5xci9k8] {
    color: #fff;
}

.footer-bottom[b-zfq5xci9k8] {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.84rem;
}

#blazor-error-ui[b-zfq5xci9k8] {
    color-scheme: light only;
    background: #fff5cc;
    bottom: 0;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.8rem 3rem 0.8rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-zfq5xci9k8] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.65rem;
}

@media (max-width: 1080px) {
    .header-inner[b-zfq5xci9k8] {
        flex-wrap: wrap;
        gap: 0.8rem 1.5rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .brand img[b-zfq5xci9k8] {
        max-width: none;
    }

    .main-nav[b-zfq5xci9k8] {
        order: 3;
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .account-nav[b-zfq5xci9k8] {
        margin-left: auto;
    }
}

@media (max-width: 720px) {
    .site-header[b-zfq5xci9k8] {
        position: static;
    }

    .header-inner[b-zfq5xci9k8] {
        justify-content: center;
    }

    .brand img[b-zfq5xci9k8] {
        width: 205px;
    }

    .account-nav[b-zfq5xci9k8] {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 0 0;
        border-left: 0;
        border-top: 1px solid var(--border-color);
    }

    .main-nav[b-zfq5xci9k8] {
        gap: 0.7rem 1rem;
        flex-wrap: wrap;
    }

    .main-nav[b-zfq5xci9k8]  a {
        font-size: 0.88rem;
    }

    .footer-grid[b-zfq5xci9k8] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom[b-zfq5xci9k8] {
        flex-direction: column;
    }
}

.footer-social-links[b-zfq5xci9k8] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-top: 0.8rem;
}

.footer-social-links a[b-zfq5xci9k8] {
    margin: 0;
    font-weight: 700;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ys1w61ul79],
.components-reconnect-repeated-attempt-visible[b-ys1w61ul79],
.components-reconnect-failed-visible[b-ys1w61ul79],
.components-pause-visible[b-ys1w61ul79],
.components-resume-failed-visible[b-ys1w61ul79],
.components-rejoining-animation[b-ys1w61ul79] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-retrying[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-failed[b-ys1w61ul79],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ys1w61ul79] {
    display: block;
}


#components-reconnect-modal[b-ys1w61ul79] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ys1w61ul79 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ys1w61ul79 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ys1w61ul79 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ys1w61ul79]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ys1w61ul79 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ys1w61ul79 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ys1w61ul79 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ys1w61ul79 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ys1w61ul79] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ys1w61ul79] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ys1w61ul79] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ys1w61ul79] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ys1w61ul79] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ys1w61ul79] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ys1w61ul79] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ys1w61ul79 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ys1w61ul79] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ys1w61ul79 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/UserAccountMenu.razor.rz.scp.css */
.user-menu[b-q4848j94sz] {
    position: relative;
}

.user-menu summary[b-q4848j94sz] {
    list-style: none;
}

.user-menu summary[b-q4848j94sz]::-webkit-details-marker {
    display: none;
}

.user-menu-trigger[b-q4848j94sz] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 44px;
    padding: 0.3rem 0.55rem 0.3rem 0.3rem;
    border-radius: 999px;
    cursor: pointer;
    user-select: none;
    transition: background 160ms ease;
}

.user-menu-trigger:hover[b-q4848j94sz],
.user-menu[open] .user-menu-trigger[b-q4848j94sz] {
    background: var(--brand-soft);
}

.user-avatar[b-q4848j94sz] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brand-blue), var(--brand-cyan));
    color: #fff;
    box-shadow: 0 7px 18px rgba(0, 91, 210, 0.2);
}

.user-avatar svg[b-q4848j94sz] {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.user-name[b-q4848j94sz] {
    max-width: 190px;
    overflow: hidden;
    color: var(--text-color);
    font-size: 0.91rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-chevron[b-q4848j94sz] {
    color: var(--text-muted);
    font-size: 0.9rem;
    transform: translateY(-1px);
}

.user-menu-panel[b-q4848j94sz] {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 80;
    width: 190px;
    padding: 0.45rem;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 28, 55, 0.15);
}

.user-menu-panel form[b-q4848j94sz] {
    margin: 0;
}

.user-menu-item[b-q4848j94sz] {
    display: block;
    width: 100%;
    padding: 0.72rem 0.8rem;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--text-color);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.user-menu-item:hover[b-q4848j94sz] {
    background: var(--surface-muted);
    color: var(--brand-blue);
}

@media (max-width: 720px) {
    .user-menu-panel[b-q4848j94sz] {
        right: 50%;
        transform: translateX(50%);
    }
}
/* /Components/Pages/Admin/Administration.razor.rz.scp.css */
.admin-page[b-sf5na2g53z] {
    min-height: 640px;
    padding: 4.5rem 0 6rem;
    background: #f7faff;
}

.admin-heading[b-sf5na2g53z] {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.admin-heading h1[b-sf5na2g53z] {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.admin-heading > p:last-child[b-sf5na2g53z] {
    margin: 1rem 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.admin-dashboard-grid[b-sf5na2g53z] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.admin-dashboard-card[b-sf5na2g53z] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 138px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    box-shadow: 0 14px 38px rgba(8, 38, 73, 0.05);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.admin-dashboard-card:hover[b-sf5na2g53z] {
    transform: translateY(-2px);
    border-color: #b9cee4;
    box-shadow: 0 20px 46px rgba(8, 38, 73, 0.09);
}

.admin-dashboard-icon[b-sf5na2g53z] {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: var(--brand-soft);
    color: var(--brand-blue);
}

.admin-dashboard-card strong[b-sf5na2g53z],
.admin-dashboard-card small[b-sf5na2g53z] {
    display: block;
}

.admin-dashboard-card strong[b-sf5na2g53z] {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}

.admin-dashboard-card small[b-sf5na2g53z] {
    color: var(--text-muted);
    line-height: 1.5;
}

.admin-dashboard-arrow[b-sf5na2g53z] {
    color: var(--brand-blue);
    font-size: 1.35rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .admin-dashboard-grid[b-sf5na2g53z] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Admin/DomainesIntervention/DomaineInterventionEdit.razor.rz.scp.css */
.admin-form-container[b-9urjjhkjzw] {
    max-width: 980px;
}

.admin-edit-card[b-9urjjhkjzw] {
    box-shadow: 0 14px 42px rgba(8, 38, 73, 0.06);
}

.domain-icon-preview[b-9urjjhkjzw] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    align-self: end;
    min-height: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.domain-icon-preview-box[b-9urjjhkjzw] {
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--brand-soft);
    color: var(--brand-blue);
}

.admin-link-button[b-9urjjhkjzw] {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.delete-confirmation[b-9urjjhkjzw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid #efc5c5;
    border-radius: 16px;
    background: #fff6f6;
}

.delete-confirmation strong[b-9urjjhkjzw] {
    color: #8f2424;
}

.delete-confirmation p[b-9urjjhkjzw] {
    margin: 0.35rem 0 0;
    color: #7c5151;
    line-height: 1.5;
}

.delete-confirmation-actions[b-9urjjhkjzw] {
    display: flex;
    gap: 0.7rem;
    flex: 0 0 auto;
}

@media (max-width: 720px) {
    .delete-confirmation[b-9urjjhkjzw],
    .delete-confirmation-actions[b-9urjjhkjzw] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/Admin/DomainesIntervention/DomainesIntervention.razor.rz.scp.css */
.admin-record-subtitle[b-d9tvwjblg6] {
    margin-top: 0.28rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}
/* /Components/Pages/Admin/Email/SmtpSettingsAdmin.razor.rz.scp.css */
.settings-form-container[b-jqroyx6jqw] {
    max-width: 1040px;
}

.settings-edit-card[b-jqroyx6jqw] {
    box-shadow: 0 14px 42px rgba(8, 38, 73, 0.06);
}

.smtp-settings-section[b-jqroyx6jqw] {
    padding: 0 0 2.15rem;
    border-bottom: 1px solid var(--border-color);
}

.smtp-settings-section + .smtp-settings-section[b-jqroyx6jqw] {
    padding-top: 2.15rem;
}

.smtp-settings-section:last-child[b-jqroyx6jqw] {
    padding-bottom: 0;
    border-bottom: 0;
}

.smtp-section-heading[b-jqroyx6jqw] {
    margin-bottom: 1.35rem;
    padding-left: 1rem;
    border-left: 4px solid var(--brand-blue);
}

.smtp-section-heading h2[b-jqroyx6jqw] {
    margin: 0;
    font-size: 1.08rem;
}

.smtp-section-heading p[b-jqroyx6jqw] {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.smtp-test-actions[b-jqroyx6jqw] {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.smtp-test-email-field[b-jqroyx6jqw] {
    flex: 1 1 360px;
    max-width: 460px;
}

.smtp-test-button[b-jqroyx6jqw] {
    width: fit-content;
    white-space: nowrap;
}

.smtp-test-result[b-jqroyx6jqw] {
    max-width: 760px;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .smtp-test-actions[b-jqroyx6jqw] {
        align-items: stretch;
    }

    .smtp-test-email-field[b-jqroyx6jqw] {
        flex-basis: 100%;
        max-width: none;
    }

    .smtp-test-button[b-jqroyx6jqw] {
        width: 100%;
    }
}
/* /Components/Pages/Admin/Evaluations/EvaluationEdit.razor.rz.scp.css */
.evaluation-form-container[b-qmtt2rngjm] {
    max-width: 980px;
}

.evaluation-edit-card[b-qmtt2rngjm] {
    box-shadow: 0 14px 42px rgba(8, 38, 73, 0.06);
}

.evaluation-checkbox-grid[b-qmtt2rngjm] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.evaluation-preview[b-qmtt2rngjm] {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    align-self: end;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--surface-muted);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.admin-link-button[b-qmtt2rngjm] {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.delete-confirmation[b-qmtt2rngjm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid #efc5c5;
    border-radius: 16px;
    background: #fff6f6;
}

.delete-confirmation strong[b-qmtt2rngjm] {
    color: #8f2424;
}

.delete-confirmation p[b-qmtt2rngjm] {
    margin: 0.35rem 0 0;
    color: #7c5151;
    line-height: 1.5;
}

.delete-confirmation-actions[b-qmtt2rngjm] {
    display: flex;
    gap: 0.7rem;
    flex: 0 0 auto;
}

@media (max-width: 820px) {
    .evaluation-checkbox-grid[b-qmtt2rngjm] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .delete-confirmation[b-qmtt2rngjm],
    .delete-confirmation-actions[b-qmtt2rngjm] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/Admin/Evaluations/EvaluationsAdmin.razor.rz.scp.css */
.evaluations-admin-table .rating-column[b-skdplox3uw] {
    width: 130px;
    text-align: center;
    white-space: nowrap;
}

.evaluation-text-link[b-skdplox3uw] {
    display: inline-block;
    max-width: 540px;
    line-height: 1.45;
}

@media (max-width: 980px) {
    .admin-list-card[b-skdplox3uw] {
        overflow-x: auto;
    }

    .evaluations-admin-table[b-skdplox3uw] {
        min-width: 920px;
    }
}
/* /Components/Pages/Admin/Parametres/ParametresSite.razor.rz.scp.css */
.settings-form-container[b-knm2s7gtfa] {
    max-width: 1040px;
}

.settings-edit-card[b-knm2s7gtfa] {
    box-shadow: 0 14px 42px rgba(8, 38, 73, 0.06);
}

.settings-section[b-knm2s7gtfa] {
    padding: 0 0 2rem;
    border-bottom: 1px solid var(--border-color);
}

.settings-section + .settings-section[b-knm2s7gtfa] {
    padding-top: 2rem;
}

.settings-section:last-child[b-knm2s7gtfa] {
    padding-bottom: 0;
    border-bottom: 0;
}

.settings-section-heading[b-knm2s7gtfa] {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.settings-section-heading > span[b-knm2s7gtfa] {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 850;
}

.settings-section-heading h2[b-knm2s7gtfa] {
    margin: 0;
    font-size: 1.08rem;
}

.settings-section-heading p[b-knm2s7gtfa] {
    margin: 0.3rem 0 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.address-grid[b-knm2s7gtfa] {
    grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.55fr);
}

@media (max-width: 720px) {
    .address-grid[b-knm2s7gtfa] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Admin/Realisations/RealisationEdit.razor.rz.scp.css */
.realisation-collaboration-section[b-azoor7f65p] {
    display: grid;
    gap: 1.15rem;
    padding: 1.25rem;
    border: 1px solid #d9e5f0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fbff 0%, #f1f9fc 100%);
}

.realisation-section-heading[b-azoor7f65p] {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.realisation-section-icon[b-azoor7f65p] {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--brand-soft);
    color: var(--brand-blue);
    font-size: 1.05rem;
    font-weight: 900;
}

.realisation-section-heading h2[b-azoor7f65p] {
    margin: 0;
    font-size: 1.02rem;
}

.realisation-section-heading p[b-azoor7f65p] {
    margin: 0.32rem 0 0;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.realisation-image-section[b-azoor7f65p] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.5rem;
    align-items: start;
    padding-top: 0.4rem;
}

.realisation-image-section input[type="file"][b-azoor7f65p] {
    min-height: auto;
    padding: 0.75rem;
    border: 1px dashed #b9c9d9;
    border-radius: 12px;
    background: #f9fbfd;
}

.realisation-image-preview[b-azoor7f65p] {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #fff;
}

.realisation-image-preview img[b-azoor7f65p] {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.realisation-image-preview span[b-azoor7f65p],
.selected-file[b-azoor7f65p] {
    display: block;
    padding: 0.7rem 0.85rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.selected-file[b-azoor7f65p] {
    padding: 0;
    color: var(--brand-blue);
    font-weight: 700;
}

.admin-checkbox-grid[b-azoor7f65p] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-link-button[b-azoor7f65p] {
    border: 0;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 820px) {
    .realisation-image-section[b-azoor7f65p],
    .admin-checkbox-grid[b-azoor7f65p] {
        grid-template-columns: 1fr;
    }

    .realisation-image-preview[b-azoor7f65p] {
        max-width: 360px;
    }
}
/* /Components/Pages/Admin/Realisations/RealisationsAdmin.razor.rz.scp.css */
.admin-list-card[b-983lwsnhxv] {
    overflow-x: auto;
}

.admin-table[b-983lwsnhxv] {
    min-width: 900px;
}

.admin-table .collaboration-column[b-983lwsnhxv] {
    width: 190px;
    white-space: nowrap;
}
/* /Components/Pages/Admin/Utilisateurs/UtilisateursAdmin.razor.rz.scp.css */
.users-heading[b-rn9ft9lmys] {
    margin-bottom: 1.6rem;
}

.users-stats-grid[b-rn9ft9lmys] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.users-stat-card[b-rn9ft9lmys],
.users-chart-card[b-rn9ft9lmys] {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(8, 38, 73, 0.05);
}

.users-stat-card[b-rn9ft9lmys] {
    padding: 1.3rem 1.4rem;
}

.users-stat-card span[b-rn9ft9lmys],
.users-stat-card strong[b-rn9ft9lmys],
.users-stat-card small[b-rn9ft9lmys] {
    display: block;
}

.users-stat-card span[b-rn9ft9lmys] {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.users-stat-card strong[b-rn9ft9lmys] {
    margin-top: 0.35rem;
    color: var(--text-color);
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    line-height: 1;
}

.users-stat-card small[b-rn9ft9lmys] {
    margin-top: 0.45rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.users-chart-card[b-rn9ft9lmys] {
    padding: 1.4rem 1.5rem 1.25rem;
    margin-bottom: 1.6rem;
}

.users-section-heading[b-rn9ft9lmys],
.users-list-toolbar[b-rn9ft9lmys] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.users-section-heading h2[b-rn9ft9lmys],
.users-list-toolbar h2[b-rn9ft9lmys] {
    margin: 0.15rem 0 0;
    font-size: 1.25rem;
}

.users-section-kicker[b-rn9ft9lmys] {
    margin: 0;
    color: var(--brand-blue);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.users-chart-total[b-rn9ft9lmys],
.users-list-toolbar small[b-rn9ft9lmys] {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.users-chart[b-rn9ft9lmys] {
    display: grid;
    grid-template-columns: repeat(12, minmax(34px, 1fr));
    gap: 0.65rem;
    align-items: end;
    min-width: 720px;
    margin-top: 1.35rem;
}

.users-chart-card[b-rn9ft9lmys] {
    overflow-x: auto;
}

.users-chart-column[b-rn9ft9lmys] {
    display: grid;
    grid-template-rows: 1.25rem 150px auto;
    gap: 0.4rem;
    align-items: end;
    text-align: center;
}

.users-chart-value[b-rn9ft9lmys] {
    color: #405168;
    font-size: 0.76rem;
    font-weight: 800;
}

.users-chart-track[b-rn9ft9lmys] {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 9px;
    background: linear-gradient(to top, rgba(29, 102, 170, 0.045), rgba(29, 102, 170, 0.012));
    overflow: hidden;
}

.users-chart-bar[b-rn9ft9lmys] {
    position: absolute;
    right: 18%;
    bottom: 0;
    left: 18%;
    min-height: 7px;
    border-radius: 8px 8px 3px 3px;
    background: var(--brand-blue);
}

.users-chart-bar.is-zero[b-rn9ft9lmys] {
    min-height: 2px;
    opacity: 0.18;
}

.users-chart-label[b-rn9ft9lmys] {
    min-height: 2.2rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.2;
}

.users-list-section[b-rn9ft9lmys] {
    margin-top: 1.2rem;
}

.users-list-toolbar[b-rn9ft9lmys] {
    margin-bottom: 0.9rem;
}

.users-list-toolbar small[b-rn9ft9lmys] {
    display: block;
    margin-top: 0.3rem;
}

.users-search-field[b-rn9ft9lmys] {
    display: grid;
    gap: 0.35rem;
    width: min(360px, 100%);
}

.users-search-field span[b-rn9ft9lmys] {
    color: #44546a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.users-search-field input[b-rn9ft9lmys] {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border: 1px solid #c9d5e2;
    border-radius: 11px;
    background: #fff;
    color: var(--text-color);
    font: inherit;
}

.users-search-field input:focus[b-rn9ft9lmys] {
    border-color: var(--brand-blue);
    outline: 3px solid rgba(29, 102, 170, 0.12);
}

.users-table-card[b-rn9ft9lmys] {
    overflow-x: auto;
}

.users-table[b-rn9ft9lmys] {
    min-width: 980px;
}

.users-table th[b-rn9ft9lmys] {
    padding: 0;
}

.users-sort-button[b-rn9ft9lmys] {
    display: flex;
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-align: left;
    text-transform: inherit;
    cursor: pointer;
}

.users-sort-button:hover[b-rn9ft9lmys] {
    background: #edf4fa;
    color: var(--brand-blue);
}

.users-name-cell strong[b-rn9ft9lmys],
.users-name-cell small[b-rn9ft9lmys] {
    display: block;
}

.users-name-cell strong[b-rn9ft9lmys] {
    font-weight: 780;
}

.users-name-cell small[b-rn9ft9lmys] {
    max-width: 330px;
    margin-top: 0.35rem;
    color: var(--text-muted);
    line-height: 1.35;
    white-space: pre-line;
}

.users-email-link[b-rn9ft9lmys] {
    color: var(--brand-blue);
    font-weight: 680;
    text-decoration: none;
}

.users-email-link:hover[b-rn9ft9lmys] {
    text-decoration: underline;
}

.users-role-pill[b-rn9ft9lmys] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.36rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.users-role-pill.is-admin[b-rn9ft9lmys] {
    background: #eaf2ff;
    color: #174f91;
}

.users-role-pill.is-user[b-rn9ft9lmys] {
    background: #eef8f2;
    color: #236843;
}

.users-muted[b-rn9ft9lmys] {
    color: var(--text-muted);
}

.users-table .role-column[b-rn9ft9lmys] {
    width: 150px;
}

.users-table .date-column[b-rn9ft9lmys] {
    width: 185px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .users-stats-grid[b-rn9ft9lmys] {
        grid-template-columns: 1fr;
    }

    .users-section-heading[b-rn9ft9lmys],
    .users-list-toolbar[b-rn9ft9lmys] {
        align-items: stretch;
        flex-direction: column;
    }

    .users-search-field[b-rn9ft9lmys] {
        width: 100%;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
.contact-details-card[b-ur8753b9kh] {
    margin-bottom: 1.4rem;
    padding: 1.45rem 1.55rem;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(8, 38, 73, 0.05);
}

.contact-details-kicker[b-ur8753b9kh] {
    margin: 0 0 0.35rem;
    color: var(--brand-blue);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details-card h2[b-ur8753b9kh] {
    margin: 0;
    font-size: 1.25rem;
}

.contact-details-card > div:first-child > p:last-child[b-ur8753b9kh] {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
}

.contact-details-grid[b-ur8753b9kh] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border-color);
}

.contact-details-grid div[b-ur8753b9kh] {
    min-width: 0;
}

.contact-details-grid span[b-ur8753b9kh],
.contact-details-grid strong[b-ur8753b9kh],
.contact-details-grid a[b-ur8753b9kh] {
    display: block;
}

.contact-details-grid span[b-ur8753b9kh] {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.contact-details-grid strong[b-ur8753b9kh],
.contact-details-grid a[b-ur8753b9kh] {
    color: var(--text-color);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.45;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-details-grid a:hover[b-ur8753b9kh] {
    color: var(--brand-blue);
}

@media (max-width: 640px) {
    .contact-details-grid[b-ur8753b9kh] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Evaluations.razor.rz.scp.css */
.evaluations-hero[b-9xb18pzurs] {
    padding-bottom: 4.5rem;
}

.evaluations-section[b-9xb18pzurs] {
    padding-top: 4.5rem;
    padding-bottom: 6rem;
    background: var(--surface-muted);
}

.evaluations-grid[b-9xb18pzurs] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.evaluation-card[b-9xb18pzurs] {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(7, 35, 69, 0.06);
}

.evaluation-card-featured[b-9xb18pzurs] {
    grid-column: 1 / -1;
    padding: clamp(2.3rem, 5vw, 3.5rem);
    border-color: rgba(0, 93, 214, 0.15);
    background:
        radial-gradient(circle at 92% 16%, rgba(0, 184, 232, 0.09), transparent 19rem),
        #fff;
}

.evaluation-card blockquote[b-9xb18pzurs] {
    margin: 1rem 0 0;
    color: #1a2c43;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.75;
}

.evaluation-card-featured blockquote[b-9xb18pzurs] {
    max-width: 920px;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.evaluation-author[b-9xb18pzurs] {
    display: block;
    margin-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 750;
}

.evaluation-source[b-9xb18pzurs] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.evaluation-source a[b-9xb18pzurs] {
    color: var(--brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.evaluation-source a:hover[b-9xb18pzurs] {
    text-decoration: underline;
}

.evaluations-empty[b-9xb18pzurs] {
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    background: #fff;
    color: var(--text-muted);
    text-align: center;
}

.evaluations-empty p[b-9xb18pzurs] {
    margin: 0;
}

@media (max-width: 760px) {
    .evaluations-grid[b-9xb18pzurs] {
        grid-template-columns: 1fr;
    }

    .evaluation-card-featured[b-9xb18pzurs] {
        grid-column: auto;
    }

    .evaluation-source[b-9xb18pzurs] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-tgp8e1eh4r] {
    position: relative;
    overflow: hidden;
    padding: 6.5rem 0 5.5rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 181, 255, 0.13), transparent 27rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero[b-tgp8e1eh4r]::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    left: -300px;
    bottom: -300px;
    border: 1px solid rgba(0, 93, 214, 0.12);
    border-radius: 50%;
    z-index: 0;
}

.hero[b-tgp8e1eh4r]::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-applications-modernisation.webp');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 0.78;
    pointer-events: none;
    z-index: 0;
}

.hero-grid[b-tgp8e1eh4r] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 5rem;
    align-items: center;
}

.eyebrow[b-tgp8e1eh4r] {
    margin: 0 0 1rem;
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow.light[b-tgp8e1eh4r] {
    color: #5ed6ff;
}

.hero h1[b-tgp8e1eh4r] {
    max-width: 790px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.hero-lead[b-tgp8e1eh4r] {
    max-width: 720px;
    margin: 2rem 0 0;
    color: var(--text-muted);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    line-height: 1.75;
}

.hero-actions[b-tgp8e1eh4r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.25rem;
}

.hero-proof[b-tgp8e1eh4r] {
    display: flex;
    gap: 0.7rem;
    align-items: baseline;
    margin-top: 2.25rem;
    color: var(--text-muted);
    font-size: 0.93rem;
}

.hero-proof strong[b-tgp8e1eh4r] {
    color: var(--text-color);
}

.hero-panel[b-tgp8e1eh4r] {
    position: relative;
    padding: 3rem;
    border: 1px solid rgba(0, 91, 210, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 30px 70px rgba(5, 36, 75, 0.12);
}

.hero-panel-accent[b-tgp8e1eh4r] {
    position: absolute;
    top: -1px;
    left: 3rem;
    width: 90px;
    height: 4px;
    border-radius: 0 0 6px 6px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
}

.panel-kicker[b-tgp8e1eh4r] {
    margin: 0 0 0.85rem;
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-panel h2[b-tgp8e1eh4r] {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero-panel > p:last-of-type[b-tgp8e1eh4r] {
    margin: 1.4rem 0 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.technology-row[b-tgp8e1eh4r],
.tag-list[b-tgp8e1eh4r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.technology-row[b-tgp8e1eh4r] {
    margin-top: 2rem;
}

.technology-row span[b-tgp8e1eh4r],
.tag-list span[b-tgp8e1eh4r] {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
    color: #314159;
    font-size: 0.78rem;
    font-weight: 750;
}

.technology-row span[b-tgp8e1eh4r] {
    padding: 0.48rem 0.7rem;
}

.section[b-tgp8e1eh4r] {
    padding: 6rem 0;
}

.section-heading[b-tgp8e1eh4r] {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-heading h2[b-tgp8e1eh4r],
.migration-section h2[b-tgp8e1eh4r],
.review-intro h2[b-tgp8e1eh4r],
.cta-section h2[b-tgp8e1eh4r] {
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading > p:last-child[b-tgp8e1eh4r],
.review-intro > p[b-tgp8e1eh4r] {
    color: var(--text-muted);
    line-height: 1.75;
}

.service-grid[b-tgp8e1eh4r] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-card[b-tgp8e1eh4r] {
    min-height: 270px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
}

.service-icon[b-tgp8e1eh4r] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    border-radius: 13px;
    background: var(--brand-soft);
    color: var(--brand-blue);
}

.service-kicker[b-tgp8e1eh4r] {
    display: block;
    min-height: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--brand-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-card h3[b-tgp8e1eh4r] {
    margin: 0 0 0.9rem;
    font-size: 1.35rem;
}

.service-card p[b-tgp8e1eh4r] {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.migration-section[b-tgp8e1eh4r] {
    background: #071b35;
    color: #fff;
}

.migration-grid[b-tgp8e1eh4r] {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
    align-items: center;
}

.migration-grid > div:last-child p[b-tgp8e1eh4r] {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.07rem;
    line-height: 1.8;
}

.heading-row[b-tgp8e1eh4r] {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.heading-row > div[b-tgp8e1eh4r] {
    max-width: 760px;
}

.project-grid[b-tgp8e1eh4r] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.project-card[b-tgp8e1eh4r] {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover[b-tgp8e1eh4r] {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(6, 35, 70, 0.1);
}

.project-visual[b-tgp8e1eh4r] {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    background: var(--surface-muted);
    color: #fff;
    font-weight: 800;
}

.project-visual img[b-tgp8e1eh4r] {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 180px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 220ms ease;
}

.project-card:hover .project-visual img[b-tgp8e1eh4r] {
    transform: scale(1.025);
}

.project-visual span[b-tgp8e1eh4r] {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    padding: 0.42rem 0.68rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(4, 27, 51, 0.68);
    font-size: 0.76rem;
    backdrop-filter: blur(8px);
}

.project-content[b-tgp8e1eh4r] {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.7rem;
}

.project-content h3[b-tgp8e1eh4r] {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.3;
}

.project-content p[b-tgp8e1eh4r] {
    min-height: 80px;
    margin: 0.9rem 0 1.4rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.tag-list[b-tgp8e1eh4r] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.tag-list span[b-tgp8e1eh4r] {
    padding: 0.36rem 0.58rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--surface-muted);
    color: #233a54;
    font-size: 0.75rem;
    font-weight: 750;
}

.reviews-section[b-tgp8e1eh4r] {
    background: var(--surface-muted);
}

.reviews-main[b-tgp8e1eh4r] {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.review-intro[b-tgp8e1eh4r] {
    max-width: 640px;
}

.review-intro > p:not(.eyebrow)[b-tgp8e1eh4r] {
    max-width: 570px;
}

.review-card[b-tgp8e1eh4r] {
    min-width: 0;
    border: 1px solid rgba(8, 38, 73, 0.06);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(7, 35, 69, 0.08);
}

.review-card-featured[b-tgp8e1eh4r] {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.2rem);
}

.review-card blockquote[b-tgp8e1eh4r] {
    overflow-wrap: anywhere;
    margin: 1.2rem 0 0;
    color: #1a2c43;
    font-style: normal;
    line-height: 1.7;
}

.review-card-featured blockquote[b-tgp8e1eh4r] {
    font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.review-author[b-tgp8e1eh4r] {
    display: block;
    margin-top: 1.4rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 750;
}

.review-source[b-tgp8e1eh4r] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.82rem;
}

.review-source a[b-tgp8e1eh4r] {
    color: var(--brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.review-source a:hover[b-tgp8e1eh4r] {
    text-decoration: underline;
}

.review-small-grid[b-tgp8e1eh4r] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.4rem;
}

.review-card-small[b-tgp8e1eh4r] {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 1.45rem 1.55rem;
}

.review-card-small blockquote[b-tgp8e1eh4r] {
    margin-top: 0.8rem;
    font-size: 0.96rem;
}

.review-card-small .review-author[b-tgp8e1eh4r] {
    margin-top: 0.9rem;
    font-size: 0.8rem;
}

.review-source-small[b-tgp8e1eh4r] {
    margin-top: auto;
    padding-top: 0.9rem;
}

.cta-section[b-tgp8e1eh4r] {
    padding: 4.5rem 0;
    background: linear-gradient(110deg, #0052ba, #047ed0 60%, #08a8d1);
    color: #fff;
}

.cta-inner[b-tgp8e1eh4r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-inner > div[b-tgp8e1eh4r] {
    max-width: 760px;
}

.text-link[b-tgp8e1eh4r] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-blue);
    font-weight: 800;
    text-decoration: none;
}

.text-link span[b-tgp8e1eh4r] {
    transition: transform 160ms ease;
}

.text-link:hover span[b-tgp8e1eh4r] {
    transform: translateX(4px);
}

.light-link[b-tgp8e1eh4r] {
    color: #fff;
}

.button-light[b-tgp8e1eh4r] {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1.4rem;
    border-radius: 999px;
    background: #fff;
    color: #064c9c;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .hero[b-tgp8e1eh4r] {
        padding-top: 4.5rem;
    }

    .hero[b-tgp8e1eh4r]::after {
        background-position: 68% center;
        opacity: 0.42;
    }

    .hero-grid[b-tgp8e1eh4r],
    .migration-grid[b-tgp8e1eh4r],
    .reviews-main[b-tgp8e1eh4r] {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .review-intro[b-tgp8e1eh4r] {
        max-width: 760px;
    }

    .review-small-grid[b-tgp8e1eh4r] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel[b-tgp8e1eh4r] {
        max-width: 700px;
    }

    .service-grid[b-tgp8e1eh4r],
    .project-grid[b-tgp8e1eh4r] {
        grid-template-columns: 1fr 1fr;
    }

    .project-grid .project-card:last-child[b-tgp8e1eh4r] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .hero[b-tgp8e1eh4r] {
        padding: 3.5rem 0 4rem;
    }

    .hero[b-tgp8e1eh4r]::after {
        background-position: 72% center;
        opacity: 0.24;
    }

    .hero-grid[b-tgp8e1eh4r] {
        gap: 2.5rem;
    }

    .hero-panel[b-tgp8e1eh4r] {
        padding: 2rem;
    }

    .hero-proof[b-tgp8e1eh4r] {
        flex-direction: column;
        gap: 0.2rem;
    }

    .section[b-tgp8e1eh4r] {
        padding: 4.2rem 0;
    }

    .service-grid[b-tgp8e1eh4r],
    .project-grid[b-tgp8e1eh4r] {
        grid-template-columns: 1fr;
    }

    .project-grid .project-card:last-child[b-tgp8e1eh4r] {
        grid-column: auto;
    }

    .heading-row[b-tgp8e1eh4r],
    .cta-inner[b-tgp8e1eh4r] {
        align-items: flex-start;
        flex-direction: column;
    }

    .migration-grid[b-tgp8e1eh4r] {
        gap: 2rem;
    }

    .review-card-featured[b-tgp8e1eh4r] {
        min-height: 0;
        padding: 2rem;
    }

    .review-small-grid[b-tgp8e1eh4r] {
        grid-template-columns: 1fr;
    }

    .review-source[b-tgp8e1eh4r] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Pages/RealisationDetail.razor.rz.scp.css */
.realisation-detail-hero[b-425y6rjtih] {
    padding: 5.5rem 0 4.5rem;
    background:
        radial-gradient(circle at 88% 15%, rgba(0, 184, 232, 0.12), transparent 24rem),
        #f7fbff;
}

.realisation-detail-grid[b-425y6rjtih] {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.realisation-detail-copy h1[b-425y6rjtih] {
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.realisation-detail-lead[b-425y6rjtih] {
    margin: 1.4rem 0 0;
    color: var(--text-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.realisation-detail-image[b-425y6rjtih] {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(7, 38, 73, 0.12);
}

.realisation-detail-image img[b-425y6rjtih] {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.detail-tags[b-425y6rjtih] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.detail-tags span[b-425y6rjtih] {
    padding: 0.4rem 0.65rem;
    border: 1px solid #cfe0ef;
    border-radius: 999px;
    background: #fff;
    color: #274664;
    font-size: 0.77rem;
    font-weight: 750;
}

.realisation-detail-body[b-425y6rjtih] {
    padding: 4.5rem 0 6rem;
}

.realisation-detail-content[b-425y6rjtih] {
    max-width: 860px;
}

.detail-back[b-425y6rjtih] {
    display: inline-flex;
    margin-bottom: 2rem;
    color: var(--brand-blue);
    font-weight: 750;
    text-decoration: none;
}

.detail-description[b-425y6rjtih] {
    color: #26394f;
    font-size: 1.06rem;
    line-height: 1.85;
    white-space: pre-line;
}

.detail-external[b-425y6rjtih] {
    margin-top: 2.2rem;
}

@media (max-width: 900px) {
    .realisation-detail-grid[b-425y6rjtih] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
/* /Components/Pages/Realisations.razor.rz.scp.css */
.realisations-section[b-b9aulp79vu] {
    background: #fff;
}

.realisations-grid[b-b9aulp79vu] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.realisation-card[b-b9aulp79vu] {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.realisation-card:hover[b-b9aulp79vu] {
    transform: translateY(-4px);
    border-color: #bfd1e3;
    box-shadow: 0 20px 50px rgba(6, 35, 70, 0.1);
}

.realisation-card-image[b-b9aulp79vu] {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    background: var(--surface-muted);
}

.realisation-card-image img[b-b9aulp79vu] {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 210px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 220ms ease;
}

.realisation-card:hover .realisation-card-image img[b-b9aulp79vu] {
    transform: scale(1.025);
}

.realisation-card-image span[b-b9aulp79vu] {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    background: rgba(5, 26, 49, 0.72);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.realisation-card-content[b-b9aulp79vu] {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.55rem;
}

.realisation-card-content h2[b-b9aulp79vu] {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.3;
}

.realisation-card-content p[b-b9aulp79vu] {
    margin: 0.85rem 0 1.3rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.realisation-tags[b-b9aulp79vu] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
}

.realisation-tags span[b-b9aulp79vu] {
    padding: 0.34rem 0.58rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: var(--surface-muted);
    color: #243b56;
    font-size: 0.75rem;
    font-weight: 750;
}

@media (max-width: 980px) {
    .realisations-grid[b-b9aulp79vu] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .realisations-grid[b-b9aulp79vu] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Shared/CollaborationBadge.razor.rz.scp.css */
.collaboration-badge[b-xju97bvvlr] {
    position: absolute;
    z-index: 2;
    top: 1rem;
    right: 1rem;
    display: grid;
    min-width: 108px;
    gap: 0.08rem;
    padding: 0.66rem 0.82rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(5, 92, 190, 0.94), rgba(0, 181, 224, 0.91));
    box-shadow: 0 10px 28px rgba(3, 42, 85, 0.24);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.collaboration-badge-value[b-xju97bvvlr] {
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.collaboration-badge-label[b-xju97bvvlr] {
    font-size: 0.66rem;
    font-weight: 750;
    line-height: 1.2;
    opacity: 0.94;
}

@media (max-width: 650px) {
    .collaboration-badge[b-xju97bvvlr] {
        top: 0.8rem;
        right: 0.8rem;
        min-width: 100px;
        padding: 0.6rem 0.72rem 0.56rem;
    }
}
/* /Components/Shared/FormSubmissionMessage.razor.rz.scp.css */
.form-submission-message[b-o8tgloz140] {
    margin: 0.15rem 0 0;
}
/* /Components/Shared/FormValidationToast.razor.rz.scp.css */
.form-validation-toast[b-t43tjq6dr9] {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 90;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: min(430px, calc(100vw - 3rem));
    padding: 1rem 1.1rem;
    border: 1px solid #efb1b1;
    border-radius: 14px;
    background: #fff7f7;
    color: #8f1f1f;
    box-shadow: 0 18px 48px rgba(83, 16, 16, 0.2);
}

.form-validation-toast-icon[b-t43tjq6dr9] {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: #c92d2d;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 850;
    line-height: 1;
}

.form-validation-toast strong[b-t43tjq6dr9],
.form-validation-toast span[b-t43tjq6dr9] {
    display: block;
}

.form-validation-toast strong[b-t43tjq6dr9] {
    margin-bottom: 0.18rem;
    font-size: 0.92rem;
}

.form-validation-toast div > span[b-t43tjq6dr9] {
    font-size: 0.84rem;
    line-height: 1.45;
}

@media (max-width: 720px) {
    .form-validation-toast[b-t43tjq6dr9] {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        width: auto;
    }
}
/* /Components/Shared/StarRating.razor.rz.scp.css */
.star-rating[b-wqqzggtex6] {
    display: inline-flex;
    gap: 0.12em;
    color: #e6a600;
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.star-filled[b-wqqzggtex6] {
    color: #e6a600;
}

.star-empty[b-wqqzggtex6] {
    color: #d7dde5;
}

.star-rating-large[b-wqqzggtex6] {
    font-size: 1.22rem;
}
