/* ═══════════════════════════════════════
       VARIABLES
    ═══════════════════════════════════════ */
    :root {
      --ink:       #0F1C2E;
      --ink-2:     #1D3150;
      --sky:       #E6F5FA;
      --sky-2:     #C0E4F0;
      --blue:      #0087b5;
      --blue-2:    #006f96;
      --amber:     #F59E0B;
      --amber-2:   #D97706;
      --green:     #059669;
      --slate:     #4B6080;
      --line:      #DDE6F4;
      --bg:        #FAFBFD;
      --white:     #FFFFFF;
      --font-h:    'Bricolage Grotesque', sans-serif;
      --font-b:    'Instrument Sans', sans-serif;
      --r:         14px;
      --r-sm:      8px;
      --ease:      0.22s cubic-bezier(.4,0,.2,1);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-b); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ═══════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════ */
    .wrap { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
    .section { padding-block: 90px; }
    .section--bg  { background: var(--bg); }
    .section--white { background: var(--white); }
    .section--ink { background: var(--ink); color: var(--white); }
    .section--sky { background: var(--sky); }

    /* ═══════════════════════════════════════
       TYPO
    ═══════════════════════════════════════ */
    h1,h2,h3,h4 { font-family: var(--font-h); line-height: 1.15; }
    h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
    h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; }
    h3 { font-size: 1.15rem; font-weight: 700; }
    p  { color: var(--slate); line-height: 1.75; font-size: 0.97rem; }
    .section--ink p, .section--ink h2, .section--ink h3 { color: rgba(255,255,255,0.72); }
    .section--ink h2, .section--ink h3 { color: var(--white); }

    .eyebrow {
      display: inline-block; font-family: var(--font-h); font-weight: 600;
      font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue); margin-bottom: 0.9rem;
    }
    .section--ink .eyebrow { color: var(--amber); }

    /* ═══════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font-h); font-size: 0.88rem; font-weight: 600;
      padding: 0.7rem 1.5rem; border-radius: var(--r-sm);
      border: 2px solid transparent; cursor: pointer;
      transition: all var(--ease); white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn svg { width: 15px; height: 15px; flex-shrink: 0; }
    .btn--blue    { background: var(--blue);   color: #fff; }
    .btn--blue:hover { background: var(--blue-2); }
    .btn--outline { background: transparent; border-color: var(--blue); color: var(--blue); }
    .btn--outline:hover { background: var(--blue); color: #fff; }
    .btn--amber   { background: var(--amber);  color: var(--ink); font-weight: 700; }
    .btn--amber:hover { background: var(--amber-2); }
    .btn--ghost   { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #fff; }
    .btn--ghost:hover { background: rgba(255,255,255,0.2); }
    .btn--ink     { background: var(--ink); color: #fff; }
    .btn--ink:hover { background: var(--ink-2); }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(15,28,46,0.97); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 1.5rem; padding-block: 0.85rem;
    }
    .nav__logo { display:flex; align-items:center; flex-shrink:0; }

    /* LIENS + DROPDOWNS */
    .nav__links { display: flex; align-items: center; gap: 0; }
    .nav__item { position: relative; }
    .nav__item > a, .nav__item > span {
      display: flex; align-items: center; gap: 4px;
      font-family: var(--font-h); font-size: 0.82rem; font-weight: 500;
      color: rgba(255,255,255,0.7); transition: color var(--ease);
      padding: 0.55rem 0.8rem; cursor: pointer; white-space: nowrap;
    }
    .nav__item > a:hover, .nav__item > span:hover,
    .nav__item:hover > a, .nav__item:hover > span { color: #fff; }
    .nav__item > span::after {
      content: ''; display: inline-block; width: 0; height: 0;
      border-left: 4px solid transparent; border-right: 4px solid transparent;
      border-top: 4px solid rgba(255,255,255,0.5); margin-left: 2px; margin-top: 1px;
      transition: transform var(--ease);
    }
    .nav__item:hover > span::after { transform: rotate(180deg); }

    /* DROPDOWN */
    .nav__drop {
      display: none; position: absolute; top: 100%; left: 0;
      background: #0d1a2e; border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0 0 var(--r-sm) var(--r-sm); min-width: 200px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.4);
      padding: 0.5rem 0;
      margin-top: 0;
    }
    .nav__drop.drop-open { display: block; }
    /* Pont invisible — 12px sous chaque item pour atteindre le dropdown sans gap */
    .nav__item { padding-bottom: 12px; margin-bottom: -12px; }
    .nav__item > span { cursor: pointer; }
    .nav__drop a {
      display: block; font-family: var(--font-h); font-size: 0.8rem; font-weight: 500;
      color: rgba(255,255,255,0.65); padding: 0.45rem 1rem;
      transition: color var(--ease), background var(--ease); white-space: nowrap;
    }
    .nav__drop a:hover { color: #fff; background: rgba(255,255,255,0.06); }
    .nav__drop hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0.3rem 0; }

    .nav__cta { display: flex; gap: 0.6rem; align-items: center; flex-shrink: 0; }
    .nav__burger { display:none; background:none; border:none; cursor:pointer; padding:4px; }
    .nav__burger span { display:block; width:22px; height:2px; background:#fff; margin:5px 0; border-radius:2px; }

    @media (max-width: 1100px) {
      .nav__item > a, .nav__item > span { padding: 0.55rem 0.55rem; font-size: 0.78rem; }
    }
    @media (max-width: 900px) {
      .nav__links, .nav__cta { display: none; }
      .nav__burger { display: block; }
      .nav.open .nav__links {
        display: flex; flex-direction: column; align-items: flex-start;
        position: absolute; top:100%; left:0; right:0;
        background: var(--ink); padding: 1rem 1.25rem 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        gap: 0;
      }
      .nav.open .nav__drop { display: block; position: static; border: none; box-shadow: none; background: transparent; padding: 0 0 0 1rem; }
      .nav.open .nav__cta {
        display: flex; flex-direction: column; align-items: flex-start;
        position: absolute; top: auto; left:0; right:0;
        background: var(--ink); padding: 0 1.25rem 1.5rem; gap:0.5rem;
      }
    }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      background: var(--ink); color: #fff;
      padding-block: 100px 80px; position: relative; overflow: hidden;
    }
    .hero__halo {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 65% at 75% -10%, rgba(0,135,181,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 110% 80%, rgba(245,158,11,0.08) 0%, transparent 60%);
    }
    .hero__inner { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: center; }
    .hero__pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.35);
      border-radius: 100px; color: var(--amber);
      font-size: 0.8rem; font-weight: 500; padding: 0.3rem 0.9rem; margin-bottom: 1.4rem;
    }
    .hero h1 { margin-bottom: 1.2rem; }
    .hero h1 em { font-style: normal; color: var(--amber); }
    .hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 490px; margin-bottom: 2.25rem; line-height: 1.8; }
    .hero__btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

    /* Produit cards dans le hero */
    .hero__products { display: flex; flex-direction: column; gap: 1rem; }
    .hprod {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r); padding: 1.5rem 1.75rem;
      transition: background var(--ease), border-color var(--ease);
    }
    .hprod:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
    .hprod__head { display: flex; align-items: center; gap: 12px; margin-bottom: 0.5rem; }
    .hprod__icon {
      width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hprod__icon--blue  { background: rgba(0,135,181,0.25); }
    .hprod__icon--amber { background: rgba(245,158,11,0.2); }
    .hprod__icon svg { width: 18px; height: 18px; }
    .hprod__icon--blue svg  { color: #5BC8E8; }
    .hprod__icon--amber svg { color: var(--amber); }
    .hprod__name { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: #fff; }
    .hprod__badge {
      margin-left: auto; font-size: 0.72rem; font-weight: 600; font-family: var(--font-h);
      border-radius: 100px; padding: 0.2rem 0.6rem; letter-spacing: 0.05em;
    }
    .hprod__badge--blue  { background: rgba(0,135,181,0.3); color: #5BC8E8; }
    .hprod__badge--amber { background: rgba(245,158,11,0.2); color: var(--amber); }
    .hprod p { font-size: 0.86rem; color: rgba(255,255,255,0.55); }
    .hprod__sectors { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.75rem; }
    .hprod__sector {
      font-size: 0.72rem; font-family: var(--font-h); font-weight: 600;
      border: 1px solid rgba(255,255,255,0.12); border-radius: 100px;
      padding: 0.15rem 0.55rem; color: rgba(255,255,255,0.5);
    }

    @media (max-width: 920px) {
      .hero__inner { grid-template-columns: 1fr; }
      .hero__products { display: none; }
    }

    /* ═══════════════════════════════════════
       PRODUIT SECTION — HOSPITALITY.NET
    ═══════════════════════════════════════ */
    .prod-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .prod-block--reverse { direction: rtl; }
    .prod-block--reverse > * { direction: ltr; }
    @media (max-width: 820px) {
      .prod-block, .prod-block--reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
    }
    .prod-block__text h2 { margin-bottom: 0.75rem; }
    .prod-block__text p  { margin-bottom: 1.5rem; }
    .feat-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .feat-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; color: var(--slate);
    }
    .feat-item svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
    .section--ink .feat-item { color: rgba(255,255,255,0.65); }
    .section--ink .feat-item svg { color: var(--amber); }

    /* Mockup visuel produit */
    .prod-visual {
      border-radius: var(--r); overflow: hidden;
      border: 1px solid var(--line); background: var(--white);
      box-shadow: 0 20px 60px rgba(15,28,46,0.1);
    }
    .prod-visual--dark { background: var(--ink-2); border-color: rgba(255,255,255,0.1); }
    .prod-visual__bar {
      background: var(--sky-2); padding: 0.7rem 1rem;
      display: flex; align-items: center; gap: 8px;
      border-bottom: 1px solid var(--line);
    }
    .prod-visual--dark .prod-visual__bar { background: rgba(255,255,255,0.05); border-bottom-color: rgba(255,255,255,0.1); }
    .prod-visual__dot { width: 10px; height: 10px; border-radius: 50%; }
    .prod-visual__title {
      font-family: var(--font-h); font-size: 0.78rem; font-weight: 600;
      color: var(--slate); margin-left: 4px;
    }
    .prod-visual--dark .prod-visual__title { color: rgba(255,255,255,0.5); }
    .prod-visual__body { padding: 1.5rem; }

    /* Mini UI — Hospitality */
    .hosp-rooms { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 1rem; }
    .room-cell {
      border-radius: 8px; padding: 0.7rem 0.6rem; text-align: center;
      font-family: var(--font-h); font-size: 0.7rem; font-weight: 600;
    }
    .room-cell strong { display: block; font-size: 1.1rem; margin-bottom: 2px; }
    .room-cell--ok    { background: #DCFCE7; color: #166534; }
    .room-cell--occ   { background: #C0E8F4; color: #005e80; }
    .room-cell--warn  { background: #FEF3C7; color: #92400E; }
    .hosp-event {
      display: flex; align-items: center; gap: 10px;
      padding: 0.65rem 0.75rem; border-radius: 8px;
      background: var(--sky); margin-bottom: 8px; font-size: 0.8rem;
    }
    .hosp-event svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
    .hosp-event span { color: var(--slate); }
    .hosp-event strong { color: var(--ink); font-weight: 600; }

    /* Mini UI — TDB */
    .tdb-kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 1rem; }
    .tdb-kpi {
      border-radius: 8px; padding: 0.9rem; background: rgba(0,135,181,0.06);
      border: 1px solid rgba(0,135,181,0.12);
    }
    .tdb-kpi__label { font-size: 0.7rem; color: var(--slate); font-family: var(--font-h); font-weight: 500; margin-bottom: 4px; }
    .tdb-kpi__val { font-family: var(--font-h); font-size: 1.35rem; font-weight: 800; color: var(--blue); }
    .tdb-kpi__delta { font-size: 0.72rem; color: var(--green); font-weight: 600; }
    .tdb-bar-list { display: flex; flex-direction: column; gap: 8px; }
    .tdb-bar { display: flex; align-items: center; gap: 10px; }
    .tdb-bar__label { font-size: 0.72rem; color: var(--slate); width: 70px; flex-shrink: 0; }
    .tdb-bar__track { flex: 1; height: 8px; border-radius: 100px; background: var(--sky-2); overflow: hidden; }
    .tdb-bar__fill  { height: 100%; border-radius: 100px; background: var(--blue); }
    .tdb-bar__val   { font-size: 0.72rem; font-weight: 600; color: var(--ink); width: 42px; text-align: right; flex-shrink: 0; }

    /* ═══════════════════════════════════════
       SECTEURS
    ═══════════════════════════════════════ */
    .secteurs__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
    @media (max-width: 720px) { .secteurs__grid { grid-template-columns: 1fr; } }
    .secteur {
      border: 1px solid var(--line); border-radius: var(--r);
      padding: 2rem; background: var(--white);
      transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
    }
    .secteur:hover { box-shadow: 0 8px 30px rgba(15,28,46,0.09); border-color: var(--blue); transform: translateY(-3px); }
    .secteur__icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--sky); display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin-bottom: 1.25rem;
    }
    .secteur h3 { margin-bottom: 0.5rem; }
    .secteur p  { font-size: 0.88rem; }
    .secteur__tag {
      display: inline-block; margin-top: 1rem;
      font-size: 0.72rem; font-family: var(--font-h); font-weight: 600;
      color: var(--blue); background: var(--sky-2); border-radius: 100px;
      padding: 0.2rem 0.65rem;
    }

    /* ═══════════════════════════════════════
       PARTENAIRES
    ═══════════════════════════════════════ */
    .partners__row {
      display: flex; align-items: center; justify-content: center;
      gap: 3rem; flex-wrap: wrap; margin-top: 2.5rem;
    }
    .partner-logo {
      font-family: var(--font-h); font-size: 1rem; font-weight: 700;
      color: var(--slate); opacity: 0.55; letter-spacing: 0.04em;
    }

    /* ═══════════════════════════════════════
       SUPPORT
    ═══════════════════════════════════════ */
    .support__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    @media (max-width: 680px) { .support__grid { grid-template-columns: 1fr; } }
    .scard {
      border-radius: var(--r); padding: 2rem 2.25rem;
      display: flex; flex-direction: column; gap: 1.25rem;
    }
    .scard--dark { background: var(--ink); }
    .scard--sky  { background: var(--sky); border: 1px solid var(--sky-2); }
    .scard__head { display: flex; align-items: center; gap: 12px; }
    .scard__icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .scard--dark .scard__icon { background: rgba(255,255,255,0.08); }
    .scard--sky  .scard__icon { background: var(--sky-2); }
    .scard__icon svg { width: 20px; height: 20px; }
    .scard--dark .scard__icon svg { color: var(--amber); }
    .scard--sky  .scard__icon svg { color: var(--blue); }
    .scard h3 { font-size: 1.05rem; }
    .scard--dark h3 { color: #fff; }
    .scard--sky  h3 { color: var(--ink); }
    .scard--dark p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
    .scard--sky  p { color: var(--slate); font-size: 0.88rem; }
    .scard__links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
    .scard__link {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 0.88rem; font-weight: 600; font-family: var(--font-h);
      transition: gap var(--ease);
    }
    .scard--dark .scard__link { color: var(--amber); }
    .scard--sky  .scard__link { color: var(--blue); }
    .scard__link:hover { gap: 11px; }
    .scard__link svg { width: 13px; height: 13px; flex-shrink: 0; }

    /* ═══════════════════════════════════════
       NEWS
    ═══════════════════════════════════════ */
    .news__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
    .ncard { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--white); transition: box-shadow var(--ease), transform var(--ease); }
    .ncard:hover { box-shadow: 0 6px 24px rgba(15,28,46,0.08); transform: translateY(-3px); }
    .ncard__img {
      height: 220px; display: flex; align-items: center; justify-content: center; font-size: 3rem;
    }
    .ncard__img--blue  { background: linear-gradient(135deg, #003e5c, #0087b5); }
    .ncard__img--amber { background: linear-gradient(135deg, #78350F, #D97706); }
    .ncard__img--green { background: linear-gradient(135deg, #064E3B, #059669); }
    .ncard__body { padding: 1.4rem; }
    .ncard__cat { font-size: 0.72rem; font-weight: 700; font-family: var(--font-h); letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
    .ncard h3 { font-size: 0.95rem; color: var(--ink); line-height: 1.4; margin-bottom: 0.4rem; }
    .ncard p  { font-size: 0.84rem; }
    .ncard__date { font-size: 0.76rem; color: var(--slate); margin-top: 0.75rem; }

    /* ═══════════════════════════════════════
       CTA FINAL
    ═══════════════════════════════════════ */
    .cta-block { text-align: center; padding-block: 90px; }
    .cta-block h2 { margin-bottom: 0.75rem; }
    .cta-block p  { max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }
    .cta-block__btns { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    .footer { background: var(--ink); color: rgba(255,255,255,0.6); padding-block: 60px 32px; }
    .footer__grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    @media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
    .footer__logo { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
    .footer__logo em { font-style: normal; color: var(--amber); }
    .footer__desc { font-size: 0.86rem; line-height: 1.7; }
    .footer__col h4 { font-family: var(--font-h); font-size: 0.86rem; font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: 0.04em; }
    .footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer__col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--ease); }
    .footer__col a:hover { color: var(--amber); }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
    .footer__bottom p { font-size: 0.8rem; }
    .footer__bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-left: 1.25rem; }
    .footer__bottom a:hover { color: var(--amber); }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
    .anim { opacity: 0; }
    .anim.in { animation: fadeUp 0.55s ease forwards; }
    .d1 { animation-delay: 0.08s; }
    .d2 { animation-delay: 0.16s; }
    .d3 { animation-delay: 0.24s; }

    /* ═══════════════════════════════════════
       SOCIÉTÉ — #societe
    ═══════════════════════════════════════ */
    .societe__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: start; margin-bottom: 5rem;
    }
    @media (max-width: 820px) { .societe__grid { grid-template-columns: 1fr; gap: 2.5rem; } }

    .societe__text h2 { margin-bottom: 0.75rem; }
    .societe__text p  { margin-bottom: 1.1rem; }

    .societe__values { display: flex; flex-direction: column; gap: 1rem; }
    .svalue {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 1.25rem 1.5rem;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--r);
      transition: border-color var(--ease), box-shadow var(--ease);
    }
    .svalue:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,135,181,0.08); }
    .svalue__icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: var(--sky); display: flex; align-items: center; justify-content: center;
    }
    .svalue__icon svg { width: 18px; height: 18px; color: var(--blue); }
    .svalue h4 { font-family: var(--font-h); font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
    .svalue p  { font-size: 0.84rem; margin-bottom: 0; }

    /* FRISE CHRONOLOGIQUE */
    .timeline { position: relative; padding-left: 28px; }
    .timeline::before {
      content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px;
      width: 2px; background: var(--line); border-radius: 2px;
    }
    .tl-item { position: relative; margin-bottom: 2rem; }
    .tl-item:last-child { margin-bottom: 0; }
    .tl-dot {
      position: absolute; left: -24px; top: 4px;
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--white); border: 2px solid var(--line);
      transition: border-color var(--ease), background var(--ease);
    }
    .tl-item:hover .tl-dot { border-color: var(--blue); background: var(--blue); }
    .tl-item--key .tl-dot { border-color: var(--blue); background: var(--blue); }
    .tl-year {
      font-family: var(--font-h); font-size: 0.72rem; font-weight: 700;
      color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 0.2rem;
    }
    .tl-item--key .tl-year { color: var(--blue); }
    .tl-title { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.15rem; }
    .tl-desc  { font-size: 0.84rem; color: var(--slate); line-height: 1.6; }

    /* BLOC IMPLANTATION */
    .societe__implant {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 1.25rem; margin-top: 0;
    }
    @media (max-width: 720px) { .societe__implant { grid-template-columns: 1fr; } }
    .implant-card {
      border-radius: var(--r); padding: 1.75rem;
      display: flex; flex-direction: column; gap: 0.75rem;
    }
    .implant-card--blue   { background: var(--sky); border: 1px solid var(--sky-2); }
    .implant-card--ink    { background: var(--ink); }
    .implant-card--white  { background: var(--white); border: 1px solid var(--line); }
    .implant-card__picto  { font-size: 1.8rem; line-height: 1; }
    .implant-card h4      { font-family: var(--font-h); font-size: 0.95rem; font-weight: 700; }
    .implant-card--blue h4, .implant-card--white h4 { color: var(--ink); }
    .implant-card--ink h4  { color: #fff; }
    .implant-card p        { font-size: 0.84rem; margin-bottom: 0; }
    .implant-card--blue p, .implant-card--white p  { color: var(--slate); }
    .implant-card--ink p   { color: rgba(255,255,255,0.6); }


    /* ── ÉQUIPE ── */
    .team__grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.25rem; margin-top:3rem; }
    .team-card { border:1px solid var(--line); border-radius:var(--r); overflow:hidden; background:var(--white); transition:box-shadow var(--ease),transform var(--ease); }
    .team-card:hover { box-shadow:0 8px 28px rgba(15,28,46,.1); transform:translateY(-4px); }
    .team-card__avatar { overflow:hidden; background:var(--sky); } .team-card__avatar img { width:100%; height:auto; display:block; }
    .team-card__avatar svg { width:52px; height:52px; color:var(--blue); opacity:.5; }
    .team-card__body { padding:1.25rem; }
    .team-card__name { font-family:var(--font-h); font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:.15rem; }
    .team-card__role { font-size:.78rem; font-weight:600; color:var(--blue); font-family:var(--font-h); letter-spacing:.06em; text-transform:uppercase; margin-bottom:.6rem; }
    .team-card__bio { font-size:.84rem; color:var(--slate); line-height:1.65; }

    /* ── PARTENAIRES ── */
    .partner-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.25rem; margin-bottom:3.5rem; }
    .pcard { border:1px solid var(--line); border-radius:var(--r); padding:1.75rem; background:var(--white); transition:box-shadow var(--ease),border-color var(--ease),transform var(--ease); }
    .pcard:hover { box-shadow:0 6px 24px rgba(15,28,46,.08); border-color:var(--blue); transform:translateY(-3px); }
    .pcard__logo { height:56px; background:var(--sky); border-radius:var(--r-sm); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
    .pcard__logo span { font-family:var(--font-h); font-size:.9rem; font-weight:800; color:var(--slate); letter-spacing:.04em; }
    .pcard h3 { font-size:.95rem; margin-bottom:.25rem; }
    .pcard__meta { display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.75rem; }
    .pcard__zone { font-size:.72rem; font-weight:600; font-family:var(--font-h); color:var(--blue); background:var(--sky); border-radius:100px; padding:.2rem .6rem; }
    .pcard__spec { font-size:.72rem; font-weight:500; color:var(--slate); border:1px solid var(--line); border-radius:100px; padding:.2rem .6rem; }
    .partner-cta { background:var(--ink); border-radius:var(--r); padding:2.5rem; display:grid; grid-template-columns:1fr auto; gap:2rem; align-items:center; }
    @media(max-width:640px){ .partner-cta{ grid-template-columns:1fr; } }
    .partner-cta h3 { color:#fff; font-size:1.2rem; margin-bottom:.4rem; }
    .partner-cta p { color:rgba(255,255,255,.6); font-size:.9rem; margin-bottom:1.25rem; }
    .partner-form { display:flex; flex-direction:column; gap:.6rem; min-width:260px; }
    .partner-form input { font-family:var(--font-b); font-size:.85rem; padding:.6rem .9rem; border-radius:var(--r-sm); border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.08); color:#fff; }
    .partner-form input::placeholder { color:rgba(255,255,255,.4); }
    .partner-form input:focus { outline:none; border-color:var(--amber); }

    /* ── DOCUMENTATION ── */
    .doc-tabs { display:flex; gap:.5rem; margin-bottom:2rem; border-bottom:2px solid var(--line); padding-bottom:0; }
    .doc-tab { font-family:var(--font-h); font-size:.85rem; font-weight:600; padding:.6rem 1.2rem; border-radius:var(--r-sm) var(--r-sm) 0 0; cursor:pointer; border:none; background:transparent; color:var(--slate); transition:color var(--ease),background var(--ease); }
    .doc-tab.active, .doc-tab:hover { color:var(--blue); background:var(--sky); }
    .doc-tab.active { border-bottom:2px solid var(--blue); margin-bottom:-2px; }
    .doc-panel { display:none; }
    .doc-panel.active { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:1rem; }
    .doc-card { border:1px solid var(--line); border-radius:var(--r); padding:1.4rem; background:var(--white); display:flex; flex-direction:column; gap:.75rem; transition:box-shadow var(--ease),border-color var(--ease); }
    .doc-card:hover { border-color:var(--blue); box-shadow:0 4px 16px rgba(0,135,181,.08); }
    .doc-card__type { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .doc-card__type--pdf { background:#FEE2E2; }
    .doc-card__type--pdf svg { color:#EF4444; width:20px; height:20px; }
    .doc-card__type--zip { background:#FEF3C7; }
    .doc-card__type--zip svg { color:var(--amber); width:20px; height:20px; }
    .doc-card__type--doc { background:var(--sky); }
    .doc-card__type--doc svg { color:var(--blue); width:20px; height:20px; }
    .doc-card h4 { font-size:.88rem; color:var(--ink); line-height:1.35; }
    .doc-card__size { font-size:.75rem; color:var(--slate); }
    .doc-card .btn { margin-top:auto; font-size:.78rem; padding:.45rem .9rem; }

    /* ── HOSPITALITY FULL ── */
    .hosp-modules { display:grid; grid-template-columns:repeat(2,1fr); gap:1.25rem; margin-bottom:3rem; }
    @media(max-width:720px){ .hosp-modules{ grid-template-columns:1fr; } }
    .hmod { border:1px solid var(--line); border-radius:var(--r); padding:1.5rem; background:var(--white); }
    .hmod__head { display:flex; align-items:center; gap:10px; margin-bottom:.9rem; }
    .hmod__icon { width:36px; height:36px; border-radius:9px; background:var(--sky); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .hmod__icon svg { width:17px; height:17px; color:var(--blue); }
    .hmod h3 { font-size:.92rem; color:var(--ink); }
    .hmod ul { display:flex; flex-direction:column; gap:.35rem; }
    .hmod li { font-size:.82rem; color:var(--slate); display:flex; align-items:flex-start; gap:7px; }
    .hmod li::before { content:'›'; color:var(--blue); font-weight:700; flex-shrink:0; margin-top:1px; }
    .compare-table { width:100%; border-collapse:collapse; border-radius:var(--r); overflow:hidden; font-size:.88rem; }
    .compare-table th { background:var(--ink); color:#fff; font-family:var(--font-h); font-size:.8rem; font-weight:600; padding:.85rem 1rem; text-align:left; }
    .compare-table th:first-child { background:var(--ink); }
    .compare-table td { padding:.75rem 1rem; border-bottom:1px solid var(--line); color:var(--slate); }
    .compare-table tr:last-child td { border-bottom:none; }
    .compare-table tr:nth-child(even) td { background:var(--bg); }
    .compare-table td:first-child { font-weight:600; color:var(--ink); }
    .check { color:#059669; font-size:1rem; }
    .cross { color:#EF4444; font-size:1rem; }
    .faq { display:flex; flex-direction:column; gap:.6rem; }
    .faq-item { border:1px solid var(--line); border-radius:var(--r-sm); overflow:hidden; }
    .faq-q { font-family:var(--font-h); font-size:.9rem; font-weight:600; padding:1rem 1.25rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; background:var(--white); color:var(--ink); transition:background var(--ease); }
    .faq-q:hover { background:var(--sky); }
    .faq-q svg { width:16px; height:16px; color:var(--slate); transition:transform var(--ease); flex-shrink:0; }
    .faq-item.open .faq-q svg { transform:rotate(180deg); }
    .faq-a { display:none; padding:0 1.25rem 1rem; font-size:.86rem; color:var(--slate); line-height:1.7; background:var(--white); }
    .faq-item.open .faq-a { display:block; }

    /* ── TDB FULL ── */
    .tdb-steps { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-bottom:3rem; position:relative; }
    @media(max-width:720px){ .tdb-steps{ grid-template-columns:1fr; } }
    .tdb-step { background:var(--white); border:1px solid var(--line); border-radius:var(--r); padding:1.75rem; text-align:center; position:relative; }
    .tdb-step__num { width:40px; height:40px; border-radius:50%; background:var(--blue); color:#fff; font-family:var(--font-h); font-size:1rem; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
    .tdb-step h3 { margin-bottom:.5rem; }
    .tdb-step p { font-size:.86rem; }
    .tdb-cases { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.25rem; margin-bottom:3rem; }
    .case-card { border-radius:var(--r); padding:1.75rem; }
    .case-card--blue { background:var(--ink); }
    .case-card--sky  { background:var(--sky); border:1px solid var(--sky-2); }
    .case-card__sector { font-family:var(--font-h); font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:.5rem; }
    .case-card--blue .case-card__sector { color:var(--amber); }
    .case-card--sky  .case-card__sector { color:var(--blue); }
    .case-card h3 { font-size:1rem; margin-bottom:.5rem; }
    .case-card--blue h3 { color:#fff; }
    .case-card--sky  h3 { color:var(--ink); }
    .case-card p { font-size:.84rem; }
    .case-card--sky  p { color:var(--slate); }
    .testimonial { background:var(--ink); border-radius:var(--r); padding:2.5rem; display:grid; grid-template-columns:auto 1fr; gap:2rem; align-items:center; }
    @media(max-width:640px){ .testimonial{ grid-template-columns:1fr; } }
    .testimonial__avatar { width:72px; height:72px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
    .testimonial__avatar svg { width:34px; height:34px; color:rgba(255,255,255,.4); }
    .testimonial blockquote { font-size:1.05rem; font-style:italic; color:rgba(255,255,255,.85); line-height:1.7; margin-bottom:.75rem; }
    .testimonial__name { font-family:var(--font-h); font-size:.82rem; font-weight:700; color:var(--amber); }
    .testimonial__org  { font-size:.78rem; color:rgba(255,255,255,.5); }

    /* ── ACTUALITÉS ENRICHIES ── */
    .news-filters { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2rem; }
    .nfilter { font-family:var(--font-h); font-size:.78rem; font-weight:600; padding:.4rem 1rem; border-radius:100px; border:1.5px solid var(--line); background:var(--white); color:var(--slate); cursor:pointer; transition:all var(--ease); }
    .nfilter.active, .nfilter:hover { background:var(--blue); border-color:var(--blue); color:#fff; }
    .news-featured { display:grid; grid-template-columns:1.6fr 1fr; gap:1.25rem; margin-bottom:1.25rem; }
    @media(max-width:800px){ .news-featured{ grid-template-columns:1fr; } }
    .ncard--big .ncard__img { height:300px; }
    .ncard--big h3 { font-size:1.15rem; }
    .newsletter-box { background:var(--ink); border-radius:var(--r); padding:2.5rem; display:grid; grid-template-columns:1fr auto; gap:2rem; align-items:center; margin-top:2.5rem; }
    @media(max-width:640px){ .newsletter-box{ grid-template-columns:1fr; } }
    .newsletter-box h3 { color:#fff; margin-bottom:.35rem; }
    .newsletter-box p { color:rgba(255,255,255,.6); font-size:.88rem; }
    .newsletter-form { display:flex; gap:.6rem; }
    .newsletter-form input { flex:1; font-family:var(--font-b); font-size:.88rem; padding:.65rem 1rem; border-radius:var(--r-sm); border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.08); color:#fff; min-width:0; }
    .newsletter-form input::placeholder { color:rgba(255,255,255,.4); }
    .newsletter-form input:focus { outline:none; border-color:var(--amber); }

    /* ── CONTACT FORMS ── */
    .contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
    @media(max-width:800px){ .contact-grid{ grid-template-columns:1fr; } }
    .cform { background:var(--white); border:1px solid var(--line); border-radius:var(--r); padding:2rem; }
    .cform--dark { background:var(--ink); border:none; }
    .cform h3 { font-size:1.1rem; margin-bottom:.4rem; }
    .cform--dark h3 { color:#fff; }
    .cform p  { font-size:.86rem; margin-bottom:1.5rem; }
    .cform--dark p { color:rgba(255,255,255,.6); }
    .form-row { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; }
    @media(max-width:500px){ .form-row{ grid-template-columns:1fr; } }
    .form-field { display:flex; flex-direction:column; gap:.35rem; margin-bottom:.75rem; }
    .form-field label { font-family:var(--font-h); font-size:.75rem; font-weight:600; color:var(--slate); letter-spacing:.05em; }
    .cform--dark .form-field label { color:rgba(255,255,255,.5); }
    .form-field input, .form-field select, .form-field textarea {
      font-family:var(--font-b); font-size:.88rem; padding:.65rem .9rem;
      border-radius:var(--r-sm); border:1.5px solid var(--line);
      background:var(--bg); color:var(--ink); transition:border-color var(--ease);
    }
    .cform--dark .form-field input, .cform--dark .form-field select, .cform--dark .form-field textarea {
      background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.15); color:#fff;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline:none; border-color:var(--blue); }
    .cform--dark .form-field input:focus, .cform--dark .form-field select:focus { border-color:var(--amber); }
    .form-field textarea { resize:vertical; min-height:90px; }
    .form-field select option { color:var(--ink); background:#fff; }
    .form-success { display:none; text-align:center; padding:2rem; }
    .form-success svg { width:40px; height:40px; color:#059669; margin-bottom:.75rem; }
    .form-success p { color:var(--slate); font-size:.9rem; }
    .cform--dark .form-success p { color:rgba(255,255,255,.7); }
    .urgence-row { display:flex; gap:.5rem; flex-wrap:wrap; }
    .urgence-btn { font-family:var(--font-h); font-size:.75rem; font-weight:600; padding:.35rem .8rem; border-radius:100px; border:1.5px solid var(--line); background:transparent; cursor:pointer !important; transition:all var(--ease); color:var(--slate); pointer-events:all !important; position:relative; z-index:1; }
    .urgence-btn.sel-low  { background:#DCFCE7; border-color:#059669; color:#059669; }
    .urgence-btn.sel-med  { background:#FEF3C7; border-color:var(--amber); color:var(--amber-2); }
    .urgence-btn.sel-high { background:#FEE2E2; border-color:#EF4444; color:#EF4444; }

    /* ── LÉGAL ── */
    .legal-tabs { display:flex; gap:.5rem; margin-bottom:2.5rem; flex-wrap:wrap; }
    .ltab { font-family:var(--font-h); font-size:.82rem; font-weight:600; padding:.55rem 1.2rem; border-radius:var(--r-sm); border:1.5px solid var(--line); background:var(--white); color:var(--slate); cursor:pointer; transition:all var(--ease); }
    .ltab.active { background:var(--ink); border-color:var(--ink); color:#fff; }
    .legal-panel { display:none; max-width:820px; }
    .legal-panel.active { display:block; }
    .legal-panel h3 { font-family:var(--font-h); font-size:1rem; font-weight:700; color:var(--ink); margin:2rem 0 .5rem; }
    .legal-panel h3:first-child { margin-top:0; }
    .legal-panel p  { font-size:.87rem; color:var(--slate); margin-bottom:.75rem; line-height:1.75; }
    .legal-panel ol { padding-left:1.25rem; display:flex; flex-direction:column; gap:.4rem; margin-bottom:.75rem; }
    .legal-panel ol li { font-size:.87rem; color:var(--slate); line-height:1.7; }

    /* ── BACK TO TOP & COOKIE ── */
    #btt { position:fixed; bottom:1.5rem; right:1.5rem; z-index:200; width:42px; height:42px; border-radius:50%; background:var(--ink); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity var(--ease),transform var(--ease); box-shadow:0 4px 16px rgba(0,0,0,.25); }
    #btt.show { opacity:1; pointer-events:all; }
    #btt:hover { transform:translateY(-3px); background:var(--blue); }
    #btt svg { width:18px; height:18px; color:#fff; }
    #cookie-banner { position:fixed; bottom:0; left:0; right:0; z-index:300; background:var(--ink); border-top:1px solid rgba(255,255,255,.1); padding:1rem 1.5rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; transform:translateY(100%); transition:transform .4s ease; }
    #cookie-banner.show { transform:translateY(0); }
    #cookie-banner p { font-size:.82rem; color:rgba(255,255,255,.7); margin:0; flex:1; min-width:200px; }
    #cookie-banner a { color:var(--amber); text-decoration:underline; }
    .cookie-btns { display:flex; gap:.5rem; flex-shrink:0; }
    .cookie-btns button { font-family:var(--font-h); font-size:.78rem; font-weight:600; padding:.45rem 1rem; border-radius:var(--r-sm); border:none; cursor:pointer; transition:all var(--ease); }
    .cookie-accept { background:var(--blue); color:#fff; }
    .cookie-decline { background:rgba(255,255,255,.1); color:rgba(255,255,255,.8); }

    /* ── SITEMAP FOOTER ── */
    .footer__sitemap { margin-top:2rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.06); display:flex; flex-wrap:wrap; gap:.4rem .75rem; }
    .footer__sitemap a { font-size:.75rem; color:rgba(255,255,255,.35); transition:color var(--ease); }
    .footer__sitemap a:hover { color:rgba(255,255,255,.7); }
    .footer__sitemap span { color:rgba(255,255,255,.15); font-size:.75rem; }


    /* ── MODULES ÉCOSYSTÈME ── */
    .modules__grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.25rem; }
    .mcard {
      border:1px solid var(--line); border-radius:var(--r); padding:1.75rem;
      background:var(--white); display:flex; flex-direction:column; gap:.75rem;
      transition:box-shadow var(--ease),border-color var(--ease),transform var(--ease);
    }
    .mcard:hover { box-shadow:0 6px 24px rgba(15,28,46,.09); border-color:var(--blue); transform:translateY(-3px); }
    .mcard__head { display:flex; align-items:center; gap:12px; }
    .mcard__icon { width:46px; height:46px; border-radius:12px; background:var(--sky); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
    .mcard__icon svg { width:22px; height:22px; color:var(--blue); }
    .mcard__icon--amber { background:rgba(245,158,11,.12); }
    .mcard__icon--amber svg { color:var(--amber-2); }
    .mcard__icon--green { background:#DCFCE7; }
    .mcard__icon--green svg { color:#059669; }
    .mcard__icon--red { background:#FEE2E2; }
    .mcard__icon--red svg { color:#EF4444; }
    .mcard__name { font-family:var(--font-h); font-size:1rem; font-weight:700; color:var(--ink); }
    .mcard__badge { font-size:.7rem; font-weight:600; font-family:var(--font-h); border-radius:100px; padding:.15rem .55rem; letter-spacing:.05em; }
    .mcard__badge--hosp { background:var(--sky); color:var(--blue); }
    .mcard__badge--tdb  { background:#FEF3C7; color:var(--amber-2); }
    .mcard__badge--both { background:#F3E8FF; color:#7C3AED; }
    .mcard p  { font-size:.86rem; color:var(--slate); line-height:1.7; }
    .mcard__feats { display:flex; flex-direction:column; gap:.3rem; margin-top:.25rem; }
    .mcard__feat { font-size:.8rem; color:var(--slate); display:flex; align-items:flex-start; gap:7px; }
    .mcard__feat::before { content:'›'; color:var(--blue); font-weight:700; flex-shrink:0; }
    .mcard__link { margin-top:auto; font-family:var(--font-h); font-size:.8rem; font-weight:600; color:var(--blue); display:flex; align-items:center; gap:6px; transition:gap var(--ease); }
    .mcard__link:hover { gap:10px; }
    .mcard__link svg { width:12px; height:12px; flex-shrink:0; }


    /* ── TOAST CONFIRMATION ── */
    #toast {
      position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%) translateY(-120px);
      z-index: 9999; background: #059669; color: #fff;
      font-family: var(--font-h); font-size: .92rem; font-weight: 600;
      padding: .85rem 1.75rem; border-radius: var(--r);
      box-shadow: 0 8px 30px rgba(0,0,0,.25);
      display: flex; align-items: center; gap: 10px;
      transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
      white-space: nowrap;
    }
    #toast.show { transform: translateX(-50%) translateY(0); }
    #toast.error { background: #EF4444; }
    #toast svg { width: 18px; height: 18px; flex-shrink: 0; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--sky); }
    ::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 10px; }
