@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap");
:root {
    --ut21-blue: #009ee0;
    --ut21-blue-deep: #0b4f7a;
    --ut21-orange: #f39200;
    --ut21-ink: #183247;
    --ut21-muted: #5f7385;
    --ut21-border: #d7e3ee;
    --ut21-surface: #f5f9fc;
    --ut21-white: #ffffff;
    --ut21-success: #12805c;
    --ut21-warning: #b46911;
    --ut21-danger: #c33a3a;
    --ut21-radius: 22px;
    --ut21-shadow: 0 16px 40px rgba(12, 56, 88, 0.08);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ut21-ink);
    background:
        radial-gradient(circle at top left, rgba(0, 158, 224, 0.12), transparent 28%),
        linear-gradient(180deg, #eef7fd 0%, #ffffff 420px);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.ut21-shell {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
}

.ut21-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 20px 0;
}

.ut21-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(215, 227, 238, 0.9);
    border-radius: 999px;
    box-shadow: var(--ut21-shadow);
}

.ut21-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ut21-brand-logo {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(0, 83, 136, 0.16);
}

.ut21-brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--ut21-blue);
    color: var(--ut21-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex: 0 0 auto;
}

.ut21-brand-copy {
    min-width: 0;
    overflow: hidden;
}

.ut21-brand-copy strong,
.ut21-brand-copy span {
    display: block;
}

.ut21-brand-copy strong {
    font-size: 19px;
}

.ut21-brand-copy span {
    font-size: 13px;
    color: var(--ut21-muted);
}
.ut21-brand-support {
    font-size: 11px !important;
    color: #94a3b8 !important;
    margin-top: 2px;
    line-height: 1.4;
}


.ut21-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.ut21-nav-actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.ut21-role-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    white-space: nowrap;
}

.ut21-role-pill-abonne {
    background: rgba(0, 158, 224, 0.08);
    border-color: rgba(0, 158, 224, 0.14);
    color: var(--ut21-blue-deep);
}

.ut21-role-pill-adherent {
    background: rgba(22, 163, 74, 0.10);
    border-color: rgba(22, 163, 74, 0.18);
    color: #166534;
}

.ut21-role-pill-militant {
    background: rgba(243, 146, 0, 0.12);
    border-color: rgba(243, 146, 0, 0.22);
    color: #a45a00;
}

.ut21-role-pill-superadmin {
    background: rgba(90, 74, 226, 0.12);
    border-color: rgba(90, 74, 226, 0.22);
    color: #4c1d95;
}

.ut21-icon-link {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(0, 158, 224, 0.08);
    border: 1px solid rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ut21-icon-link svg {
    width: 22px;
    height: 22px;
}

.ut21-icon-link:hover {
    transform: translateY(-1px);
    background: rgba(0, 158, 224, 0.14);
}

.ut21-icon-link-admin {
    background: rgba(243, 146, 0, 0.12);
    border-color: rgba(243, 146, 0, 0.24);
    color: #a45a00;
}

.ut21-icon-link-admin:hover {
    background: rgba(243, 146, 0, 0.18);
}

.ut21-icon-link[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: -42px;
    transform: translateX(-50%) translateY(6px);
    white-space: nowrap;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(15, 35, 51, 0.94);
    color: var(--ut21-white);
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    letter-spacing: 0.01em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 5;
}

.ut21-icon-link:hover::after,
.ut21-icon-link:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ut21-link-pill,
.ut21-btn,
.ut21-btn-secondary,
.ut21-btn-ghost,
.ut21-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ut21-link-pill {
    color: var(--ut21-blue-deep);
    background: rgba(0, 158, 224, 0.08);
}

.ut21-btn {
    background: var(--ut21-blue);
    color: var(--ut21-white);
}

.ut21-btn-secondary {
    background: var(--ut21-blue-deep);
    color: var(--ut21-white);
}

.ut21-btn-ghost {
    background: var(--ut21-white);
    border-color: var(--ut21-border);
    color: var(--ut21-blue-deep);
}

.ut21-btn-danger {
    background: #fff3f3;
    border-color: #f0b4b4;
    color: var(--ut21-danger);
}

.ut21-btn-light {
    background: var(--ut21-white);
    border-color: rgba(255, 255, 255, 0.55);
    color: #a32020;
}

.ut21-link-pill:hover,
.ut21-btn:hover,
.ut21-btn-secondary:hover,
.ut21-btn-ghost:hover,
.ut21-btn-danger:hover,
.ut21-btn-light:hover {
    transform: translateY(-1px);
}

.ut21-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 18px 0 14px;
}

.ut21-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    text-decoration: none;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
    color: var(--ut21-blue-deep);
    font-weight: 800;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ut21-tab:hover {
    transform: translateY(-1px);
}

.ut21-tab span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.1);
    font-size: 12px;
}

.ut21-tab-active {
    background: var(--ut21-blue);
    border-color: var(--ut21-blue);
    color: var(--ut21-white);
}

.ut21-tab-active span {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ut21-white);
}

.ut21-tab-copy {
    margin: 0 0 18px;
    color: var(--ut21-muted);
}

.ut21-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(min(100%, 320px), 0.85fr);
    gap: 26px;
    align-items: stretch;
    margin: 28px 0 36px;
}

.ut21-panel {
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    box-shadow: var(--ut21-shadow);
}

.ut21-hero-copy {
    padding: 38px;
    background: linear-gradient(145deg, #ffffff 0%, #f6fbff 100%);
}

.ut21-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.1);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.ut21-hero-copy h1,
.ut21-section-title {
    margin: 20px 0 16px;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.08;
}

.ut21-hero-copy p,
.ut21-section-lead {
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--ut21-muted);
}

.ut21-cta-row,
.ut21-inline-cta {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
}

.ut21-cta-row {
    margin-top: 28px;
}

.ut21-inline-cta {
    margin-top: 22px;
}

.ut21-login-heading .ut21-inline-cta {
    margin-top: 18px;
}

.ut21-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.ut21-badge-card {
    padding: 16px;
    border-radius: 18px;
    background: #f5f9fc;
    border: 1px solid var(--ut21-border);
}

.ut21-badge-card strong,
.ut21-badge-card span {
    display: block;
}

.ut21-badge-card strong {
    font-size: 18px;
    margin-bottom: 6px;
}

.ut21-badge-card span {
    color: var(--ut21-muted);
    font-size: 14px;
}

.ut21-hero-side {
    padding: 32px;
    background: linear-gradient(180deg, #0c6ea7 0%, var(--ut21-blue) 100%);
    color: var(--ut21-white);
}

.ut21-hero-side h2 {
    margin: 0 0 18px;
    font-size: clamp(27px, 3.2vw, 34px);
    line-height: 1.14;
    max-width: 12ch;
}

.ut21-feature-list {
    display: grid;
    gap: 14px;
}

.ut21-home-news {
    display: grid;
    gap: 24px;
    margin: 34px 0 46px;
}

.ut21-home-news-list {
    display: grid;
    gap: 24px;
}

.ut21-home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ut21-home-news-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 0 0 22px;
    border-radius: 24px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    overflow: hidden;
}

.ut21-home-news-image,
.ut21-article-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: #d9ebf7;
    overflow: hidden;
}

.ut21-home-news-image img,
.ut21-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ut21-home-news-card h2 {
    margin: 0;
    padding: 0 22px;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.ut21-home-news-card p,
.ut21-collectif-card p {
    margin: 0;
    padding: 0 22px;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-home-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    padding: 0 22px;
}

.ut21-home-news-meta span,
.ut21-home-news-meta time {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-home-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
    padding: 0 22px;
}

.ut21-home-news-footer small {
    color: var(--ut21-muted);
}

.ut21-feature {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ut21-feature strong,
.ut21-feature p {
    display: block;
}

.ut21-feature strong {
    font-size: 18px;
    margin-bottom: 6px;
}

.ut21-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ut21-section-heading {
    max-width: 920px;
    margin-bottom: 18px;
}

.ut21-highlight-card {
    background: linear-gradient(145deg, #f7fbff 0%, #eef7fd 100%);
}

.ut21-action-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.ut21-adherent-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.ut21-adherent-grid .ut21-action-card,
.ut21-adherent-grid .ut21-action-card-locked {
    grid-column: span 1;
}

.ut21-action-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 26px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    min-height: 100%;
}

.ut21-action-card h2 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.ut21-action-card p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-action-card > .ut21-btn,
.ut21-action-card > .ut21-btn-secondary,
.ut21-action-card > .ut21-btn-ghost,
.ut21-action-card > .ut21-btn-contrast,
.ut21-action-card > a[class*="ut21-btn"],
.ut21-action-card > span:last-child,
.ut21-action-card-primary > a[class*="ut21-btn"],
.ut21-action-card-main > a[class*="ut21-btn"] {
    margin-top: auto;
    align-self: stretch !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box;
    display: flex !important;
}

.ut21-action-card-primary {
    background: linear-gradient(180deg, #0b75b2 0%, #009ee0 100%);
    color: var(--ut21-white);
}

.ut21-action-card-primary p,
.ut21-action-card-primary .ut21-action-kicker {
    color: rgba(255, 255, 255, 0.92);
}

.ut21-btn-contrast {
    background: var(--ut21-white);
    color: var(--ut21-blue-deep);
}


.ut21-action-card.ut21-action-card-danger {
    border-color: #991b1b;
    background: linear-gradient(180deg, #b91c1c 0%, #dc2626 100%);
    color: var(--ut21-white);
}

.ut21-action-card.ut21-action-card-danger p,
.ut21-action-card.ut21-action-card-danger .ut21-action-kicker {
    color: rgba(255, 255, 255, 0.92);
}
.ut21-action-card-locked {
    background: linear-gradient(145deg, #f7fbff 0%, #eef4fa 100%);
    position: relative;
    overflow: hidden;
}
.ut21-action-card-locked .ut21-action-cover,
.ut21-action-card-locked > h2,
.ut21-action-card-locked > p {
    filter: blur(3px);
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
}
.ut21-action-card-locked .ut21-btn,
.ut21-action-card-locked .ut21-locked-access-note {
    filter: none;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 3;
}
.ut21-action-card-locked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 56px;
    height: 56px;
    z-index: 2;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: 2px solid rgba(0,158,224,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23009ee0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.ut21-action-card-locked .ut21-action-cover-label {
    filter: none;
    opacity: 1;
    position: relative;
    z-index: 3;
}

.ut21-action-grid-main .ut21-action-card,
.ut21-action-grid-main .ut21-action-card-primary,
.ut21-action-grid-main .ut21-action-card-main {
    grid-column: span 4;
}

.ut21-action-grid-secondary .ut21-action-card,
.ut21-action-grid-secondary .ut21-action-card-news,
.ut21-action-grid-secondary .ut21-action-card-locked {
    grid-column: span 6;
}

.ut21-discover-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, #f9fcff 0%, #eef7fd 100%);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-discover-media {
    overflow: hidden;
    border-radius: 24px;
    background: #d9eefb;
}

.ut21-discover-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.ut21-discover-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.ut21-discover-copy .ut21-section-title,
.ut21-discover-copy .ut21-section-lead {
    margin: 0;
}

.ut21-discover-points {
    display: grid;
    gap: 14px;
}

.ut21-discover-point {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 158, 224, 0.14);
}

.ut21-discover-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.ut21-discover-point p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-discover-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: auto;
}

.ut21-annuaire-discover {
    background: linear-gradient(180deg, #f6fbff 0%, #eaf4fc 100%);
}

.ut21-annuaire-discover .ut21-discover-media img {
    min-height: 340px;
    object-position: center 44%;
}

.ut21-action-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ut21-action-cover {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: 164px;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ecf6fd 0%, #d6ecfb 100%);
}

.ut21-action-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 54, 88, 0.06) 0%, rgba(7, 54, 88, 0.18) 100%);
}

.ut21-action-cover img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.ut21-action-cover-help {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.ut21-action-cover-militant {
    background: linear-gradient(145deg, rgba(239, 248, 254, 0.08) 0%, rgba(216, 238, 252, 0.02) 100%);
}

.ut21-action-cover-locked {
    background: linear-gradient(145deg, rgba(238, 246, 253, 0.08) 0%, rgba(223, 238, 249, 0.02) 100%);
}

.ut21-action-cover-help img {
    object-position: center 38%;
}

.ut21-action-cover-militant img {
    object-position: center 52%;
}

.ut21-action-cover-locked img {
    object-position: center 42%;
}

.ut21-action-cover-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ut21-action-cover-label svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.ut21-action-card-primary .ut21-action-cover-label {
    background: rgba(255, 255, 255, 0.16);
    color: var(--ut21-white);
}

.ut21-action-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
    font-weight: 800;
    font-size: 18px;
    flex: 0 0 auto;
}

.ut21-action-card-primary .ut21-action-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ut21-white);
}

.ut21-action-kicker {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ut21-blue-deep);
}

.ut21-mini-news {
    display: grid;
    gap: 10px;
}

.ut21-mini-news-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
    text-decoration: none;
}

.ut21-mini-news-item strong,
.ut21-mini-news-item span {
    display: block;
}

.ut21-mini-news-item strong {
    margin-bottom: 6px;
}

.ut21-mini-news-item span {
    color: var(--ut21-muted);
    font-size: 13px;
}

.ut21-choice-card {
    text-align: left;
}

.ut21-choice-card h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.ut21-section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    max-width: none;
}

.ut21-home-heading {
    margin: 14px 0 0;
    font-size: clamp(32px, 4.1vw, 48px);
    line-height: 1.08;
}

.ut21-heading-action {
    flex: 0 0 auto;
}

.ut21-choice-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
    font-weight: 800;
    font-size: 22px;
}

.ut21-choice-icon-svg {
    padding: 12px;
}

.ut21-choice-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ut21-choice-icon-google {
    background: #fff;
    border: 1px solid var(--ut21-border);
}

.ut21-login-heading {
    max-width: 100%;
    margin-bottom: 22px;
}

.ut21-login-helper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.ut21-login-helper span {
    color: var(--ut21-muted);
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-login-layout {
    display: grid;
    gap: 22px;
    align-items: start;
}

.ut21-login-layout-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ut21-login-side,
.ut21-login-main {
    display: grid;
    gap: 28px;
}

.ut21-login-side-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0b75b2 0%, #009ee0 100%);
    color: var(--ut21-white);
    border: 1px solid rgba(0, 158, 224, 0.18);
    box-shadow: var(--ut21-shadow);
}

.ut21-login-side-card h2 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.08;
}

.ut21-login-side-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
}

.ut21-login-side-card .ut21-bullet-list {
    color: rgba(255, 255, 255, 0.92);
}

.ut21-login-side-card .ut21-bullet-list li::marker {
    color: rgba(255, 255, 255, 0.9);
}

.ut21-login-card,
.ut21-login-create-card {
    padding: 34px;
}

.ut21-login-card {
    display: grid;
    gap: 16px;
    min-height: 0;
    align-content: start;
}

.ut21-login-card-google {
    align-self: start;
    grid-auto-rows: max-content;
}

.ut21-login-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ut21-login-method .ut21-choice-icon {
    margin-bottom: 0;
    flex: 0 0 auto;
}

.ut21-login-method h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.12;
}

.ut21-login-method p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.62;
}

.ut21-login-google-panel {
    display: grid;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #f8fbfe;
    border: 1px solid var(--ut21-border);
}

.ut21-login-google-panel p {
    margin: 0;
}

.ut21-login-google-copy {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.65;
    max-width: 30ch;
}

.ut21-btn-google {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 16px;
    text-decoration: none;
    background: var(--ut21-white);
    border: 1px solid #dadce0;
    color: #1f1f1f;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ut21-btn-google:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    border-color: #c8d0d7;
}

.ut21-btn-google-logo {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.ut21-btn-google-logo svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ut21-login-card-google .ut21-inline-cta {
    margin-top: 2px;
}

.ut21-login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ut21-muted);
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-login-divider::before,
.ut21-login-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--ut21-border);
}

.ut21-login-code-panel {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
}

.ut21-login-code-panel strong {
    font-size: 16px;
}

.ut21-login-code-panel span {
    color: var(--ut21-muted);
}

.ut21-code-input {
    font-size: 24px;
    letter-spacing: 0.22em;
    text-align: center;
    font-weight: 800;
}

.ut21-login-create-card h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.ut21-login-create-card .ut21-inline-cta {
    margin-top: 6px;
}

.ut21-login-create-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ut21-login-create-copy {
    max-width: 680px;
}

.ut21-login-create-copy p {
    margin: 0;
}

.ut21-account-note {
    line-height: 1.7;
}

.ut21-account-side-card {
    display: grid;
    gap: 16px;
}

.ut21-account-side-card h3 {
    margin-bottom: 0;
}

.ut21-pricing-panel {
    padding: 32px;
}

.ut21-title-md {
    font-size: clamp(30px, 4vw, 42px);
}

.ut21-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-bullet-list li::marker {
    color: var(--ut21-blue);
}

.ut21-pricing-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(min(100%, 280px), 0.85fr);
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.ut21-pricing-title {
    margin: 16px 0 0;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
}

.ut21-pricing-copy {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.7;
    font-size: 18px;
}

.ut21-pricing-desktop {
    display: block;
}

.ut21-pricing-mobile {
    display: none;
}

.ut21-pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    overflow: hidden;
    border-radius: 18px;
}

.ut21-pricing-col-label {
    width: 42%;
}

.ut21-pricing-col-value {
    width: 14.5%;
}

.ut21-pricing-table th,
.ut21-pricing-table td {
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ut21-pricing-table th:first-child,
.ut21-pricing-table td:first-child {
    text-align: left;
}

.ut21-pricing-table thead th {
    background: rgba(255, 255, 255, 0.2);
    font-size: clamp(16px, 2vw, 18px);
}

.ut21-pricing-table tbody td {
    font-size: clamp(16px, 1.8vw, 19px);
}

.ut21-pricing-table tbody tr:nth-child(1) td {
    background: rgba(243, 146, 0, 0.94);
}

.ut21-pricing-table tbody tr:nth-child(2) td {
    background: rgba(255, 255, 255, 0.22);
}

.ut21-pricing-table tbody tr:nth-child(3) td {
    background: rgba(11, 79, 122, 0.88);
}

.ut21-price-value {
    white-space: nowrap;
}

.ut21-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ut21-article-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 22px;
    overflow: hidden;
}

.ut21-article-card h3 {
    margin: 0;
    padding: 0 22px;
}

.ut21-article-card p {
    margin: 0;
    padding: 0 22px;
}

.ut21-article-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    font-size: 13px;
    color: var(--ut21-muted);
    padding: 0 22px;
}

.ut21-article-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-article-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: nowrap;
    padding: 0 22px;
}

.ut21-article-footer small {
    color: var(--ut21-muted);
}

.ut21-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ut21-story-card {
    padding: 28px;
    border-radius: 26px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-story-card h2,
.ut21-story-card h3 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.08;
}

.ut21-story-card p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.72;
}

.ut21-story-card + .ut21-story-card {
    min-height: 100%;
}

.ut21-story-list {
    margin: 18px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-story-list li::marker {
    color: var(--ut21-blue);
}

.ut21-story-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(min(100%, 320px), 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.ut21-story-media {
    overflow: hidden;
    border-radius: 26px;
    min-height: 100%;
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-story-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.ut21-story-punch {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, #f7fbff 0%, #eef8ff 100%);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-story-punch strong {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--ut21-blue-deep);
}

.ut21-story-punch p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.72;
}

.ut21-request-card {
    display: grid;
    gap: 14px;
}

.ut21-request-card p {
    margin: 0;
}

.ut21-request-reply {
    padding: 18px 20px;
    border-radius: 18px;
    background: #eef8ff;
    border: 1px solid #cbe4f6;
}

.ut21-request-reply strong,
.ut21-request-reply span {
    display: block;
}

.ut21-request-reply strong {
    margin-bottom: 8px;
}

.ut21-request-reply span {
    color: var(--ut21-muted);
    line-height: 1.68;
}

.ut21-main {
    padding-bottom: 80px;
}

.ut21-section {
    margin: 0 0 48px;
}

.ut21-grid-3,
.ut21-grid-2 {
    display: grid;
    gap: 32px;
}

.ut21-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ut21-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ut21-card,
.ut21-status,
.ut21-form-shell,
.ut21-auth-shell,
.ut21-dashboard-panel {
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    box-shadow: var(--ut21-shadow);
    margin-bottom: 20px;
}

.ut21-card {
    padding: 30px;
}

.ut21-account-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ut21-action-card-reserved {
    padding: 28px;
}

.ut21-scope-strip {
    padding: 22px 26px;
    font-size: 18px;
    line-height: 1.75;
}

.ut21-card h3,
.ut21-dashboard-panel h2,
.ut21-form-shell h1,
.ut21-auth-shell h1 {
    margin: 0 0 12px;
    font-size: 28px;
}

.ut21-card p,
.ut21-card li,
.ut21-dashboard-panel p,
.ut21-status p,
.ut21-auth-shell p,
.ut21-form-shell p {
    color: var(--ut21-muted);
    line-height: 1.6;
}

.ut21-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
}

.ut21-form-shell,
.ut21-auth-shell,
.ut21-dashboard-panel,
.ut21-status {
    padding: 36px;
}

.ut21-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(min(100%, 300px), 0.82fr);
    gap: 28px;
    align-items: start;
}

.ut21-sticky {
    position: sticky;
    top: 24px;
}

.ut21-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ut21-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ut21-form-group.ut21-span-2 {
    grid-column: span 2;
}

.ut21-form-group label {
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    font-size: 15px;
}

.ut21-form-input,
.ut21-form-select,
.ut21-form-textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--ut21-border);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ut21-ink);
    background: #fbfdff;
}

.ut21-form-textarea {
    min-height: 128px;
    resize: vertical;
}

.ut21-form-input:focus,
.ut21-form-select:focus,
.ut21-form-textarea:focus {
    outline: 3px solid rgba(0, 158, 224, 0.18);
    border-color: rgba(0, 158, 224, 0.7);
}

.ut21-hint {
    font-size: 13px;
    color: var(--ut21-muted);
}

.ut21-checkbox-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.5;
}

.ut21-checkbox-row input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.ut21-locked-access-note {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-note {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #f9d49b;
    background: #fff6e8;
    color: #8f4e00;
}

.ut21-alert {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px 18px 66px;
    border-radius: 22px;
    margin-bottom: 20px;
    border: 1px solid;
    box-shadow: 0 16px 38px rgba(18, 70, 110, 0.08);
    overflow: hidden;
}

.ut21-alert::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.ut21-alert::after {
    display: none;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.ut21-alert > div + div {
    margin-top: 4px;
}

.ut21-alert-success {
    background: #effbf6;
    color: var(--ut21-success);
    border-color: #b5e7d1;
}

.ut21-alert-success::before {
    content: "✓";
    background: rgba(5, 150, 105, 0.12);
    color: var(--ut21-success);
}

.ut21-alert-success::after {
    display: none;
}

.ut21-alert-danger {
    background: #d92d20;
    color: var(--ut21-white);
    border-color: #d92d20;
}

.ut21-alert-danger::before {
    content: "!";
    background: rgba(255, 255, 255, 0.16);
    color: var(--ut21-white);
}

.ut21-alert-danger::after {
    background: rgba(122, 12, 12, 0.55);
}

.ut21-alert-danger a {
    color: inherit;
}

.ut21-alert-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: 14px;
}

.ut21-alert-danger .ut21-btn-light {
    min-height: 42px;
}

.ut21-alert-info {
    background: #eef7fd;
    color: var(--ut21-blue-deep);
    border-color: #bfdeef;
}

.ut21-alert-info::before {
    content: "i";
    background: rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
}

.ut21-alert-info::after {
    background: var(--ut21-blue);
}

.ut21-summary-list {
    display: grid;
    gap: 12px;
}

.ut21-summary-row {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--ut21-border);
}

.ut21-summary-row:last-child {
    border-bottom: 0;
}

.ut21-summary-row strong {
    white-space: nowrap;
}

.ut21-inline-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 15px;
}

.ut21-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    white-space: nowrap;
}

.ut21-status-pending {
    background: #fff4dc;
    color: var(--ut21-warning);
}

.ut21-status-approved {
    background: #eefbf6;
    color: var(--ut21-success);
}

.ut21-status-rejected {
    background: #fff5f5;
    color: var(--ut21-danger);
}

.ut21-dashboard-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.ut21-stat {
    min-width: 0;
    padding: 24px 26px;
    border-radius: 20px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-stat strong,
.ut21-stat span {
    display: block;
}

.ut21-stat strong {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: clamp(22px, 2.7vw, 34px);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ut21-stat span {
    color: var(--ut21-muted);
    line-height: 1.45;
}

.ut21-stat-role strong {
    font-size: clamp(19px, 2.1vw, 28px);
}

.ut21-list {
    display: grid;
    gap: 16px;
}

.ut21-list-item {
    padding: 22px;
    border-radius: 20px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-list-head,
.ut21-list-meta,
.ut21-list-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

.ut21-list-head {
    justify-content: space-between;
}

.ut21-list-head h3 {
    margin: 0;
    font-size: 22px;
}

.ut21-list-meta {
    color: var(--ut21-muted);
    font-size: 14px;
    margin-top: 10px;
}

.ut21-list-body {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.ut21-list-body div {
    min-width: 0;
}

.ut21-list-body strong,
.ut21-list-body span {
    display: block;
}

.ut21-list-body strong {
    font-size: 13px;
    color: var(--ut21-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.ut21-list-actions {
    margin-top: 18px;
}

.ut21-resource-list {
    display: grid;
    gap: 16px;
}

.ut21-resource {
    padding: 20px;
    border-radius: 18px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-footer {
    padding: 34px 0 48px;
    color: var(--ut21-muted);
    font-size: 14px;
}

.ut21-footer-card {
    padding: 22px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: 20px;
    box-shadow: var(--ut21-shadow);
}

.ut21-empty {
    padding: 26px;
    border: 1px dashed var(--ut21-border);
    border-radius: 18px;
    background: #fbfdff;
    color: var(--ut21-muted);
    text-align: center;
}

.ut21-search-panel {
    display: grid;
    gap: 18px;
    margin-bottom: 8px;
}

.ut21-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 14px;
}

.ut21-search-form-advanced {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
}

.ut21-search-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
}

.ut21-search-summary {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
}

.ut21-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(min(100%, 300px), 0.9fr);
    gap: 28px;
    margin-bottom: 48px;
}

.ut21-map-panel,
.ut21-map-side {
    display: grid;
    gap: 16px;
}

.ut21-map-canvas {
    width: 100%;
    height: 500px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--ut21-border);
}

.ut21-employeur-list {
    max-height: 760px;
    overflow: auto;
    padding-right: 6px;
}

.ut21-employeur-item h3 {
    font-size: 20px;
}

.ut21-map-tooltip {
    background: #15324b;
    border: 0;
    color: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(8, 36, 58, 0.22);
}

.ut21-map-tooltip::before {
    border-top-color: #15324b !important;
}

.ut21-commune-tooltip {
    z-index: 1000 !important;
    background: #009ee0;
}
.ut21-commune-tooltip::before {
    border-top-color: #009ee0 !important;
}
.ut21-map-tooltip {
    z-index: 500 !important;
}

.ut21-map-popup {
    display: grid;
    gap: 8px;
    min-width: 220px;
}

.ut21-map-popup strong {
    font-size: 15px;
    line-height: 1.35;
}

.ut21-map-popup span {
    color: var(--ut21-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ut21-map-popup-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(0, 158, 224, 0.1);
    color: var(--ut21-blue-deep);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.ut21-map-popup-link:hover {
    background: rgba(0, 158, 224, 0.16);
}

.ut21-force-list {
    display: grid;
    gap: 30px;
}

.ut21-force-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    display: grid;
    gap: 24px;
}

.ut21-force-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.ut21-force-head h2 {
    margin: 10px 0 0;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.1;
}

.ut21-force-topline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.ut21-force-city {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-force-meta {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.ut21-force-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
    color: var(--ut21-blue-deep);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-force-section {
    display: grid;
    gap: 12px;
    padding-top: 6px;
}

.ut21-force-section strong {
    font-size: 18px;
}

.ut21-force-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ut21-force-summary-item {
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 16px;
    border-radius: 18px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-force-summary-item span {
    color: var(--ut21-muted);
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ut21-force-summary-item strong {
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ut21-force-summary-item a {
    color: var(--ut21-blue-deep);
    text-decoration: none;
}

.ut21-force-summary-item a:hover {
    text-decoration: underline;
}

.ut21-force-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}

.ut21-force-badge {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
    color: var(--ut21-blue-deep);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    font-size: 15px;
}

.ut21-force-badge-unsa {
    background: rgba(0, 158, 224, 0.12);
    border-color: rgba(0, 158, 224, 0.28);
}

.ut21-force-reps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ut21-force-rep-group {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-force-rep-group h3 {
    margin: 0;
    font-size: 18px;
}

.ut21-force-rep-item {
    display: grid;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--ut21-border);
}

.ut21-force-rep-item:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.ut21-force-rep-item span {
    color: var(--ut21-muted);
    line-height: 1.5;
}

.ut21-force-rep-item strong {
    font-size: 16px;
}

.ut21-force-rep-union {
    color: var(--ut21-blue-deep) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ut21-prep-sections {
    display: grid;
    gap: 18px;
}

.ut21-prep-section {
    padding: 26px;
    border-radius: 26px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    scroll-margin-top: 24px;
}

.ut21-prep-match {
    outline: 3px solid rgba(0, 158, 224, 0.22);
}

.ut21-prep-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.ut21-prep-heading h2 {
    margin: 12px 0 0;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.18;
}

.ut21-prep-card {
    padding: 22px;
    border-radius: 22px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-prep-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
}

.ut21-prep-resources {
    display: grid;
    gap: 12px;
}

.ut21-prep-resource {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid var(--ut21-border);
    background: var(--ut21-white);
    text-decoration: none;
}

.ut21-prep-resource strong {
    font-size: 17px;
}

.ut21-prep-resource span {
    color: var(--ut21-muted);
    line-height: 1.55;
}

.ut21-nowrap {
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .ut21-hero,
    .ut21-home-news,
    .ut21-form-layout,
    .ut21-login-layout,
    .ut21-grid-3,
    .ut21-grid-2,
    .ut21-pricing-header,
    .ut21-article-grid,
    .ut21-action-grid:not(.ut21-adherent-grid),
    .ut21-discover-panel,
    .ut21-story-grid,
    .ut21-story-hero {
        grid-template-columns: 1fr;
    }

    .ut21-adherent-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ut21-action-card,
    .ut21-action-card-primary,
    .ut21-action-card-news,
    .ut21-action-card-main,
    .ut21-action-card-reserved {
        grid-column: auto;
    }

    .ut21-home-news-grid {
        grid-template-columns: 1fr;
    }

    .ut21-login-side {
        order: 2;
    }

    .ut21-login-main {
        order: 1;
    }

    .ut21-discover-media img {
        min-height: 320px;
    }

    .ut21-story-media img {
        min-height: 320px;
    }

    .ut21-sticky {
        position: static;
    }

    .ut21-login-create-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 760px) {
    .ut21-shell {
        width: min(100vw - 20px, 1180px);
    }

    .ut21-topbar {
        padding: 12px 0 16px;
    }

    .ut21-nav {
        border-radius: 24px;
        padding: 12px 14px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .ut21-nav-links {
        width: 100%;
        justify-content: stretch;
    }

    .ut21-nav-actions {
        width: auto;
        margin-left: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .ut21-role-pill {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .ut21-tabs {
        gap: 10px;
    }

    .ut21-tab {
        min-height: 42px;
        padding: 0 14px;
        font-size: 14px;
    }

    .ut21-brand {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .ut21-brand-logo {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        box-shadow: none;
    }

    .ut21-brand-copy {
        display: none;
    }

    .ut21-link-pill,
    .ut21-btn,
    .ut21-btn-secondary,
    .ut21-btn-ghost,
    .ut21-btn-danger {
        width: 100%;
    }

    .ut21-icon-link {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .ut21-mobile-hide {
        display: none !important;
    }

    .ut21-icon-link-home {
        display: none !important;
    }

    .ut21-hero-copy,
    .ut21-hero-side,
    .ut21-form-shell,
    .ut21-auth-shell,
    .ut21-dashboard-panel,
    .ut21-status,
    .ut21-card {
        padding: 22px;
    }

    .ut21-hero-copy h1,
    .ut21-section-title,
    .ut21-home-heading {
        font-size: 34px;
    }

    .ut21-hero-copy p,
    .ut21-section-lead,
    .ut21-pricing-copy {
        font-size: 17px;
    }

    .ut21-badge-grid,
    .ut21-form-grid,
    .ut21-list-body,
    .ut21-dashboard-top,
    .ut21-action-grid,
    .ut21-adherent-grid,
    .ut21-search-form,
    .ut21-map-layout,
    .ut21-force-reps,
    .ut21-force-summary-grid {
        grid-template-columns: 1fr;
    }

    .ut21-form-group.ut21-span-2 {
        grid-column: span 1;
    }

    .ut21-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ut21-summary-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-force-head,
    .ut21-prep-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-home-news-meta,
    .ut21-home-news-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-section-heading-row {
        align-items: stretch;
        flex-direction: column;
    }

    .ut21-heading-action {
        width: 100%;
    }

    .ut21-search-actions {
        width: 100%;
    }

    .ut21-search-actions .ut21-btn,
    .ut21-search-actions .ut21-btn-ghost {
        width: 100%;
    }

    .ut21-discover-panel {
        padding: 22px;
    }

    .ut21-employeur-list {
        max-height: none;
        padding-right: 0;
    }

    .ut21-login-side-card,
    .ut21-login-card,
    .ut21-login-create-card {
        padding: 22px;
    }

    .ut21-login-method {
        flex-direction: column;
        gap: 14px;
    }

    .ut21-login-method h2 {
        font-size: 24px;
    }

    .ut21-code-input {
        font-size: 20px;
        letter-spacing: 0.16em;
    }

    .ut21-login-create-row {
        gap: 16px;
    }

    .ut21-discover-media img {
        min-height: 240px;
    }

    .ut21-pricing-desktop {
        display: none;
    }

    .ut21-pricing-mobile {
        display: grid;
        gap: 14px;
    }

    .ut21-pricing-mobile-card {
        border: 1px solid var(--ut21-border);
        border-radius: 18px;
        overflow: hidden;
        background: #fbfdff;
    }

    .ut21-pricing-mobile-card strong {
        display: block;
        padding: 14px 16px;
        background: var(--ut21-blue);
        color: var(--ut21-white);
        font-size: 18px;
    }

    .ut21-pricing-mobile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px;
        border-top: 1px solid var(--ut21-border);
    }

    .ut21-pricing-mobile-row span:first-child {
        color: var(--ut21-muted);
    }

    .ut21-icon-link[data-tooltip]::after {
        display: none;
    }

    /* Nouvelles pages — responsive mobile */

    /* Index: section éditoriale photo+texte */
    div[style*="display:flex"][style*="gap:28px"] {
        flex-direction: column !important;
        gap: 16px !important;
        padding: 22px !important;
    }
    div[style*="display:flex"][style*="gap:28px"] > img {
        width: 100px !important;
        align-self: center;
    }

    /* Index: 4 cards adhérent → 2 colonnes (legacy + new class) */
    .ut21-action-grid[style*="repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ut21-adherent-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Simulateur salaire */
    .ut21-sal-layout {
        grid-template-columns: 1fr !important;
    }
    .ut21-sal-form {
        position: static !important;
    }

    /* Élections pro */
    .ut21-ep-grid {
        grid-template-columns: 1fr !important;
    }

    /* Collectivité détail */
    .ut21-cv-grid {
        grid-template-columns: 1fr !important;
    }

    /* Déduction impôts */
    .ut21-tax-grid {
        grid-template-columns: 1fr !important;
    }
    .ut21-tax-dates {
        grid-template-columns: 1fr !important;
    }

    /* Emploi */
    .ut21-job-search {
        flex-direction: column;
    }
    .ut21-job-search input {
        min-width: 0;
    }
    .ut21-job-card {
        grid-template-columns: 1fr !important;
    }

    /* Cartes */
    .ut21-carte-map {
        height: 300px !important;
    }

    /* Groupements */
    .ut21-grp-filters {
        flex-direction: column;
    }
    .ut21-grp-filters input[type="text"] {
        min-width: 0;
        width: 100%;
    }

    /* Empêcher les titres longs de déborder */
    .ut21-section-title,
    .ut21-home-heading {
        white-space: normal !important;
        word-break: break-word;
    }

    /* Formulaire élus */
    .ut21-elus-form {
        grid-template-columns: 1fr !important;
    }
}

/* Très petit écran (< 480px) */
@media (max-width: 480px) {
    .ut21-action-grid[style*="repeat(4"] {
        grid-template-columns: 1fr !important;
    }
    .ut21-adherent-grid {
        grid-template-columns: 1fr;
    }
    .ut21-ep-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ut21-cv-metrics {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ut21-tax-cotis {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Masquer phrase soutien sur écrans étroits */
@media(max-width:1100px){
    .ut21-brand-support{display:none !important;}
}
@media(max-width:900px){
    .ut21-brand-copy span:not(.ut21-brand-support){font-size:11px !important;}
    .ut21-brand-logo{width:40px !important;height:40px !important;}
}
CSSEOF # Add responsive CSS for brand

@media(max-width:1100px){.ut21-brand-support{display:none !important;}}
@media(max-width:900px){.ut21-brand-copy span:not(.ut21-brand-support){font-size:11px !important;}.ut21-brand-logo{width:40px !important;height:40px !important;}}

/* FORCE nav-actions sur 1 ligne */
.ut21-nav{flex-wrap:nowrap !important;}
.ut21-nav-actions{flex-wrap:nowrap !important;flex-shrink:0 !important;}
@media(max-width:1000px){
    .ut21-icon-link{width:40px !important;height:40px !important;border-radius:12px !important;}
    .ut21-icon-link svg{width:18px !important;height:18px !important;}
    .ut21-role-pill{min-height:32px !important;padding:0 10px !important;font-size:10px !important;}
    .ut21-nav-actions{gap:5px !important;}
}
@media(max-width:768px){
    .ut21-icon-link{width:36px !important;height:36px !important;border-radius:10px !important;}
    .ut21-icon-link svg{width:16px !important;height:16px !important;}
    .ut21-role-pill{min-height:28px !important;padding:0 8px !important;font-size:9px !important;}
    .ut21-nav-actions{gap:4px !important;}
    .ut21-brand-copy strong{font-size:14px !important;}
}
CSSAPPEND # Force single-line nav with smaller icons on small screens

.ut21-nav{flex-wrap:nowrap !important;}
.ut21-nav-actions{flex-wrap:nowrap !important;flex-shrink:0 !important;}
@media(max-width:1000px){.ut21-icon-link{width:40px !important;height:40px !important;border-radius:12px !important;}.ut21-icon-link svg{width:18px !important;height:18px !important;}.ut21-role-pill{min-height:32px !important;padding:0 10px !important;font-size:10px !important;}.ut21-nav-actions{gap:5px !important;}}
@media(max-width:768px){.ut21-icon-link{width:36px !important;height:36px !important;border-radius:10px !important;}.ut21-icon-link svg{width:16px !important;height:16px !important;}.ut21-role-pill{min-height:28px !important;padding:0 8px !important;font-size:9px !important;}.ut21-nav-actions{gap:4px !important;}.ut21-brand-copy strong{font-size:14px !important;}}

input,select,textarea,button{font-family:inherit;font-size:inherit;}

/* ut21-card: flex column with button at bottom */
.ut21-card {
    display: flex;
    flex-direction: column;
}
.ut21-card > .ut21-btn,
.ut21-card > a[class*="ut21-btn"] {
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    display: flex;
}


/* ============================================================
   MÉTIERS & DROITS — Cards + Pages (avril 2026)
   ============================================================ */

/* Grille 3 colonnes */
.ut21-action-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card métier */
.ut21-metier-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--ut21-ink);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.ut21-metier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(12, 56, 88, 0.12);
}
.ut21-metier-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ut21-ink);
}
.ut21-metier-card p {
    font-size: 14px;
    color: var(--ut21-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.ut21-metier-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e9f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ut21-metier-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: var(--ut21-blue);
}

/* Card droit */
.ut21-droit-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--ut21-ink);
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.ut21-droit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(12, 56, 88, 0.12);
}
.ut21-droit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ut21-ink);
}
.ut21-droit-card p {
    font-size: 14px;
    color: var(--ut21-muted);
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
}
.ut21-droit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--ut21-blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Hero métier */
.ut21-hero-metier {
    background: linear-gradient(135deg, #0b4f7a 0%, #009ee0 100%);
    color: #fff;
    padding: 64px 24px 56px;
    text-align: center;
}
.ut21-hero-metier-inner {
    max-width: 720px;
    margin: 0 auto;
}
.ut21-hero-metier-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.ut21-hero-metier-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}
.ut21-hero-metier h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.15;
}
.ut21-hero-metier-accroche {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Hero droit */
.ut21-hero-droit {
    background: linear-gradient(135deg, #065f46 0%, #059669 50%, #009ee0 100%);
    color: #fff;
    padding: 64px 24px 56px;
    text-align: center;
}
.ut21-hero-droit-inner {
    max-width: 720px;
    margin: 0 auto;
}
.ut21-hero-droit-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ut21-hero-droit-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}
.ut21-hero-droit-montant {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin: 0 0 8px;
}
.ut21-hero-droit h1 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    margin: 0 0 12px;
}
.ut21-hero-droit-accroche {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

/* Problèmes grid */
.ut21-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ut21-problem-card {
    background: var(--ut21-surface);
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    padding: 28px;
}
.ut21-problem-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f4fd, #d1e9f7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ut21-problem-icon svg {
    width: 22px;
    height: 22px;
    color: var(--ut21-blue);
}
.ut21-problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--ut21-ink);
}
.ut21-problem-card p {
    font-size: 14px;
    color: var(--ut21-muted);
    line-height: 1.6;
    margin: 0;
}

/* Comparatif sympathisant / adhérent */
.ut21-compare-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.ut21-compare-col {
    background: #fff;
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.ut21-compare-col-premium {
    position: relative;
    border-color: var(--ut21-blue);
    border-width: 2px;
    background: linear-gradient(180deg, #f0f9ff 0%, #fff 30%);
}
.ut21-compare-badge-reco {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ut21-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.ut21-compare-header {
    font-size: 20px;
    font-weight: 700;
    color: var(--ut21-ink);
    margin-bottom: 20px;
}
.ut21-compare-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--ut21-blue);
}
.ut21-compare-price sup {
    font-size: 10px;
}
.ut21-compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}
.ut21-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--ut21-ink);
}
.ut21-compare-list li svg {
    width: 18px;
    height: 18px;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 1px;
}
.ut21-compare-check-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
    padding: 12px 0;
}
.ut21-compare-check-badge svg {
    width: 20px;
    height: 20px;
}
.ut21-compare-footnote {
    font-size: 12px;
    color: var(--ut21-muted);
    margin: 12px 0 0;
    line-height: 1.5;
}

/* Checklist interactive */
.ut21-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}
.ut21-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--ut21-border);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.ut21-checklist-item:has(.ut21-checklist-input:checked) {
    border-color: #16a34a;
    background: #f0fdf4;
}
.ut21-checklist-input {
    display: none;
}
.ut21-checklist-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid var(--ut21-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.ut21-checklist-box svg {
    width: 16px;
    height: 16px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.ut21-checklist-item:has(.ut21-checklist-input:checked) .ut21-checklist-box {
    background: #16a34a;
    border-color: #16a34a;
}
.ut21-checklist-item:has(.ut21-checklist-input:checked) .ut21-checklist-box svg {
    opacity: 1;
}
.ut21-checklist-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ut21-ink);
    padding-top: 2px;
}
.ut21-checklist-result {
    margin-top: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 700px;
}
.ut21-checklist-result svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 1px;
}
.ut21-checklist-result-yes {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.ut21-checklist-result-yes svg { color: #16a34a; }
.ut21-checklist-result-maybe {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}
.ut21-checklist-result-maybe svg { color: #ea580c; }
.ut21-checklist-result-no {
    background: var(--ut21-surface);
    border: 1px solid var(--ut21-border);
    color: var(--ut21-muted);
}

/* Calculette NBI */
.ut21-calc-card {
    background: #fff;
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    padding: 32px;
    max-width: 500px;
}
.ut21-calc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.ut21-calc-row label {
    font-size: 15px;
    font-weight: 600;
    color: var(--ut21-ink);
}
.ut21-calc-input {
    width: 80px;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    border: 2px solid var(--ut21-border);
    border-radius: 12px;
    text-align: center;
    color: var(--ut21-blue);
}
.ut21-calc-input:focus {
    outline: none;
    border-color: var(--ut21-blue);
}
.ut21-calc-result {
    text-align: center;
}
.ut21-calc-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--ut21-blue);
    margin-bottom: 4px;
}
.ut21-calc-detail {
    font-size: 16px;
    color: var(--ut21-muted);
    margin-bottom: 16px;
}
.ut21-calc-compare {
    font-size: 14px;
    color: var(--ut21-ink);
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    padding: 14px 18px;
    line-height: 1.5;
}

/* Contenu texte */
.ut21-content-block {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ut21-ink);
}
.ut21-content-block p { margin: 0 0 16px; }
.ut21-content-block ol { padding-left: 24px; margin: 0 0 16px; }
.ut21-content-block li { margin-bottom: 8px; }
.ut21-content-ref {
    font-size: 13px;
    color: var(--ut21-muted);
    background: var(--ut21-surface);
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 16px;
}
.ut21-content-ref a { color: var(--ut21-blue); }

/* CTA card */
.ut21-cta-card {
    background: linear-gradient(135deg, #0b4f7a 0%, #009ee0 100%);
    color: #fff;
    border-radius: var(--ut21-radius);
    padding: 48px 40px;
    text-align: center;
}
.ut21-cta-card h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin: 0 0 12px;
}
.ut21-cta-card p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0 0 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.ut21-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.ut21-cta-card .ut21-btn {
    background: #fff;
    color: var(--ut21-blue);
    font-weight: 700;
}
.ut21-cta-card .ut21-btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

/* ============================================================
   CONQUÊTE — Dashboard backoffice (avril 2026)
   ============================================================ */

.ut21-conquete-kpi {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.ut21-conquete-kpi-card {
    background: #fff;
    border: 1px solid var(--ut21-border);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.ut21-conquete-kpi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--ut21-ink);
    line-height: 1.1;
}
.ut21-conquete-kpi-label {
    font-size: 13px;
    color: var(--ut21-muted);
    margin-top: 6px;
}
.ut21-conquete-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ut21-conquete-table th {
    background: var(--ut21-surface);
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ut21-muted);
    border-bottom: 2px solid var(--ut21-border);
}
.ut21-conquete-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.ut21-conquete-table tr:hover td {
    background: #f8fafc;
}
.ut21-status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}
.ut21-status-dot-rouge { background: #ef4444; }
.ut21-status-dot-orange { background: #f59e0b; }
.ut21-status-dot-vert { background: #16a34a; }
.ut21-status-dot-bleu { background: #009ee0; }

.ut21-conquete-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}
.ut21-conquete-filters input,
.ut21-conquete-filters select {
    font-family: inherit;
    font-size: 14px;
    padding: 8px 14px;
    border: 1px solid var(--ut21-border);
    border-radius: 10px;
    background: #fff;
}
.ut21-conquete-jauge {
    height: 24px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
}
.ut21-conquete-jauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #009ee0, #16a34a);
    border-radius: 12px;
    transition: width 0.5s;
}

/* Responsive métier/droit */
@media (max-width: 1080px) {
    .ut21-action-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .ut21-conquete-kpi { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .ut21-problems-grid { grid-template-columns: 1fr; }
    .ut21-compare-wrapper { grid-template-columns: 1fr; }
    .ut21-hero-metier, .ut21-hero-droit { padding: 48px 20px 40px; }
    .ut21-cta-card { padding: 36px 24px; }
    .ut21-conquete-kpi { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .ut21-action-grid-3col { grid-template-columns: 1fr; }
    .ut21-calc-row { flex-direction: column; align-items: flex-start; }
    .ut21-conquete-kpi { grid-template-columns: 1fr; }
    .ut21-conquete-table { font-size: 12px; }
    .ut21-conquete-table th, .ut21-conquete-table td { padding: 8px 8px; }
}
