/* === Sellavi — Shared CSS pour pages annexes ===
   Variables, reset, nav, boutons CTA, footer.
   Généré depuis tarifs.html (extraction sélective). */

/* === Variables + base globale === */
:root {
    /* Brand violet */
    --violet-900: #2A1066;
    --violet-800: #3D1A8A;
    --violet:     #431E96;
    --violet-700: #5524B0;
    --violet-600: #6D3AFF;
    --violet-brand: #7C3AFF;
    --violet-300: #C9B6FF;
    --violet-200: #E0D4FF;

    /* Accents */
    --accent:    #A202C7;
    --magenta:   #FF2DBE;
    --cyan:      #00E5FF;
    --green:     #00C46A;
    --green-mint:#10B981;
    --amber:     #F59E0B;

    /* Dark cosmique (sections 1, 2, 4, 5, 7, 9, 10) */
    --bg-cosmic:    #07020F;
    --bg-cosmic-2:  #0a0418;
    --bg-cosmic-3:  #100628;
    --bg-cosmic-4:  #050110;

    /* Light (sections 3, 6, 8) */
    --bg-light-top:    #F8F6FC;
    --bg-light-bottom: #EFE9F8;
    --surface-light:   #FFFFFF;

    /* Texte sur Dark */
    --text-on-dark-100: #FFFFFF;
    --text-on-dark-78:  rgba(255, 255, 255, 0.78);
    --text-on-dark-58:  rgba(255, 255, 255, 0.58);
    --text-on-dark-40:  rgba(255, 255, 255, 0.40);
    --text-on-dark-32:  rgba(255, 255, 255, 0.32);

    /* Texte sur Light */
    --text-on-light-primary:    #1A0B33;
    --text-on-light-secondary:  #4A3D5C;
    --text-on-light-tertiary:   #7A6D8A;
    --text-on-light-quaternary: #9F94AD;

    /* Bordures */
    --border-soft-light:  rgba(67, 30, 150, 0.08);
    --border-medium-light: rgba(67, 30, 150, 0.16);
    --border-strong-light: rgba(67, 30, 150, 0.24);
    --border-soft-dark:   rgba(255, 255, 255, 0.08);
    --border-medium-dark: rgba(255, 255, 255, 0.14);
    --border-strong-dark: rgba(255, 255, 255, 0.24);

    /* Layout */
    --max-width: 1380px;
    --gutter: 32px;
    --gutter-mobile: 20px;
  }

  /* ============================================================ */
  /* RESET MINIMAL                                                  */
  /* ============================================================ */
  *, *::before, *::after { box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
  }

  body {
    margin: 0;
    padding: 0;
    background: var(--bg-cosmic);
    color: var(--text-on-dark-100);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip; /* sticky-friendly */
  }

  body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote {
    margin: 0;
    padding: 0;
  }

  ul, ol { list-style: none; }

  img, svg {
    display: block;
    max-width: 100%;
  }

  a { color: inherit; text-decoration: none; }

  button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
  }

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

  /* Reduce motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ============================================================ */
  /* CLASSES UTILITAIRES PARTAGÉES                                  */
  /* ============================================================ */

  .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  @media (max-width: 720px) {
    .container { padding: 0 var(--gutter-mobile); }
  }

  /* Eyebrow (badge label en haut de section) */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
  .eyebrow--dark {
    background: rgba(124, 58, 255, 0.16);
    border: 1px solid rgba(124, 58, 255, 0.36);
    color: var(--violet-200);
  }
  .eyebrow--dark::before {
    background: var(--violet-brand);
    box-shadow: 0 0 8px var(--violet-brand);
  }
  .eyebrow--light {
    background: rgba(67, 30, 150, 0.06);
    border: 1px solid rgba(67, 30, 150, 0.14);
    color: var(--violet);
  }
  .eyebrow--light::before {
    background: var(--violet-brand);
  }

  /* Bouton CTA primaire (utilisé sections 7, 9, hero) */
  .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--accent) 60%, var(--magenta) 100%);
    color: #FFFFFF;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.005em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow:
      0 4px 16px rgba(67, 30, 150, 0.35),
      0 12px 40px -8px rgba(162, 2, 199, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 6px 20px rgba(67, 30, 150, 0.45),
      0 18px 50px -8px rgba(162, 2, 199, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
  .btn-cta-primary svg {
    width: 16px;
    height: 16px;
  }

  /* Bouton CTA secondaire */
  .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-on-dark-100);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
  }
  .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
  }

  /* Reveal animation (mutualisée pour toute la home) */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }
  .reveal.is-visible,
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-stagger="1"] { transition-delay: 0.05s; }
  .reveal[data-stagger="2"] { transition-delay: 0.10s; }
  .reveal[data-stagger="3"] { transition-delay: 0.15s; }
  .reveal[data-stagger="4"] { transition-delay: 0.20s; }
  .reveal[data-stagger="5"] { transition-delay: 0.25s; }
  .reveal[data-stagger="6"] { transition-delay: 0.30s; }
  .reveal[data-stagger="7"] { transition-delay: 0.35s; }
  .reveal[data-stagger="8"] { transition-delay: 0.40s; }
  .reveal[data-stagger="9"] { transition-delay: 0.45s; }

  /* Scope wrappers : chaque section sera dans une <section class="sx sx-N"> */
  .sx {
    position: relative;
    width: 100%;
  }

  /* Highlight (gradient text utilisé dans plusieurs sections) */
  .highlight-cosmic {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFB3F0 35%, var(--magenta) 70%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .highlight-violet {
    background: linear-gradient(135deg, var(--violet) 0%, var(--accent) 60%, var(--magenta) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  /* ============================================================ */
  /* UTILITAIRES TAILWIND PARTAGÉS (utilisés dans plusieurs sections)*/
  /* ============================================================ */
  .text-center { text-align: center; }
  .relative    { position: relative; }
  .z-10        { z-index: 10; }
  .mx-auto     { margin-left: auto; margin-right: auto; }
  .mb-6        { margin-bottom: 24px; }
  .mb-20       { margin-bottom: 80px; }
  .px-6        { padding-left: 24px; padding-right: 24px; }
  .py-32       { padding-top: 128px; padding-bottom: 128px; }
  .max-w-\[1380px\] { max-width: 1380px; }
  .text-\[56px\]    { font-size: 56px; line-height: 1.05; letter-spacing: -0.03em; }
  @media (min-width: 768px) {
    .md\:text-\[88px\] { font-size: 88px; line-height: 1.02; letter-spacing: -0.035em; }
  }

  /* ============================================================ */
  /* CONFINEMENT DASHBOARD sx-2 — override anti-fullscreen          */
  /* ============================================================ */
  /* Le dashboard de la section 2 doit rester un mockup contenu,    */
  /* pas un écran fullscreen. On le wrap dans un container plus     */
  /* étroit avec margin auto et un cadre distinct.                  */
  .sx-2-dashboard-stage {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 24px;
  }
  .sx-2-dashboard-frame {
    max-width: 100% !important;
  }
  .sx-2-dashboard {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* Fenêtre type app shell : barre supérieure type macOS / fenêtre applicative.
     Insérée via ::before sur dashboard-frame (qui n'a PAS overflow: hidden).
     Le wrapper interne `.sx-2-dashboard` a overflow:hidden, donc on ne peut pas
     y attacher des pseudo-elements négatifs sans qu'ils soient coupés. */
  .sx-2-dashboard-frame {
    position: relative !important;
    padding-top: 28px;
  }
  .sx-2-dashboard-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(180deg, #0F0820 0%, #07020F 100%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: none;
    z-index: 0;
  }
  .sx-2-dashboard-frame::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 16px;
    width: 48px;
    height: 12px;
    background-image:
      radial-gradient(circle at 6px 6px, #FF5F56 5px, transparent 5px),
      radial-gradient(circle at 22px 6px, #FFBD2E 5px, transparent 5px),
      radial-gradient(circle at 38px 6px, #27C93F 5px, transparent 5px);
    z-index: 1;
  }
  /* Réduire le borderRadius du dashboard pour fusionner proprement avec la barre */
  .sx-2-dashboard {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  @media (max-width: 720px) {
    .sx-2-dashboard-stage {
      max-width: 100% !important;
      padding: 28px 16px 0;
    }
  }

  /* Section sx-2 : alléger le padding qui était `py-32` (128px haut/bas) */
  .sx-2-section-bg.py-32 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }

  /* ============================================================ */
  /* DASHBOARD sx-2 : scroll-driven 3D rotation + mobile fit       */
  /* ============================================================ */
  /* Effet "le dashboard se redresse vers le viewer au scroll" - style Apple keynote.
     Plus marque que la version initiale : rotation 45 -> 0, scale 0.85 -> 1.0,
     transition plus lente etalee sur tout le viewport.
     Pivot 50% 0% (haut centre - le dashboard semble se "lever").
     IMPORTANT: le frame porte aussi les classes .reveal et .is-visible (animation
     d'apparition initiale). Leurs regles definissent transform en specificite 0,2,0.
     On compense avec un selecteur a 3 classes pour battre la cascade. */
  .sx-2.sx .sx-2-dashboard-frame,
  .sx-2-dashboard-frame.reveal.is-visible,
  .sx-2-dashboard-frame.reveal.visible {
    --rx: 45deg;
    --rs: 0.85;
    transform: rotateX(var(--rx)) scale(var(--rs)) !important;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
  }
  /* Scene perspective pour le 3D : sur le stage parent.
     Plus de perspective = effet plus prononce visuellement. */
  .sx-2-dashboard-stage {
    perspective: 1600px;
    perspective-origin: 50% 0%;
  }
  /* Reduce motion : pas d'effet 3D scroll-driven */
  @media (prefers-reduced-motion: reduce) {
    .sx-2-dashboard-frame.reveal.is-visible,
    .sx-2-dashboard-frame.reveal.visible,
    .sx-2-dashboard-frame {
      --rx: 0deg !important;
      --rs: 1 !important;
    }
  }

  /* === FIX OVERLAP MARKETPLACES vs CATEGORIES === */
  /* Cause : .sx-2-markets-grid en `repeat(4, 1fr)` mais chaque card avec
     aspect-ratio: 1.4 + contenu interne (logos SVG) prend min-content,
     ce qui depasse la cellule 1fr (~134px) et fait deborder a ~150px,
     generant un overlap horizontal de 40px sur le bloc catégories voisin.
     Solution : forcer minmax(0, 1fr) qui empeche le min-content overflow,
     reduire le aspect-ratio, et clamp width sur les cards. */
  .sx-2-markets-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }
  .sx-2-market-card {
    aspect-ratio: auto !important;  /* on laisse la grille decider */
    min-width: 0 !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  /* Le logo SVG a tendance a forcer une largeur minimum. On le contraint. */
  .sx-2-market-card .sx-2-market-logo,
  .sx-2-market-card .sx-2-logo-dark,
  .sx-2-market-card .sx-2-logo-light {
    max-width: 100%;
    min-width: 0;
    flex-shrink: 1;
  }
  .sx-2-market-card svg {
    max-width: 100%;
    height: auto;
  }

  /* === MOBILE DASHBOARD : zoom out pour fit dans le viewport === */
  /* Le dashboard est concu en grille 220px sidebar + 1fr contenu + ~700px tableaux,
     ce qui depasse 375px. Plutot que reflowable, on le zoom-out en bloc. */
  @media (max-width: 720px) {
    .sx-2-dashboard-frame.reveal.is-visible,
    .sx-2-dashboard-frame.reveal.visible,
    .sx-2-dashboard-frame {
      --rx: 0deg !important;  /* pas de 3D sur mobile (perf + lisibilite) */
      --rs: 1 !important;
      transform: none !important;  /* sur mobile, pas de tilt du tout */
    }
    .sx-2-dashboard-stage {
      perspective: none;
      padding: 28px 0 0;
      max-width: 100% !important;
      overflow: hidden;
    }
    /* On zoom le dashboard pour qu'il rentre en entier (le source fait ~1080px,
       on le scale a 0.34 pour qu'il rentre dans 375px - padding ~16px = ~360px) */
    .sx-2-dashboard {
      transform: scale(0.34) !important;
      transform-origin: top left !important;
      width: 1080px !important;
      max-width: none !important;
    }
    /* Compenser la hauteur reelle du dashboard zoom-out */
    .sx-2-dashboard-frame {
      height: 380px;  /* approx hauteur du dashboard apres scale 0.34 */
      overflow: hidden;
    }
  }

  /* Visually hidden (a11y) */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

/* === Navigation sticky (sx-1-nav) === */
.sx-1-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  }
.sx-1-nav.is-scrolled {
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: rgba(7, 2, 15, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
.sx-1-nav-logo-wrap {
    height: 40px;
    display: flex; align-items: center;
  }
.sx-1-nav-logo-wrap img {
    height: 100%;
    width: auto;
    display: block;
  }
.sx-1-nav-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
  }
.sx-1-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
.sx-1-nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
  }
.sx-1-nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
    text-decoration: none;
    transition: color .15s ease;
  }
.sx-1-nav-menu a:hover { color: #ffffff; }
.sx-1-nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: end;
  }
.sx-1-nav-login {
    /* BUYER-ACCOUNT-UX-FIX-1 P1 :
       Avant : pas de display defini, donc <a> en inline + <svg> + <span>
       pouvaient se stacker verticalement selon contexte (display block du svg).
       Force inline-flex partout, le bouton "Mon compte" injecte par
       auth-client.js (svg + span) reste sur UNE seule ligne. */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #9CA3AF;
    text-decoration: none;
    transition: color .15s ease, background .15s ease, border-color .15s ease;
    line-height: 1;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
  }
.sx-1-nav-login svg { flex-shrink: 0; display: block; }
.sx-1-nav-login:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }
.sx-1-nav-login-icon { display: none; }
@media (max-width: 640px) {
.sx-1-nav-actions {
      gap: 10px;
    }
.sx-1-nav-login {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.85);
      flex-shrink: 0;
    }
.sx-1-nav-login:hover,
    .sx-1-nav-login:active {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.20);
      color: #fff;
    }
.sx-1-nav-login-text {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
.sx-1-nav-login-icon {
      display: block;
    }
}
.sx-1-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
  }
.sx-1-nav-cta-short { display: none; }
@media (max-width: 640px) {
.sx-1-nav-cta {
      padding: 8px 14px;
      gap: 4px;
    }
.sx-1-nav-cta-full { display: none; }
.sx-1-nav-cta-short { display: inline; }
.sx-1-nav-cta-arrow { display: none; }
}
@media (max-width: 1023px) {
.sx-1-nav-menu { display: none; }
}

/* === Boutons primaires (sx-1-btn) === */
.sx-1-btn-primary {
    background: linear-gradient(135deg, var(--violet) 0%, var(--accent) 60%, var(--magenta) 100%);
    color: white;
    position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 8px 24px rgba(124, 58, 255, 0.35),
      0 0 60px rgba(255, 45, 190, 0.20);
  }
.sx-1-btn-primary::before {
    content: ''; position: absolute; inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--violet), var(--magenta), var(--cyan));
    z-index: -1; opacity: 0;
    transition: opacity 0.4s; filter: blur(8px);
  }
.sx-1-btn-primary:hover::before { opacity: 0.8; }
.sx-1-btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.18),
      0 16px 48px rgba(255, 45, 190, 0.45),
      0 0 80px rgba(124, 58, 255, 0.45);
  }
.sx-1-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-strong);
    color: white; backdrop-filter: blur(8px);
    transition: all 0.3s;
  }
.sx-1-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
  }

/* === Footer (sx-10-footer) === */
.sx-10-footer-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
      radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124, 58, 255, 0.08) 0%, transparent 50%),
      linear-gradient(180deg, #100628 0%, #07020f 50%, #050110 100%);
    border-top: 1px solid var(--divider-strong);
  }
.sx-10-footer-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
  }
.sx-10-footer {
    position: relative;
    z-index: 1;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 32px 32px;
  }
.sx-10-footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(160px, 1fr));
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--divider);
  }
.sx-10-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
.sx-10-footer-logo {
    height: 36px;
    display: block;
  }
.sx-10-footer-logo img {
    height: 100%;
    width: auto;
    display: block;
  }
.sx-10-footer-tagline {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
    max-width: 320px;
  }
.sx-10-footer-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
  }
.sx-10-footer-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  }
.sx-10-footer-social:hover {
    background: rgba(124, 58, 255, 0.18);
    border-color: rgba(124, 58, 255, 0.45);
    color: #FFFFFF;
    transform: translateY(-2px);
  }
.sx-10-footer-social svg {
    width: 18px;
    height: 18px;
  }
.sx-10-footer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    align-self: flex-start;
  }
.sx-10-footer-pill-flag {
    display: inline-flex;
    align-items: stretch;
    width: 16px;
    height: 11px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
  }
.sx-10-footer-pill-flag span {
    flex: 1;
    height: 100%;
  }
.sx-10-footer-pill-flag .sx-10-flag-blue   { background: #002654; }
.sx-10-footer-pill-flag .sx-10-flag-white  { background: #FFFFFF; }
.sx-10-footer-pill-flag .sx-10-flag-red    { background: #ED2939; }
.sx-10-footer-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
.sx-10-footer-col-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--text-quaternary);
    margin: 0;
  }
.sx-10-footer-col-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
.sx-10-footer-link {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
.sx-10-footer-link:hover {
    color: #FFFFFF;
  }
.sx-10-footer-link::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--violet-brand) 0%, var(--magenta) 100%);
    transition: width 0.25s ease;
  }
.sx-10-footer-link:hover::before {
    width: 14px;
  }
.sx-10-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    flex-wrap: wrap;
  }
.sx-10-footer-copyright {
    font-size: 12.5px;
    color: var(--text-quaternary);
    font-weight: 500;
  }
.sx-10-footer-copyright strong {
    color: var(--text-tertiary);
    font-weight: 600;
  }
.sx-10-footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
.sx-10-footer-meta {
    font-size: 12.5px;
    color: var(--text-quaternary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
.sx-10-footer-meta svg {
    width: 12px;
    height: 12px;
    color: rgba(124, 58, 255, 0.85);
  }
.sx-10-footer-locale {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--text-tertiary);
    cursor: default;
  }
.sx-10-footer-locale svg {
    width: 12px;
    height: 12px;
    opacity: 0.7;
  }
@media (max-width: 1024px) {
.sx-10-footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 48px 40px;
    }
.sx-10-footer-brand {
      grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
.sx-10-footer { padding: 64px 20px 28px; }
.sx-10-footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }
.sx-10-footer-brand { grid-column: auto; }
.sx-10-footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }
.sx-10-footer-bottom-right {
      gap: 16px;
    }
}

/* === Drapeau France footer === */

/* === BG Continuum (extrait de index.html pour pages annexes) === */
.bg-continuum{
  position:relative;
  background:#07020F;
  background-image:
    radial-gradient(ellipse 65% 35% at 18% 8%, rgba(124,58,255,.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 85% 22%, rgba(255,45,190,.10) 0%, transparent 60%),
    radial-gradient(ellipse 55% 32% at 12% 42%, rgba(162,2,199,.13) 0%, transparent 65%),
    radial-gradient(ellipse 60% 30% at 88% 58%, rgba(124,58,255,.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 28% at 25% 78%, rgba(255,45,190,.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 32% at 80% 92%, rgba(124,58,255,.12) 0%, transparent 60%);
  overflow:clip;
}
.bg-continuum::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:32px 32px;
  pointer-events:none;
  opacity:.45;
  z-index:-1;
}
.bg-continuum > .sx,
.bg-continuum > .sx > [class*="-bg"],
.bg-continuum > .sx > [class*="-wrap"]:first-child{
  background:transparent !important;
}
.bg-continuum .agents-section{
  background:transparent !important;
}
.bg-continuum .agents-section::before{
  display:none !important;
}
.bg-continuum--bottom{
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(124,58,255,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(162,2,199,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 95%, rgba(124,58,255,.12) 0%, transparent 65%);
}
.bg-continuum .sx-2-section-bg{ background-image:none !important; }
.bg-continuum .sx-2-section-bg::before{ display:none !important; }
.bg-continuum .sx-1-marquee-section{
  background:transparent !important;
  background-image:none !important;
  border-top:none !important;
}
.bg-continuum .sx-2-dashboard-glow{ display:none !important; }
.bg-continuum .sx-2-dashboard-reflection{ display:none !important; }

/* === Reset section sx-10 (host pour le footer) === */
.sx {
  position: relative;
  width: 100%;
}
.sx-10 {
  --violet: #431E96;
  --violet-brand: #7C3AFF;
  --magenta: #FF2DBE;
  --accent: #A202C7;
  --bg-cosmic: #07020F;
  margin: 0;
  color: #FFFFFF;
}
