:root {
  --e: cubic-bezier(.22, 1, .36, 1);
  --b: blur(24px) saturate(180%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --blur: blur(24px) saturate(180%);
}

/* === CONSULTATION === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            background: #fff;
            color: #111;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased
        }

        a {
            color: #111
        }

        ::selection {
            background: #e30613;
            color: #fff
        }

        .c {
            max-width: 920px;
            margin: 0 auto;
        }

        /* HEADER */
        header {
            padding: 20px 0 36px;
            border-bottom: 1px solid rgba(0, 0, 0, .08)
        }

        .ht {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px
        }

        .li {
            height: 28px;
            width: auto;
            transition: opacity .4s var(--e)
        }

        .li:hover {
            opacity: .7
        }

        .logo-img {
            height: 28px;
            width: auto;
            display: block;
            transition: opacity .4s var(--e)
        }

        .logo-img:hover {
            opacity: .7
        }

        .db {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #bbb;
            border: 1px solid #e8e8e8;
            padding: 5px 14px;
            border-radius: 20px
        }

        header h1 {
            font-size: 38px;
            font-weight: 300;
            letter-spacing: -1.2px;
            line-height: 1.12;
            margin-bottom: 14px
        }

        header h1 strong {
            font-weight: 500
        }

        header .sub {
            font-size: 14px;
            color: #999;
            max-width: 560px;
            line-height: 1.8
        }

        /* NAV */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, .72);
            backdrop-filter: var(--b);
            -webkit-backdrop-filter: var(--b);
            border-bottom: 1px solid rgba(0, 0, 0, .06)
        }

        nav .c {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none
        }

        nav .c::-webkit-scrollbar {
            display: none
        }

        nav a {
            padding: 15px 18px;
            font-size: 10px;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            text-decoration: none;
            color: #bbb;
            border-bottom: 2px solid transparent;
            transition: all .5s var(--e);
            white-space: nowrap
        }

        nav a:hover {
            color: #666
        }

        nav a.active {
            color: #111;
            border-bottom-color: #e30613
        }

        /* SECTIONS */
        section {
            padding: 80px 0 72px;
            border-bottom: 1px solid #f0f0f0;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s var(--e), transform 1s var(--e)
        }

        section.v {
            opacity: 1;
            transform: none
        }

        section:last-of-type {
            border-bottom: none
        }

        .sn {
            font-size: 9px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #ddd;
            margin-bottom: 8px
        }

        .st {
            font-size: 26px;
            font-weight: 300;
            letter-spacing: -.5px;
            margin-bottom: 10px
        }

        .si {
            font-size: 13.5px;
            color: #aaa;
            margin-bottom: 44px;
            max-width: 540px;
            line-height: 1.9
        }

        p.bt {
            font-size: 14px;
            margin-bottom: 20px;
            line-height: 1.9;
            color: #444
        }

        p.bt strong {
            color: #111;
            font-weight: 600
        }

        /* TABLE */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0
        }

        thead th {
            text-align: left;
            font-size: 9px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 300;
            color: #ccc;
            padding: 0 12px 14px 0;
            border-bottom: 1px solid #111
        }

        tbody td {
            padding: 15px 12px 15px 0;
            font-size: 13px;
            border-bottom: 1px solid #f5f5f5;
            vertical-align: top;
            transition: all .35s var(--e)
        }

        tbody tr {
            transition: all .35s var(--e);
            cursor: default
        }

        tbody tr:hover td {
            background: rgba(227, 6, 19, .015);
            padding-left: 6px
        }

        .tn {
            font-size: 11px;
            color: #ddd;
            width: 30px
        }

        .te {
            font-weight: 500;
            white-space: nowrap
        }

        .tm {
            font-size: 12px;
            color: #bbb
        }

        /* SPECS */
        .sg {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin: 36px 0
        }

        .sp {
            padding: 24px 26px;
            border: 1px solid #f5f5f5;
            position: relative;
            overflow: hidden;
            transition: all .5s var(--e);
            cursor: default
        }

        .sp::before {
            content: '';
            position: absolute;
            inset: 0;
            background: #111;
            opacity: 0;
            transition: opacity .6s var(--e)
        }

        .sp:hover::before {
            opacity: 1
        }

        .sp:hover * {
            color: #fff !important;
            position: relative;
            z-index: 1
        }

        .sl {
            font-size: 8.5px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #ccc;
            margin-bottom: 5px;
            transition: color .5s
        }

        .sv {
            font-size: 14px;
            color: #111;
            transition: color .5s
        }

        /* COUPE */
        .cw {
            border: 1px solid #f0f0f0;
            padding: 44px;
            margin: 36px 0;
            transition: all .6s var(--e)
        }

        .cw:hover {
            box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .08);
            border-color: #e8e8e8
        }

        .cp {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ddd;
            margin-bottom: 24px
        }

        /* CAROUSEL */
        .car {
            position: relative;
            margin: 40px 0 8px;
            overflow: hidden
        }

        .ct {
            display: flex;
            transition: transform .8s var(--e)
        }

        .cs {
            min-width: 100%;
            position: relative;
            overflow: hidden
        }

        .cs img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            cursor: zoom-in;
            filter: grayscale(20%) brightness(.98);
            transition: all .7s var(--e);
            transform: scale(1.02)
        }

        .cs:hover img {
            filter: grayscale(0%) brightness(1);
            transform: scale(1)
        }

        .cc {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 48px 32px 24px;
            background: linear-gradient(transparent, rgba(0, 0, 0, .55));
            color: #fff;
            font-size: 13px;
            opacity: 0;
            transform: translateY(8px);
            transition: all .5s var(--e)
        }

        .cs:hover .cc {
            opacity: 1;
            transform: none
        }

        .cn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            margin: 0;
            padding: 0;
            border: none;
            background: rgba(255, 255, 255, .85);
            backdrop-filter: blur(12px);
            border-radius: 50%;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .4s var(--e);
            opacity: 0;
            z-index: 5;
            color: #111
        }

        .car:hover .cn {
            opacity: 1
        }

        .cn:hover {
            background: #111;
            color: #fff;
            transform: translateY(-50%) scale(1.08)
        }

        .cpl {
            left: 20px
        }

        .cpr {
            right: 20px
        }

        .cd {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 18px
        }

        .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            transition: all .4s var(--e);
            padding: 0
        }

        .dot.a {
            background: #e30613;
            transform: scale(1.5)
        }

        /* FULLSCREEN */
        .fo {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .92);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
            backdrop-filter: blur(30px)
        }

        .fo.show {
            display: flex;
            animation: ff .35s var(--e)
        }

        .fo img {
            max-width: 94vw;
            max-height: 94vh;
            object-fit: contain
        }

        .fc {
            position: absolute;
            top: 28px;
            right: 32px;
            color: rgba(255, 255, 255, .6);
            font-size: 18px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            transition: all .3s;
            border: none
        }

        .fc:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff
        }

        @keyframes ff {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        /* BLOCKS */
        .rb {
            border-left: 2px solid #e30613;
            padding: 20px 26px;
            margin: 28px 0;
            font-size: 13px;
            line-height: 1.9;
            transition: all .5s var(--e);
            background: rgba(227, 6, 19, .01)
        }

        .rb:hover {
            padding-left: 34px;
            background: rgba(227, 6, 19, .025)
        }

        .rb a {
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            transition: border-color .3s
        }

        .rb a:hover {
            border-bottom-color: #e30613
        }

        .rt {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #ccc;
            margin-bottom: 5px;
            display: block
        }

        .dn {
            font-size: 13px;
            color: #999;
            padding: 26px;
            border-left: 2px solid #e30613;
            margin-bottom: 36px;
            line-height: 1.9;
            background: rgba(227, 6, 19, .01);
            transition: all .4s var(--e)
        }

        .dn:hover {
            background: rgba(227, 6, 19, .025)
        }

        .dn strong {
            color: #111
        }

        /* DPGF */
        .dw {
            overflow-x: auto;
            margin: 28px 0
        }

        .dt {
            width: 100%;
            border-collapse: collapse;
            min-width: 680px
        }

        .dt th {
            text-align: left;
            font-size: 8.5px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 300;
            color: #ccc;
            padding: 12px 10px;
            border-bottom: 2px solid #111
        }

        .dt td {
            padding: 0;
            font-size: 13px;
            border-bottom: 1px solid #f8f8f8;
            transition: all .25s
        }

        .dt tbody tr:hover td {
            background: rgba(227, 6, 19, .012)
        }

        .dt .lh td {
            font-weight: 500;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 28px 10px 10px;
            border-bottom: 1px solid #e8e8e8;
            color: #111
        }

        .dt td input,
        .dt td textarea {
            width: 100%;
            border: none;
            font-family: inherit;
            font-size: 13px;
            padding: 13px 10px;
            background: transparent;
            outline: none;
            line-height: 1.5;
            transition: background .3s
        }

        .dt td input:focus,
        .dt td textarea:focus {
            background: rgba(227, 6, 19, .02)
        }

        .dt td textarea {
            resize: vertical;
            min-height: 38px
        }

        .dt td.xc input {
            text-align: center
        }

        .dt td.xr input {
            text-align: right
        }

        .dt .tr td {
            border-top: 2px solid #111;
            font-weight: 500;
            padding: 16px 10px;
            font-size: 14px
        }

        .dt .tr td input {
            font-weight: 500;
            font-size: 14px
        }

        /* BUTTONS */
        .btn {
            padding: 10px 20px;
            font-family: inherit;
            font-size: 9.5px;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            border: 1px solid #111;
            background: #fff;
            color: #111;
            transition: all .4s var(--e);
            position: relative;
            overflow: hidden
        }

        .btn::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: #111;
            transform: translateY(100%);
            transition: transform .45s var(--e);
            z-index: 0
        }

        .btn:hover {
            color: #fff
        }

        .btn:hover::after {
            transform: translateY(0)
        }

        .btn span {
            position: relative;
            z-index: 1
        }

        .bp {
            background: #111;
            color: #fff
        }

        .bp::after {
            background: #e30613
        }

        .br {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap
        }

        /* TABS */
        .tb {
            padding: 10px 22px;
            font-family: inherit;
            font-size: 9.5px;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid #111;
            cursor: pointer;
            transition: all .4s var(--e);
            background: #fff;
            color: #111
        }

        .tb.a {
            background: #111;
            color: #fff
        }

        .tb:hover:not(.a) {
            background: #f8f8f8
        }

        /* NORMES */
        .nr {
            display: flex;
            gap: 22px;
            padding: 18px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: all .4s var(--e);
            cursor: default
        }

        .nr:hover {
            padding-left: 14px;
            background: rgba(227, 6, 19, .012)
        }

        .nrf {
            font-size: 13px;
            font-weight: 500;
            min-width: 155px;
            flex-shrink: 0
        }

        .nrd {
            font-size: 13px;
            color: #999;
            line-height: 1.8
        }

        .nrd a {
            color: #999;
            text-decoration: none;
            border-bottom: 1px solid #e8e8e8;
            transition: all .3s
        }

        .nrd a:hover {
            color: #e30613;
            border-bottom-color: #e30613
        }

        .ng {
            margin-top: 40px
        }

        .ngt {
            font-size: 9px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #ddd;
            margin-bottom: 18px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f5f5f5
        }

        /* ZOOM */
        .zw {
            position: relative;
            overflow: hidden;
            cursor: zoom-in
        }

        .zw img {
            transition: transform .3s var(--e)
        }

        /* FOOTER */
        footer {
            border-top: 1px solid rgba(0, 0, 0, .08);
            padding: 44px 0
        }

        footer .c {
            display: flex;
            justify-content: space-between;
            align-items: flex-start
        }

        footer .left {
            font-size: 12px;
            color: #bbb;
            line-height: 2
        }

        .fl {
            margin-bottom: 10px
        }

        .fl img {
            height: 20px;
            width: auto;
            opacity: .45;
            transition: opacity .4s
        }

        .fl img:hover {
            opacity: .7
        }

        .footer-logo img {
            height: 20px;
            width: auto;
            opacity: .45;
            transition: opacity .4s
        }

        .footer-logo img:hover {
            opacity: .7
        }

        footer .right {
            text-align: right;
            font-size: 11px;
            color: #ccc;
            line-height: 2
        }

        ::-webkit-scrollbar {
            width: 6px
        }

        ::-webkit-scrollbar-track {
            background: transparent
        }

        ::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 3px
        }

        @media print {
            nav {
                display: none
            }

            section {
                opacity: 1 !important;
                transform: none !important
            }

            .br,
            .btn,
            .cn {
                display: none
            }
        }

        @media(max-width:768px) {
            .c {
                padding: 0 24px
            }

            header h1 {
                font-size: 26px
            }

            .sg {
                grid-template-columns: 1fr
            }

            .cs img {
                height: 260px
            }

            footer .c {
                flex-direction: column;
                gap: 20px
            }
        }
/* === SUIVI (aliases + spécifique) === */
        .container {
            max-width: 920px;
            margin: 0 auto;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 48px
        }

        .doc-badge {
            font-size: 9px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #bbb;
            border: 1px solid #e8e8e8;
            padding: 5px 14px;
            border-radius: 20px
        }

        .subtitle {
            font-size: 14px;
            color: #999;
            line-height: 1.8
        }

        .confidential {
            font-size: 11px;
            letter-spacing: 1px;
            color: #e30613;
            margin-top: 16px;
            padding: 8px 0
        }

        /* Overlay fullscreen (suivi) */
        .fs-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .92);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: zoom-out;
            backdrop-filter: blur(30px)
        }

        .fs-overlay.show {
            display: flex;
            animation: ff .35s var(--e)
        }

        .fs-overlay #fsImg {
            max-width: 94vw;
            max-height: 94vh;
            object-fit: contain
        }

        .fs-close {
            position: absolute;
            top: 28px;
            right: 32px;
            color: rgba(255, 255, 255, .6);
            font-size: 18px;
            cursor: pointer;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            transition: all .3s;
            border: none
        }

        .fs-close:hover {
            background: rgba(255, 255, 255, .15);
            color: #fff
        }

        /* Sections suivi */
        .section-num {
            font-size: 9px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: #ddd;
            margin-bottom: 8px
        }

        .section-title {
            font-size: 26px;
            font-weight: 300;
            letter-spacing: -.5px;
            margin-bottom: 10px
        }

        .section-intro {
            font-size: 13.5px;
            color: #aaa;
            margin-bottom: 44px;
            max-width: 540px;
            line-height: 1.9
        }

        .status-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 24px 0 40px
        }

        .status-item {
            text-align: center;
            padding: 20px 16px;
            border: 1px solid #eee;
            border-radius: 8px;
            transition: all .3s var(--e)
        }

        .status-item:hover {
            border-color: #e30613;
            background: rgba(227, 6, 19, .02)
        }

        .status-value {
            font-size: 28px;
            font-weight: 300;
            color: #111;
            margin-bottom: 4px
        }

        .status-label {
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #999
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            min-width: 680px
        }

        .data-table th {
            text-align: left;
            font-size: 9px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 300;
            color: #ccc;
            padding: 12px 10px;
            border-bottom: 2px solid #111
        }

        .data-table td {
            padding: 15px 10px;
            font-size: 13px;
            border-bottom: 1px solid #f5f5f5;
            vertical-align: top
        }

        .data-table tbody tr:hover td {
            background: rgba(227, 6, 19, .015)
        }

        .add-btn {
            display: inline-block;
            padding: 10px 20px;
            font-family: inherit;
            font-size: 11px;
            letter-spacing: 1px;
            cursor: pointer;
            border: 1px solid #111;
            background: #fff;
            color: #111;
            margin: 12px 0 24px;
            transition: all .4s var(--e)
        }

        .add-btn:hover {
            background: #111;
            color: #fff
        }

        .ent-form {
            display: none;
            padding: 24px;
            border: 1px solid #eee;
            border-radius: 8px;
            margin-bottom: 24px;
            background: #fafafa
        }

        .ent-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 16px
        }

        .ent-field {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .ent-field.full {
            grid-column: 1 / -1
        }

        .ent-field label {
            font-size: 10px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #999
        }

        .ent-field input,
        .ent-field textarea,
        .ent-field select {
            padding: 10px 12px;
            border: 1px solid #e8e8e8;
            font-family: inherit;
            font-size: 13px;
            border-radius: 4px
        }

        .file-drop {
            border: 2px dashed #ddd;
            padding: 24px;
            text-align: center;
            font-size: 12px;
            color: #999;
            cursor: pointer;
            border-radius: 8px;
            transition: all .3s
        }

        .file-drop:hover {
            border-color: #e30613;
            color: #e30613;
            background: rgba(227, 6, 19, .03)
        }

        .btn-row {
            display: flex;
            gap: 10px;
            margin-top: 14px;
            flex-wrap: wrap
        }

        .btn-primary {
            background: #111;
            color: #fff
        }

        .btn-primary::after {
            background: #e30613
        }

        .ref-block {
            border-left: 2px solid #e30613;
            padding: 20px 26px;
            margin: 28px 0;
            font-size: 13px;
            line-height: 1.9;
            background: rgba(227, 6, 19, .01)
        }

        .comp-placeholder {
            padding: 32px;
            text-align: center;
            color: #999;
            font-size: 13px;
            border: 1px dashed #eee;
            border-radius: 8px;
            margin: 24px 0
        }

        .veille-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 16px;
            transition: all .3s var(--e)
        }

        .veille-card:hover {
            border-color: #e30613;
            background: rgba(227, 6, 19, .015)
        }

        .veille-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px
        }

        .veille-name {
            font-weight: 500;
            font-size: 14px
        }

        .veille-name a {
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            transition: border-color .3s
        }

        .veille-name a:hover {
            border-bottom-color: #e30613
        }

        .veille-tag {
            font-size: 10px;
            letter-spacing: 1px;
            color: #999;
            white-space: nowrap
        }

        .veille-body {
            font-size: 12px;
            color: #666;
            line-height: 1.7
        }

        .veille-desc {
            margin-bottom: 6px
        }

        .veille-notes {
            font-size: 11px;
            color: #999;
            font-style: italic
        }

        .task-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid #f5f5f5
        }

        .task-cb {
            width: 20px;
            height: 20px;
            border: 2px solid #ccc;
            border-radius: 4px;
            flex-shrink: 0;
            cursor: pointer;
            transition: all .25s
        }

        .task-cb.done {
            background: #111;
            border-color: #111;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .task-cb.done::after {
            content: '✓';
            color: #fff;
            font-size: 12px
        }

        .task-text {
            font-size: 13px;
            line-height: 1.6
        }

        .task-who {
            font-size: 11px;
            color: #999;
            margin-left: 6px
        }

        .task-input {
            display: flex;
            gap: 10px;
            margin-top: 16px
        }

        .task-input input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid #e8e8e8;
            font-family: inherit;
            font-size: 13px;
            border-radius: 4px
        }

        .note-item {
            padding: 16px 0;
            border-bottom: 1px solid #f5f5f5
        }

        .note-meta {
            font-size: 10px;
            letter-spacing: 1px;
            color: #999;
            margin-bottom: 6px
        }

        .note-text {
            font-size: 13px;
            line-height: 1.7;
            color: #444
        }

        .note-area {
            margin-top: 20px
        }

        .note-area textarea {
            width: 100%;
            min-height: 80px;
            padding: 12px 14px;
            border: 1px solid #e8e8e8;
            font-family: inherit;
            font-size: 13px;
            border-radius: 4px;
            margin-bottom: 12px
        }

        .link-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid #f5f5f5
        }

        .link-item > div:first-child {
            min-width: 0
        }

        .link-name {
            font-weight: 500;
            font-size: 13px
        }

        .link-name a {
            text-decoration: none;
            border-bottom: 1px solid #ddd;
            transition: border-color .3s
        }

        .link-name a:hover {
            border-bottom-color: #e30613
        }

        .link-url {
            font-size: 11px;
            color: #999;
            margin-top: 2px
        }

        .link-cat {
            font-size: 10px;
            letter-spacing: 1px;
            color: #bbb;
            white-space: nowrap
        }

        .link-input {
            display: flex;
            gap: 10px;
            margin-top: 16px
        }

        .link-input input {
            padding: 10px 14px;
            border: 1px solid #e8e8e8;
            font-family: inherit;
            font-size: 13px;
            border-radius: 4px;
            flex: 1
        }

        .badge {
            display: inline-block;
            padding: 4px 10px;
            font-size: 10px;
            letter-spacing: 1px;
            border-radius: 20px;
            background: #f0f0f0;
            color: #666
        }

        .badge.retenue {
            background: rgba(0, 128, 0, .12);
            color: #2d6a2d
        }

        .badge.ecartee {
            background: rgba(227, 6, 19, .1);
            color: #c50514
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px
            }

            .status-grid {
                grid-template-columns: 1fr 1fr
            }

            .ent-grid {
                grid-template-columns: 1fr
            }

            footer .container {
                flex-direction: column;
                gap: 20px
            }
        }
