.elementor-kit-9{--e-global-color-primary:#7426F5;--e-global-color-secondary:#F6F6FA;--e-global-color-text:#1B0F3A;--e-global-color-accent:#FF6F3C;--e-global-color-72e8abd:#0C0A1F;--e-global-typography-primary-font-family:"Manrope";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:transparent;background-image:linear-gradient(88deg, #B189C4 0%, #F6F6FA 35%);}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ====== TATAJUBA.AI — FOND GLOBAL SEUL ====== */
:root{
  --tj-violet:#7426F5;          /* violet logo */
  --tj-violet-200:#8D54F7;
  --tj-violet-100:#B295FA;
  --tj-ink:#0B1220;             /* texte principal très sombre */
  --tj-ink-70:#1F2A44;          /* texte secondaire */
  --tj-white:#FFFFFF;
  --tj-bg:#F8F7FB;              /* base très claire, pas "trop blanche" */
}

/* Corps de page avec léger dégradé */
html, body{
  background:
    radial-gradient(1200px 800px at 70% -10%, rgba(116,38,245,0.10), transparent 60%),
    radial-gradient(1000px 700px at -10% 20%, rgba(178,149,250,0.12), transparent 55%),
    linear-gradient(180deg, #FBFAFF 0%, var(--tj-bg) 100%);
  color: var(--tj-ink);
}

/* (Optionnel) conteneur max pour les blocs si besoin d’un cadre cohérent */
.tj-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Typo & espacements par défaut — sobres */
.tj-section{ padding: 56px 0; }
.tj-eyebrow{ font: 600 13px/1.2 Manrope, Inter, system-ui, sans-serif; letter-spacing:.04em; text-transform:uppercase; color: var(--tj-ink-70); margin-bottom:12px; }
.tj-h1{ font: 800 40px/1.12 Manrope, Inter, system-ui, sans-serif; letter-spacing:-0.02em; margin:0 0 12px; }
.tj-h2{ font: 800 28px/1.2 Manrope, Inter, system-ui, sans-serif; letter-spacing:-0.01em; margin:0 0 10px; }
.tj-lead{ font: 500 18px/1.55 Manrope, Inter, system-ui, sans-serif; color: var(--tj-ink-70); margin: 0 0 14px; }

/* CTAs discrets (pas oppressants) */
.tj-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:18px; }
.tj-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:12px; text-decoration:none;
  font:600 14px/1 Manrope, Inter, system-ui, sans-serif;
  border:1px solid rgba(11,18,32,.10); background: var(--tj-white); color: var(--tj-ink);
  box-shadow: 0 1px 0 rgba(11,18,32,.04);
}
.tj-btn--primary{
  background: var(--tj-violet); color: white; border-color: transparent;
}
.tj-btn:hover{ transform: translateY(-1px); }

/* Listes propres */
.tj-list{ margin:14px 0 0 0; padding:0; list-style:none; }
.tj-list li{ margin:8px 0; padding-left:14px; position:relative; }
.tj-list li::before{
  content:"•"; position:absolute; left:0; top:0; color: var(--tj-violet);
}

/* Petits blocs chiffres / stats */
.tj-stats{ display:flex; gap:18px; flex-wrap:wrap; margin-top:8px; }
.tj-stat{ background: rgba(255,255,255,.7); border:1px solid rgba(11,18,32,.06); border-radius:14px; padding:10px 12px; }

/* Emplacements images (facultatifs) */
.tj-media-slot{
  border-radius:16px; border:1px dashed rgba(11,18,32,.15);
  min-height:160px; background: rgba(255,255,255,.6);
}

/* Séparateurs doux entre sections si désiré */
.tj-divider{ height:1px; background: linear-gradient(90deg, transparent, rgba(11,18,32,.08), transparent); margin: 12px 0 0; }

/* === Globaux (une seule fois dans le CSS du site) === */
:root{
  --tj-container: 1100px;   /* même largeur pour HERO et QUESTION */
  --tj-gutter: 24px;        /* marge latérale */
}

/* Conteneur générique */
.tj-container{
  max-width: var(--tj-container);
  margin: 0 auto;
  padding-left: var(--tj-gutter);
  padding-right: var(--tj-gutter);
}

/* Forcer la même largeur pour les deux sections */
#hero .tj-container,
#question .tj-container{
  max-width: var(--tj-container);
}
/* ==============================
   CSS GLOBAL MINIMAL (Animations & Boutons)
   ============================== */

/* Définition des animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes miniSheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  40% {
    opacity: .9;
  }
  70% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
@keyframes miniFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes driftSoft {
  0%,
  100% {
    transform: none
  }
  50% {
    transform: translate3d(-1.5%, -1%, 0) scale(1.03)
  }
}
@keyframes miniCtaDash {
  to {
    stroke-dashoffset: -160;
  }
}
@keyframes tjSheenBtn {
  0% {
    transform: translateX(-120%) skewX(-20deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  25% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
  100% {
    transform: translateX(220%) skewX(-20deg);
    opacity: 0;
  }
}

/* Définition des :root variables */
:root {
  --tj-violet: #7426F5;
  --tj-violet2: #8D54F7;
  --tj-ink: #0B1220;
  --tj-ink80: rgba(11, 18, 32, .8);
  --tj-ink70: rgba(11, 18, 32, .7);
  --tj-ink60: rgba(11, 18, 32, .6);
  --pill-radius: 16px;
  --card-radius: 14px;
  --line: rgba(11, 18, 32, .10);
}

/* Styles de base des boutons (utilisés par #hero et #volets) */
.tj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font: 600 16px/1 "Inter", system-ui, sans-serif;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none !important;
  border: 1px solid transparent;
}
.tj-btn--primary {
  background: linear-gradient(180deg, #8D54F7, #7426F5);
  color: #fff;
  box-shadow: 0 8px 20px rgba(116, 38, 245, 0.30);
}
.tj-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(116, 38, 245, 0.36);
}
/* ... (vos autres keyframes existants) ... */

@keyframes wave {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Fait défiler d'exactement la moitié de la largeur totale (un set de logos) */
    transform: translateX(-50%);
  }
}
/* Animation "Sonar" pour le CTA */
@keyframes sonarPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
/* ==============================
   CSS GLOBAL DE VOTRE SITE
   (Réglages du site -> Custom CSS)
   ============================== */

/* --- Variables de couleur --- */
:root {
  /* Homepage */
  --tj-violet: #7426F5;
  --tj-violet2: #8D54F7;
  --tj-ink: #0B1220;
  --tj-ink80: rgba(11, 18, 32, .8);
  --tj-ink70: rgba(11, 18, 32, .7);
  --tj-ink60: rgba(11, 18, 32, .6);
  --pill-radius: 16px;
  --card-radius: 14px;
  --line: rgba(11, 18, 32, .10);

  /* Page Formation */
  --white: #fff;
  --line-dark-bg: rgba(255, 255, 255, .18);
  --ink-2: #2E3342;
  --ink-3: #5E6675;
  --surface: #FFFFFF;
  --glass: rgba(255, 255, 255, .86);
  --line-strong: rgba(11, 18, 32, .12);
}

/* --- Classe utilitaire pour texte violet --- */
.tj-violet-text {
  color: var(--tj-violet) !important;
}

/* --- Animations (@keyframes) --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes miniSheen {
  0% { transform: translateX(-120%); opacity: 0; }
  40% { opacity: .9; }
  70% { transform: translateX(120%); opacity: 0; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes miniFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes driftSoft {
  0%,
  100% { transform: none; }
  50% { transform: translate3d(-1.5%, -1%, 0) scale(1.03); }
}
@keyframes miniCtaDash {
  to { stroke-dashoffset: -160; }
}
@keyframes tjSheenBtn {
  0% { transform: translateX(-120%) skewX(-20deg); opacity: 0; }
  12% { opacity: 1; }
  25% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
  100% { transform: translateX(220%) skewX(-20deg); opacity: 0; }
}
@keyframes sonarPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes wave {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Styles de base (si nécessaire) --- */
.tj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font: 600 16px/1 "Inter", system-ui, sans-serif;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none !important;
  border: 1px solid transparent;
}
.tj-btn--primary {
  background: linear-gradient(180deg, #8D54F7, #7426F5);
  color: #fff;
  box-shadow: 0 8px 20px rgba(116, 38, 245, 0.30);
}
.tj-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(116, 38, 245, 0.36);
}
/* ... (vos autres keyframes) ... */

/* Pulsation pour le Hub Central */
@keyframes hubPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.98);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.7), 0 10px 30px rgba(116, 38, 245, 0.4);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0), 0 12px 35px rgba(116, 38, 245, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.98);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.7), 0 10px 30px rgba(116, 38, 245, 0.4);
  }
}

/* Flottaison orbitale plus sexy */
@keyframes orbitFloat {
  0% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
  100% { transform: translate(-50%, -50%) translateY(0); }
}/* End custom CSS */