/* ================================================
   CBR-CLOUD — CGU / CGV  v5
   Design PRO NOIR — fond neutre, zéro navy-blue
   Aligné checkout / index (#181a1b palette)
   ================================================ */

/* ================================================
   0. FOND GLOBAL — NEAR-BLACK NEUTRE
   ================================================ */
body {
    background-color: #181a1b !important;
    background-image:
        radial-gradient(ellipse 75% 65% at 50% 0%,   rgba(18,20,22,0.85)  0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 5%  20%,  rgba(79,195,247,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 45% 40% at 92% 55%,  rgba(79,195,247,0.03) 0%, transparent 55%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* ================================================
   1. VARIABLES — PALETTE NOIRE/NEUTRE
   ================================================ */
:root {
    /* Surfaces */
    --bg-base:    #111214;
    --bg-surface: #141618;
    --bg-card:    #1a1c20;
    --bg-card-h:  #1f2226;
    --bg-raised:  #222528;

    /* Accent (bleu uniquement pour les éléments interactifs) */
    --accent:        #4fc3f7;
    --accent-light:  #81d4fa;
    --accent-dark:   #0288d1;
    --accent-glow:   rgba(79,195,247,0.18);
    --accent-subtle: rgba(79,195,247,0.07);

    /* Texte */
    --t-primary:   #e8eaed;
    --t-secondary: #9aa0aa;
    --t-muted:     #5a6070;
    --t-white:     #ffffff;

    /* Bordures neutres — blanc, pas bleu */
    --b-default: rgba(255,255,255,0.07);
    --b-hover:   rgba(255,255,255,0.13);
    --b-active:  rgba(255,255,255,0.22);

    /* Callouts */
    --c-info-bg: rgba(79,195,247,0.06);
    --c-info-bd: rgba(79,195,247,0.22);
    --c-info-ic: #4fc3f7;

    --c-warn-bg: rgba(245,158,11,0.06);
    --c-warn-bd: rgba(245,158,11,0.22);
    --c-warn-ic: #fbbf24;

    --c-dang-bg: rgba(239,68,68,0.06);
    --c-dang-bd: rgba(239,68,68,0.22);
    --c-dang-ic: #f87171;

    --c-succ-bg: rgba(16,185,129,0.06);
    --c-succ-bd: rgba(16,185,129,0.22);
    --c-succ-ic: #34d399;

    /* Ombres */
    --sh-card:  0 2px 12px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
    --sh-hover: 0 8px 40px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.09);

    /* Rayons */
    --r-sm:   6px;
    --r-md:   10px;
    --r-lg:   14px;
    --r-xl:   18px;
    --r-pill: 9999px;
}


/* ================================================
   2. PROTECTION ANTI-DÉBORDEMENT GLOBALE
   ================================================ */
.lp-hero, .lp-main { overflow-x: clip; width: 100%; max-width: 100%; }

.lp-layout, .lp-content, .lp-sidebar, .lp-article,
.lp-footer-block, .art-hd, .art-body, .callout,
.info-grid, .lp-hero-inner { min-width: 0; max-width: 100%; }

.art-body, .callout-body, .info-cell, .lp-list li, .lp-fb-info {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}


/* ================================================
   3. READING PROGRESS BAR
   ================================================ */
.fp-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,.06);
    z-index: 9999;
    pointer-events: none;
}
.fp-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0288d1, #4fc3f7, #81d4fa, #4fc3f7);
    background-size: 200% 100%;
    animation: progressShimmer 3s linear infinite;
    transition: width .1s ease;
    box-shadow: 0 0 8px rgba(79,195,247,.5);
}
@keyframes progressShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* ================================================
   4. HERO SECTION — fond noir avec grain subtil
   ================================================ */
.lp-hero {
    position: relative;
    background: #111214;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 155px 0 95px;
    border-bottom: 1px solid var(--b-default);
}

/* Grain de fond très subtil */
.lp-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(79,195,247,0.04) 0%, transparent 45%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
}

/* Remplace les dots par un motif très discret */
.lp-hero-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 75%);
}

/* Orbs très atténués, non bleus */
.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 1;
    pointer-events: none;
    animation: orbFloat ease-in-out infinite alternate;
}
.lp-orb-1 {
    width: 600px; height: 600px;
    background: rgba(30,34,40,0.8);
    top: -180px; left: -120px;
    animation-duration: 12s;
}
.lp-orb-2 {
    width: 400px; height: 400px;
    background: rgba(79,195,247,0.03);
    bottom: -60px; right: 5%;
    animation-duration: 14s;
    animation-delay: 4s;
}
@keyframes orbFloat {
    0%   { transform: translate(0,0); }
    100% { transform: translate(16px,-20px); }
}

.lp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

/* Badge hero */
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-pill);
    padding: 9px 24px;
    margin-bottom: 30px;
    font-size: 0.72rem;
    color: var(--t-secondary);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    white-space: normal;
    word-break: break-word;
    animation: lp-fadeup .5s cubic-bezier(.22,1,.36,1) both .1s;
}
.lp-hero-badge i { font-size: 11px; opacity: .7; flex-shrink: 0; }

@keyframes lp-fadeup {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}

/* Titre principal */
.lp-hero-title {
    font-size: clamp(1.7rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.07;
    color: var(--t-white);
    margin-bottom: 20px;
    letter-spacing: -.03em;
    word-break: break-word;
    overflow-wrap: break-word;
    animation: lp-fadeup .5s cubic-bezier(.22,1,.36,1) both .22s;
}

/* Dégradé blanc → gris sur le titre accentué */
.lp-hero-title .gt {
    background: linear-gradient(135deg, #ffffff 0%, #c8cdd5 50%, #9aa0aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 1.05rem;
    color: var(--t-secondary);
    line-height: 1.8;
    margin-bottom: 38px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
    animation: lp-fadeup .5s cubic-bezier(.22,1,.36,1) both .34s;
}

/* Pills méta */
.lp-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    animation: lp-fadeup .5s cubic-bezier(.22,1,.36,1) both .44s;
}
.lp-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-pill);
    padding: 6px 14px;
    font-size: 12px;
    color: var(--t-muted);
    white-space: nowrap;
}
.lp-meta-pill i { color: var(--t-secondary); font-size: 10.5px; flex-shrink: 0; }
.lp-meta-sep { width: 3px; height: 3px; background: var(--t-muted); border-radius: 50%; flex-shrink: 0; opacity: .5; }

/* Fil d'Ariane */
.lp-hero-bc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    animation: lp-fadeup .5s cubic-bezier(.22,1,.36,1) both .52s;
}
.lp-hero-bc a {
    color: var(--t-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    white-space: nowrap;
}
.lp-hero-bc a:hover { color: var(--t-secondary); }
.lp-hero-bc .sep { color: var(--t-muted); font-size: 9px; opacity: .4; }
.lp-hero-bc .cur { color: var(--t-primary); font-weight: 600; white-space: nowrap; }

/* Dégradé sortant */
.lp-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent, #141618);
    z-index: 3;
    pointer-events: none;
}


/* ================================================
   5. MAIN LAYOUT
   ================================================ */
.lp-main {
    background: var(--bg-surface);
    padding: 60px 0 120px;
    position: relative;
}

/* Ligne de séparation légère */
.lp-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: .6;
}

/* Étendre le container Bootstrap en pleine largeur sur cette page */
.lp-main > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lp-layout {
    display: grid;
    grid-template-columns: 272px 1fr;
    gap: 0;
    align-items: start;
    width: 100%;
}

.lp-content {
    min-width: 0;
    padding: 0 40px 0 38px;
}


/* ================================================
   6. SIDEBAR
   ================================================ */
.lp-sidebar {
    position: sticky;
    top: 96px;
    z-index: 10;
    min-width: 0;
    align-self: start;
}

.lp-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--b-default);
    border-right: 1px solid var(--b-default);
    border-left: none;
    border-top: none;
    border-radius: 0 var(--r-xl) var(--r-xl) 0;
    box-shadow: var(--sh-card);
    overflow: hidden;
}

.sb-inner {
    padding: 22px 20px;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.12) transparent;
}
.sb-inner::-webkit-scrollbar { width: 4px; }
.sb-inner::-webkit-scrollbar-track { background: transparent; }
.sb-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }

.sb-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--b-default);
}
.sb-head-icon {
    width: 30px; height: 30px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--b-hover);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--t-secondary);
    font-size: 12px;
    flex-shrink: 0;
}
.sb-head h3 {
    font-size: 11px;
    font-weight: 700;
    color: var(--t-primary);
    letter-spacing: .9px;
    text-transform: uppercase;
    margin: 0;
}

.sb-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--t-muted);
    padding: 12px 8px 6px;
}

.sb-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 10px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: all .18s ease;
    margin-bottom: 1px;
    border-left: 2px solid transparent;
    min-width: 0;
}
.sb-item:hover { background: rgba(255,255,255,.04); border-left-color: rgba(255,255,255,.18); }
.sb-item.active { background: rgba(255,255,255,.06); border-left-color: var(--accent); }

.sb-num {
    flex-shrink: 0;
    width: 20px; height: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--b-default);
    border-radius: 5px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--t-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all .18s;
}
.sb-item:hover .sb-num,
.sb-item.active .sb-num {
    background: rgba(255,255,255,.06);
    border-color: var(--b-hover);
    color: var(--t-secondary);
}
.sb-item.active .sb-num { color: var(--accent-light); }

.sb-text {
    font-size: 12px;
    color: var(--t-muted);
    line-height: 1.35;
    transition: color .18s;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sb-item:hover .sb-text { color: var(--t-secondary); }
.sb-item.active .sb-text { color: var(--t-primary); }

.sb-sep { height: 1px; background: var(--b-default); margin: 12px 0; }

.sb-cta { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.sb-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: var(--r-md);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .18s;
    border: 1px solid var(--b-hover);
    background: rgba(255,255,255,.04);
    color: var(--t-secondary);
    word-break: break-all;
}
.sb-cta a:hover {
    background: rgba(255,255,255,.07);
    border-color: var(--b-active);
    color: var(--t-primary);
}


/* ================================================
   7. CONTENT AREA — SECTION HEADERS
   ================================================ */
.lp-section-flag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 24px;
    min-width: 0;
}
.lp-section-flag:not(:first-child) { margin-top: 56px; }

.flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: var(--r-pill);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    white-space: nowrap;
    flex-shrink: 0;
}
.flag-badge.cgu  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--t-secondary); }
.flag-badge.cgv  { background: rgba(16,185,129,.07);  border: 1px solid rgba(16,185,129,.22);  color: #3dd9a0; }
.flag-badge.spec { background: rgba(168,85,247,.07);  border: 1px solid rgba(168,85,247,.22);  color: #c084fc; }

.flag-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--b-hover), transparent); min-width: 0; }

.lp-section-title {
    font-size: clamp(0.95rem, 0.8vw + 0.82rem, 1.5rem);
    font-weight: 800;
    color: var(--t-white);
    margin: 0 0 28px;
    letter-spacing: -.022em;
    word-break: break-word;
}


/* ================================================
   8. ARTICLE CARDS — fond sombre neutre
   ================================================ */
.lp-article {
    background: var(--bg-card);
    border: 1px solid var(--b-default);
    border-radius: var(--r-xl);
    padding: 34px 40px 32px;
    margin-bottom: 16px;
    box-shadow: var(--sh-card);
    position: relative;
    overflow: hidden;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .48s ease, transform .48s ease, border-color .25s, box-shadow .25s;
}
.lp-article.revealed { opacity: 1; transform: translateY(0); }

.lp-article::before {
    content: '';
    position: absolute;
    top: 0; left: 12%; right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.lp-article:hover {
    border-color: var(--b-hover);
    box-shadow: var(--sh-hover);
}
.lp-article:hover::before { opacity: 1; }

/* Numéro filigrane */
.art-wm {
    position: absolute;
    right: 22px; top: 8px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255,255,255,.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
}

.art-hd {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--b-default);
    min-width: 0;
}

.art-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.05);
    border: 1px solid var(--b-hover);
    display: flex; align-items: center; justify-content: center;
    color: var(--t-secondary);
    font-size: 15px;
}

.art-meta { min-width: 0; flex: 1; }
.art-tag {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 5px;
}
.art-tag.cgu  { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);  color: var(--t-muted); }
.art-tag.cgv  { background: rgba(16,185,129,.07);  border: 1px solid rgba(16,185,129,.18); color: #3dd9a0; }
.art-tag.spec { background: rgba(168,85,247,.07);  border: 1px solid rgba(168,85,247,.18); color: #c084fc; }

.art-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--t-white);
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}


/* ================================================
   9. ARTICLE BODY
   ================================================ */
.art-body p {
    font-size: .9375rem;
    color: var(--t-secondary);
    line-height: 1.88;
    margin-bottom: 14px;
}
.art-body p:last-child { margin-bottom: 0; }
.art-body strong { color: var(--t-primary); font-weight: 600; }
.art-body a { color: var(--accent); text-decoration: none; transition: color .2s; word-break: break-all; }
.art-body a:hover { color: var(--accent-light); text-decoration: underline; }

.art-div {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--b-hover), transparent);
    margin: 22px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}
.info-cell {
    background: rgba(255,255,255,.025);
    border: 1px solid var(--b-default);
    border-radius: var(--r-md);
    padding: 13px 16px;
    min-width: 0;
    transition: border-color .18s;
}
.info-cell:hover { border-color: var(--b-hover); }
.info-cell-lbl {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--t-muted);
    margin-bottom: 4px;
}
.info-cell-val {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--t-primary);
    word-break: break-word;
}


/* ================================================
   10. LISTS
   ================================================ */
.lp-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9375rem;
    color: var(--t-secondary);
    line-height: 1.72;
    min-width: 0;
}
.lp-list li::before {
    content: '\f054';
    font-family: 'FontAwesome';
    font-size: 7.5px;
    color: var(--t-muted);
    margin-top: 7px;
    flex-shrink: 0;
}
.lp-list li strong { color: var(--t-primary); }


/* ================================================
   11. CALLOUT BOXES
   ================================================ */
.callout {
    border-radius: var(--r-md);
    padding: 15px 18px;
    margin: 20px 0;
    display: flex;
    gap: 13px;
    align-items: flex-start;
    min-width: 0;
}
.callout-ico { flex-shrink: 0; margin-top: 1px; }
.callout-ico i { font-size: 14px; }
.callout-body { min-width: 0; flex: 1; }
.callout-body strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; word-break: break-word; }
.callout-body p { font-size: 13px !important; line-height: 1.68 !important; margin: 0 !important; color: var(--t-secondary) !important; }

.callout.info    { background: var(--c-info-bg); border: 1px solid var(--c-info-bd); border-left: 3px solid var(--c-info-ic); }
.callout.warning { background: var(--c-warn-bg); border: 1px solid var(--c-warn-bd); border-left: 3px solid var(--c-warn-ic); }
.callout.danger  { background: var(--c-dang-bg); border: 1px solid var(--c-dang-bd); border-left: 3px solid var(--c-dang-ic); }
.callout.success { background: var(--c-succ-bg); border: 1px solid var(--c-succ-bd); border-left: 3px solid var(--c-succ-ic); }

.callout.info    .callout-ico i { color: var(--c-info-ic); }
.callout.warning .callout-ico i { color: var(--c-warn-ic); }
.callout.danger  .callout-ico i { color: var(--c-dang-ic); }
.callout.success .callout-ico i { color: var(--c-succ-ic); }

.callout.info    .callout-body strong { color: #7dd3ea; }
.callout.warning .callout-body strong { color: #fcd34d; }
.callout.danger  .callout-body strong { color: #fca5a5; }
.callout.success .callout-body strong { color: #6ee7b7; }


/* ================================================
   12. LEGAL FOOTER BLOCK
   ================================================ */
.lp-footer-block {
    background: var(--bg-card);
    border: 1px solid var(--b-default);
    border-radius: var(--r-xl);
    padding: 28px 40px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
}
.lp-fb-info { min-width: 0; flex: 1; }
.lp-fb-info h4 { font-size: .9375rem; font-weight: 700; color: var(--t-white); margin: 0 0 5px; }
.lp-fb-info p { font-size: 13px; color: var(--t-secondary); margin: 0; }
.lp-fb-contact { flex-shrink: 0; }
.lp-fb-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--b-hover);
    border-radius: var(--r-md);
    color: var(--t-primary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
}
.lp-fb-contact a:hover {
    background: rgba(255,255,255,.09);
    border-color: var(--b-active);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
}


/* ================================================
   13. MOBILE TABS
   ================================================ */
.lp-mob-tabs {
    display: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    flex-wrap: nowrap;
    gap: 7px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.lp-mob-tabs::-webkit-scrollbar { display: none; }
.mob-tab {
    flex-shrink: 0;
    padding: 7px 15px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--b-default);
    border-radius: var(--r-pill);
    font-size: 12px;
    color: var(--t-muted);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all .18s;
}
.mob-tab.active, .mob-tab:hover {
    background: rgba(255,255,255,.07);
    border-color: var(--b-hover);
    color: var(--t-primary);
}


/* ================================================
   14. BACK TO TOP
   ================================================ */
.lp-btt {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--bg-raised);
    border: 1px solid var(--b-hover);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--t-secondary); font-size: 14px;
    cursor: pointer; z-index: 200;
    opacity: 0; transform: translateY(12px);
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
.lp-btt.show { opacity: 1; transform: translateY(0); }
.lp-btt:hover {
    background: var(--bg-card-h);
    border-color: var(--b-active);
    color: var(--t-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.6);
}


/* ================================================
   15. RESPONSIVE — TABLETTE LARGE (≤1080px)
   ================================================ */
@media (max-width: 1080px) {
    .lp-layout { grid-template-columns: 230px 1fr; }
    .lp-article { padding: 26px 30px; }
    .lp-footer-block { padding: 24px 30px; }
    .lp-content { padding: 0 28px 0 26px; }
}


/* ================================================
   16. RESPONSIVE — TABLETTE PORTRAIT (≤900px)
   ================================================ */
@media (max-width: 900px) {
    .lp-hero { padding: 115px 0 58px; }
    .lp-layout { grid-template-columns: 1fr; }
    .lp-content { padding: 0 16px; }
    .lp-sidebar { display: none; }
    .lp-mob-tabs {
        display: flex;
        align-items: center;
        position: sticky;
        top: 70px;
        z-index: 50;
        background: rgba(17,18,20,.94);
        padding: 8px 0;
        margin-bottom: 24px;
        border-bottom: 1px solid var(--b-default);
    }
    .lp-article { padding: 22px 18px; }
    .lp-main { padding: 36px 0 80px; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .lp-footer-block { flex-direction: column; align-items: stretch; gap: 14px; padding: 20px 18px; }
    .lp-fb-contact { width: 100%; }
    .lp-fb-contact a { width: 100%; justify-content: center; white-space: normal; text-align: center; }
    .lp-meta-sep { display: none; }
    .lp-section-flag:not(:first-child) { margin-top: 44px; }
}

@media (max-width: 768px) {
    .lp-mob-tabs { top: 60px; }
}


/* ================================================
   17. RESPONSIVE — MOBILE (≤640px)
   ================================================ */
@media (max-width: 640px) {
    .lp-hero { padding: 90px 0 40px; }
    .lp-hero-title { font-size: clamp(1.5rem, 7.5vw, 2rem); letter-spacing: -.022em; }
    .lp-hero-sub { font-size: .875rem; margin-bottom: 22px; line-height: 1.68; }
    .lp-hero-badge { font-size: 0.68rem; padding: 7px 15px; letter-spacing: .1em; }
    .lp-hero-meta { gap: 5px; }
    .lp-meta-pill { font-size: 10.5px; padding: 5px 10px; }
    .lp-hero-bc { font-size: 12px; }
    .lp-article { padding: 17px 16px; border-radius: var(--r-lg); margin-bottom: 12px; }
    .art-wm { font-size: 2.8rem; right: 10px; top: 5px; }
    .art-hd { gap: 10px; margin-bottom: 14px; padding-bottom: 12px; }
    .art-icon { width: 36px; height: 36px; font-size: 13px; }
    .art-title { font-size: .9rem; }
    .art-tag { font-size: 9px; }
    .art-body p { font-size: .875rem; line-height: 1.75; margin-bottom: 11px; }
    .lp-list { gap: 6px; margin: 12px 0; }
    .lp-list li { font-size: .875rem; gap: 8px; }
    .info-grid { grid-template-columns: 1fr; gap: 7px; margin: 12px 0; }
    .info-cell { padding: 9px 12px; }
    .info-cell-lbl { font-size: 10px; }
    .info-cell-val { font-size: 12.5px; }
    .callout { padding: 11px 13px; gap: 9px; margin: 13px 0; }
    .callout-ico i { font-size: 13px; }
    .callout-body strong { font-size: 12.5px; }
    .callout-body p { font-size: 12.5px !important; line-height: 1.62 !important; }
    .lp-section-title { margin-bottom: 16px; }
    .lp-section-flag { margin-bottom: 14px; gap: 9px; }
    .lp-section-flag:not(:first-child) { margin-top: 34px; }
    .lp-main { padding: 28px 0 64px; }
    .lp-footer-block { padding: 15px 16px; border-radius: var(--r-lg); margin-top: 20px; }
    .lp-fb-info h4 { font-size: .875rem; }
    .lp-fb-info p { font-size: 12px; }
    .lp-fb-contact a { padding: 9px 16px; font-size: 13px; }
    .mob-tab { font-size: 11px; padding: 6px 12px; }
    .lp-btt { bottom: 14px; right: 14px; width: 40px; height: 40px; font-size: 12px; }
}


/* ================================================
   18. RESPONSIVE — PETIT MOBILE (≤480px)
   ================================================ */
@media (max-width: 480px) {
    .lp-hero { padding: 82px 0 32px; }
    .lp-hero-title { font-size: clamp(1.3rem, 8vw, 1.65rem); }
    .lp-hero-badge { font-size: 0.64rem; padding: 6px 12px; }
    .lp-hero-sub { font-size: .8125rem; }
    .lp-article { padding: 14px 13px; border-radius: var(--r-md); }
    .art-wm { display: none; }
    .art-hd { gap: 8px; margin-bottom: 12px; padding-bottom: 10px; }
    .art-icon { width: 32px; height: 32px; font-size: 12px; border-radius: 8px; }
    .art-title { font-size: .85rem; }
    .art-tag { font-size: 8.5px; padding: 2px 6px; }
    .art-body p { font-size: .8125rem; line-height: 1.7; }
    .lp-list li { font-size: .8125rem; }
    .info-cell { padding: 8px 10px; }
    .info-cell-lbl { font-size: 9.5px; }
    .info-cell-val { font-size: 12px; }
    .callout { padding: 10px 11px; gap: 8px; }
    .callout-ico i { font-size: 12px; }
    .callout-body strong { font-size: 12px; }
    .callout-body p { font-size: 12px !important; }
    .lp-section-title { margin-bottom: 13px; }
    .flag-badge { padding: 4px 10px; font-size: 9.5px; }
    .lp-main { padding: 22px 0 52px; }
    .lp-footer-block { padding: 12px 13px; }
    .lp-fb-info h4 { font-size: .8125rem; }
    .lp-fb-info p { font-size: 11.5px; }
    .lp-fb-contact a { font-size: 12.5px; padding: 8px 13px; }
    .mob-tab { font-size: 10.5px; padding: 5px 10px; }
    .lp-btt { bottom: 10px; right: 10px; width: 36px; height: 36px; border-radius: 9px; font-size: 11px; }
}


/* ================================================
   19. RESPONSIVE — TRÈS PETIT MOBILE (≤360px)
   ================================================ */
@media (max-width: 360px) {
    .lp-hero { padding: 76px 0 28px; }
    .lp-hero-title { font-size: 1.25rem; }
    .lp-hero-badge { font-size: 0.6rem; padding: 5px 10px; }
    .lp-article { padding: 12px 10px; }
    .art-icon { width: 28px; height: 28px; font-size: 11px; }
    .art-title { font-size: .8125rem; }
    .art-body p { font-size: .775rem; }
    .lp-list li { font-size: .775rem; }
    .callout { padding: 9px 10px; }
    .callout-body p, .callout-body strong { font-size: 11.5px !important; }
    .lp-footer-block { padding: 11px 12px; }
    .mob-tab { font-size: 10px; padding: 5px 9px; }
}
