/* ============================================================
   AIT 2026 — MAIN CSS
   Africa IT Meetings — Design ultra-premium dark tech
   ============================================================ */

/* ── 0. VOLTE (titres & texte éditorial) ───────────────────── */
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Volte';
    src: url('../fonts/Volte-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ── 1. VARIABLES ──────────────────────────────────────────── */
:root {
    /* Couleurs — charte plaquette AIT 2026 */
    --bg:         #0A0E27;
    --bg-2:       #0D1240;
    --bg-3:       #111848;
    --bg-card:    rgba(13,18,64,.72);
    --border:     rgba(0,200,255,.13);
    --border-h:   rgba(249,160,27,.42);
    --elec:       #00C8FF;
    --elec-d:     #0090E7;
    --ora:        #F9A01B;
    --ora-deep:   #C8780A;
    --pink:       #D4145A;
    --pink-l:     #E8326F;
    --vio:        #662D91;
    --vio-l:      #8B3CB8;
    --magenta:    #D4145A;
    --white:      #F0F4FF;
    --muted:      #6E7898;
    --muted-l:    #9AA3C2;
    --c-electric: var(--elec);
    --c-gold:     var(--ora);
    --text-muted: var(--muted-l);
    /* Champs formulaire remplissables */
    --form-field-bg:          #cac8e0;
    --form-field-bg-focus:    #cac8e0;
    --form-field-text:        #0A0E27;
    --form-field-border:      rgba(10,14,39,.2);
    --form-field-border-focus:rgba(10,14,39,.35);
    --form-field-placeholder: rgba(10,14,39,.42);
    --form-field-shadow-focus:0 0 0 4px rgba(10,14,39,.08);
    --grad-primary: linear-gradient(90deg, #f38e07 0%, #ec4f14 50%, #dd324c 100%);
    --grad-secondary: linear-gradient(90deg, #3d348b 0%, #5f5cc6 100%);
    --grad-brand: var(--grad-primary);
    --grad-bar:   linear-gradient(90deg, #f38e07, #ec4f14, #dd324c);
    --grad-text:  linear-gradient(110deg, #ffffff 0%, #f38e07 30%, #ec4f14 60%, #dd324c 100%);
    /* Typographie — Volte pour tout le site ; Space Grotesk réservée aux boutons Elementor */
    --f-body:     'Volte', system-ui, sans-serif;
    --f-ui:       'Volte', system-ui, sans-serif;
    --f-title:    'Volte', system-ui, sans-serif;
    --f-btn:      'Space Grotesk', system-ui, sans-serif;
    /* Effets */
    --r:          16px;
    --r-lg:       28px;
    --r-xl:       40px;
    --shadow:     0 8px 56px rgba(0,0,0,.65);
    --shadow-sm:  0 4px 24px rgba(0,0,0,.45);
    --t:          all .38s cubic-bezier(.4,0,.2,1);
    --t-fast:     all .22s cubic-bezier(.4,0,.2,1);
    /* Glows */
    --glow-elec:  0 0 48px rgba(0,200,255,.25);
    --glow-ora:   0 0 48px rgba(249,160,27,.28);
    --glow-pink:  0 0 48px rgba(212,20,90,.32);
    --glow-vio:   0 0 48px rgba(139,53,214,.28);
    /* Grille site — header + contenu alignés */
    --layout-max:    1240px;
    --layout-gutter: clamp(20px, 4vw, 48px);
    /* Espacement vertical sections — harmonisé sur tout le site */
    --section-y:           clamp(36px, 4.5vw, 56px);
    --section-y-lg:        clamp(44px, 5.5vw, 68px);
    --section-y-sm:        clamp(28px, 3.5vw, 44px);
    --section-y-hero-top:  clamp(28px, 3.5vw, 44px);
    --section-y-hero-bottom: clamp(36px, 4.5vw, 52px);
}

/* ── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scrollbar-gutter: stable; }
@media (prefers-reduced-motion: no-preference) {
    html:focus-within { scroll-behavior: smooth; }
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar               { width: 5px; }
::-webkit-scrollbar-track         { background: var(--bg); }
::-webkit-scrollbar-thumb         { background: var(--elec-d); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover   { background: var(--elec); }
::selection { background: rgba(0,200,255,.28); color: #fff; }

/* ── 3. BASE ────────────────────────────────────────────────── */
body {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted-l);
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 90% 55% at 8%   0%,   rgba(102,45,145,.28) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 92%  12%,  rgba(212,20,90,.14)  0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50%  100%, rgba(249,160,27,.08) 0%, transparent 55%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── 4. LAYOUT ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
}

.section-pad { padding-block: var(--section-y-lg); }

/* ── 5. TYPOGRAPHIE ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-body);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.025em;
}

h1, h2 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .035em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
h5, h6 { font-weight: 500; }
p  { line-height: 1.8; font-weight: 400; }

strong { color: var(--white); font-weight: 600; }

.section-eyebrow {
    display: inline-block;
    font-family: var(--f-title);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--elec);
    padding: 5px 14px;
    border: 1px solid rgba(0,200,255,.30);
    border-radius: 30px;
    background: rgba(0,200,255,.07);
    margin-bottom: 20px;
}
.section-eyebrow--brand {
    color: var(--pink-l);
    border-color: rgba(212,20,90,.42);
    background: rgba(212,20,90,.10);
    box-shadow: 0 0 24px rgba(212,20,90,.12);
}

.section-title { margin-bottom: 12px; }

.section-bar {
    display: block;
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad-bar);
    margin: 16px 0 28px;
    box-shadow: 0 0 16px rgba(212,20,90,.32);
}

.section-header--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: clamp(48px, 6vw, 72px);
}
.section-header--center .section-bar { margin: 16px auto 28px; }

.section-desc {
    max-width: 640px;
    text-align: center;
    color: var(--muted-l);
}

/* Gradient text */
.text--gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text--elec { color: var(--elec); }
.text--ora  { color: var(--ora); }
.text--pink { color: var(--pink-l); }
.text--vio  { color: var(--vio-l); }
.text--muted{ color: var(--muted); }

/* ── 6. BOUTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-title);
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 13px 32px;
    border: none;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
}
.btn--lg { padding: 16px 40px; font-size: .86rem; }
.btn--sm { padding: 9px 22px; font-size: .75rem; }

.btn--primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 5px 28px rgba(236,79,20,.38);
}
.btn--primary:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 10px 42px rgba(221,50,76,.40), 0 6px 24px rgba(243,142,7,.35);
    color: #fff;
}
.btn--primary .btn__arrow,
.btn--primary svg:last-child {
    transition: transform var(--t-fast);
}
.btn--primary:hover .btn__arrow,
.btn--primary:hover svg:last-child {
    transform: translateX(4px);
}

/* Bouton ghost — outline transparent */
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(0,200,255,.42);
    box-shadow: none;
}
.btn--ghost:hover {
    background: rgba(0,200,255,.08);
    border-color: var(--elec);
    box-shadow: var(--glow-elec);
    transform: translateY(-3px) scale(1.025);
    color: var(--white);
}

/* Bouton secondaire — dégradé violet-indigo */
.btn--secondary {
    background: var(--grad-secondary);
    color: #fff;
    border: none;
    box-shadow: 0 5px 24px rgba(95,92,198,.32);
}
.btn--secondary:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 10px 36px rgba(95,92,198,.5);
    color: #fff;
}

.btn--violet {
    background: var(--grad-secondary);
    color: #fff;
    box-shadow: 0 5px 24px rgba(95,92,198,.32);
}
.btn--violet:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 10px 36px rgba(95,92,198,.5);
    color: #fff;
}

/* ── 7. HEADER ──────────────────────────────────────────────── */
:root {
    --header-logo-h: clamp(74px, 9.2vw, 94px);
    --header-h: max(96px, calc(var(--header-logo-h) + 20px));
}
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    overflow: visible;
    background: rgba(10,14,39,.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212,20,90,.14);
    transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.site-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,20,90,.45), rgba(249,160,27,.35), transparent);
    opacity: .65;
    pointer-events: none;
}
.site-header.scrolled {
    background: rgba(10,14,39,.97);
    box-shadow: 0 4px 32px rgba(0,0,0,.55);
}

.site-header .header__inner.container {
    width: 100%;
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(6px, 1vw, 14px);
    min-height: var(--header-h);
    height: var(--header-h);
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    position: relative;
}

/* ── Nav — FRÈRE du header, position: fixed sur le viewport ──── */
.header__nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--header-h);
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 1001;          /* au-dessus du header (1000) pour être visible */
    width: max-content;
    max-width: min(780px, 56vw);
    /* Les zones vides laissent passer les clics vers le header */
    pointer-events: none;
    background: transparent;
}
.header__nav .nav__list {
    pointer-events: auto;
}
/* Sub-menus et tout ce qu'ils contiennent */
.header__nav .sub-menu,
.header__nav .sub-menu * {
    pointer-events: auto;
}

.header__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    line-height: 0;
    min-width: 0;
    max-width: min(280px, 24vw);
}
.header__logo-img,
.header__logo img,
.header__logo .custom-logo {
    display: block;
    height: var(--header-logo-h);
    width: auto;
    max-width: min(380px, 54vw);
}
.header__logo:hover img {
    filter: drop-shadow(0 0 14px rgba(212,20,90,.38));
}
.header__logo-text {
    font-family: var(--f-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__list > li {
    position: relative;
    flex-shrink: 1;
    min-width: 0;
}
.nav__list > li:hover,
.nav__list > li:focus-within {
    z-index: 100;
}
.nav__list > li > a,
.nav__list.menu-main > li > a,
.menu-main.nav__list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--f-title);
    font-size: clamp(.64rem, .92vw, .78rem);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(240,244,255,.78);
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: var(--t-fast);
    line-height: 1.2;
}
.nav__list > li > a:hover {
    color: var(--pink-l);
    background: rgba(212,20,90,.08);
    border-color: rgba(212,20,90,.18);
}
.nav__list > li.current-menu-item > a,
.nav__list > li.current-menu-ancestor > a {
    color: var(--white);
    background: rgba(212,20,90,.16);
    border-color: rgba(212,20,90,.38);
    box-shadow: 0 0 22px rgba(212,20,90,.14);
}

.nav__list > li.menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .75;
    margin-top: 1px;
}

.nav__list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10,14,39,.98);
    border: 1px solid rgba(212,20,90,.22);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 24px rgba(212,20,90,.08);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
    z-index: 200;
    list-style: none;
    margin: 0;
}
/* Pont invisible : évite la fermeture en descendant la souris */
.nav__list .sub-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
.nav__list > li.sub-hover > .sub-menu,
.nav__list > li:hover > .sub-menu,
.nav__list > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
}
.nav__list .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
}
.nav__list .sub-menu li a {
    display: block;
    font-family: var(--f-title);
    font-size: clamp(.58rem, .82vw, .7rem);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 10px;
    color: rgba(240,244,255,.85);
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    border: 1px solid transparent;
}
.nav__list .sub-menu li a:hover,
.nav__list .sub-menu li.current-menu-item > a {
    color: var(--white);
    background: rgba(212,20,90,.12);
}

.header__actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 15;
    min-height: var(--header-logo-h);
}
.header__cta {
    padding: 9px 14px !important;
    font-size: .64rem !important;
    line-height: 1.2 !important;
    white-space: nowrap;
    box-shadow: 0 4px 22px rgba(212,20,90,.28);
    flex-shrink: 0;
}

.burger {
    display: none;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: auto;
    border-radius: 10px;
    border: 1px solid rgba(212,20,90,.25);
    background: rgba(212,20,90,.06);
}
.burger__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--pink-l);
    border-radius: 1px;
    transition: var(--t);
}
.burger.is-active .burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-active .burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    min-height: var(--header-logo-h);
}
.lang-switcher a {
    text-decoration: none;
}
/* Styles détaillés du switcher AIT Translate Pro → assets/css/switcher.css */

/* Admin WP — header + nav alignés sous la barre admin */
body.admin-bar {
    --admin-bar-h: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        --admin-bar-h: 46px;
    }
}
body.admin-bar .site-header,
body.admin-bar .header__nav {
    top: var(--admin-bar-h);
}

/* ── 8. HERO ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: .5;
    z-index: 0;
}

.hero__halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero__halo--violet { width: 700px; height: 700px; top: -200px; left: -200px; background: rgba(139,53,214,.22); }
.hero__halo--blue   { width: 500px; height: 500px; top: 100px;  right: -100px; background: rgba(0,128,204,.20); }
.hero__halo--orange { width: 420px; height: 420px; bottom: -100px; left: 28%; background: rgba(212,20,90,.16); }
.hero__halo--pink   { width: 380px; height: 380px; top: 40%; right: 8%; background: rgba(212,20,90,.12); }

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.48fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding-top: var(--section-y-hero-top);
    padding-bottom: var(--section-y-hero-bottom);
    overflow: visible;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 3;
    min-width: 0;
    overflow: visible;
}

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; }

/* Ancien kicker (conservé pour compatibilité) */
.hero__kicker {
    font-family: var(--f-title);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--pink-l);
    margin-bottom: -8px;
}

/* Sous-titre hero — titre de la description, juste au-dessus */
.hero__rdv {
    font-family: var(--f-title);
    font-size: clamp(.9rem, 1.5vw, 1.08rem);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #da7c2f;
    margin: 0 0 -18px; /* colle visuellement avec la description en dessous */
}
.badge {
    display: inline-flex;
    align-items: center;
    font-family: var(--f-title);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    transition: var(--t-fast);
}
.badge:hover { transform: translateY(-2px); filter: brightness(1.15); }
.badge--ai       { color: #ea1f7b; border: 1px solid rgba(234,31,123,.38); background: rgba(234,31,123,.10); }
.badge--security { color: #796db2; border: 1px solid rgba(121,109,178,.38); background: rgba(121,109,178,.10); }
.badge--data     { color: #f15724; border: 1px solid rgba(241,87,36,.38);  background: rgba(241,87,36,.10); }
.badge--cloud    { color: #3c92d1; border: 1px solid rgba(60,146,209,.38);  background: rgba(60,146,209,.10); }

.hero__title {
    font-family: var(--f-body);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: rgba(236,240,255,.70);
    line-height: 1.1;
    position: relative;
    z-index: 4;
    overflow: visible;
    max-width: none;
}
.hero__title-accent {
    display: block;
    color: #9386bf;
    -webkit-text-fill-color: #9386bf;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-transform: uppercase;
    letter-spacing: -.02em;
    overflow: visible;
    position: relative;
    z-index: 6;
    padding-right: 0.08em;
    padding-bottom: 0.06em;
}
.hero__title-line {
    display: block;
    overflow: visible;
    white-space: nowrap;
}
.hero__title-line--wide {
    letter-spacing: -.035em;
}
.hero__title-accent.text--gradient {
    background: none;
    color: #9386bf;
    -webkit-text-fill-color: #9386bf;
}

.hero__date-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(11,14,45,.75);
    border: 1px solid rgba(249,160,27,.35);
    border-radius: var(--r);
    padding: 14px 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 32px rgba(212,20,90,.12), 0 0 24px rgba(249,160,27,.12);
    width: fit-content;
    /* Toute la typographie du bloc date en Volte */
    font-family: 'Volte', sans-serif;
}
/* ── Bloc date compact ────────────────────────────────────────── */
.hero__date-badge--compact {
    gap: 16px;
    padding: 12px 20px;
    align-items: center;
}

/* Dates : NOV. + 24–26 */
.hero__date-badge-dates { display: flex; flex-direction: column; gap: 1px; }
.dates__label {
    font-family: 'Volte', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.dates__value {
    font-family: 'Volte', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1;
}

/* Séparateur */
.hero__date-badge-sep { width: 1px; height: 44px; background: rgba(212,20,90,.35); flex-shrink: 0; }

/* Ville + venue serrées en hauteur */
.hero__date-badge-city { display: flex; flex-direction: column; gap: 1px; }
.city__name {
    font-family: 'Volte', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.1;
}
.city__venue {
    font-family: 'Volte', sans-serif;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.25;
}

/* Bloc 20/26 — dégradé diagonal magenta + lueur fine */
.hero__date-badge-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e70e70 0%, #f22b85 100%);
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(237,55,148,.55),
        0 0 14px rgba(237,55,148,.45),
        0 4px 20px rgba(231,14,112,.5),
        inset 0 1px 0 rgba(255,255,255,.15);
    padding: 0;
    font-family: 'Volte', sans-serif;
    font-size: clamp(1.65rem, 2.6vw, 2.05rem);
    font-weight: 800;
    letter-spacing: -.03em;
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    text-align: center;
    line-height: 1;
    position: relative;
    box-sizing: border-box;
    /* Centrage précis du groupe de chiffres */
    align-items: center;
    justify-content: center;
}
/* "20" — rose clair */
.hero__date-badge-year span:first-child {
    color: #f494b7;
    position: relative;
    z-index: 1;
    display: block;
    line-height: 1;
}
/* "26" — blanc, passe légèrement au-dessus de 20 */
.hero__date-badge-year span:last-child {
    color: #ffffff;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 1;
    margin-top: -0.36em;
}

.hero__desc { color: var(--muted-l); max-width: 520px; font-weight: 300; }
.home-v2__hero .hero__desc,
.home-v2__hero .home-v2__hero-desc {
    max-width: 100%;
}
/* Accueil v2 — colonne texte calée sur la largeur du titre */
.home-v2__hero.hero {
    overflow: visible;
    min-height: 0;
    align-items: flex-start;
    padding-bottom: clamp(28px, 4vw, 56px);
}
.home-v2__hero .hero__content {
    align-items: flex-start;
    overflow: visible;
    min-width: 0;
    width: 100%;
}
.home-v2__hero .home-v2__hero-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min-content;
    max-width: 100%;
    min-width: 0;
}
.home-v2__hero .home-v2__rdv,
.home-v2__hero .home-v2__hero-desc-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.home-v2__hero .hero__desc,
.home-v2__hero .home-v2__hero-desc {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.home-v2__hero .home-v2__rdv {
    white-space: normal;
    overflow-wrap: break-word;
}
@media (max-width: 900px) {
    .home-v2__hero .home-v2__hero-copy {
        width: 100%;
        max-width: 100%;
    }
}
.hero__desc strong { color: var(--white); }

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-items: center;
}
.hero__ctas .btn { flex-shrink: 0; }

/* Visuel hero — PNG transparent, fusion avec le fond (pas de masque rond) */
.hero__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(380px, 50vw, 640px);
    pointer-events: none;
    min-width: 0;
    overflow: visible;
}
.hero__visual-glow {
    position: absolute;
    inset: 5% 0;
    background:
        radial-gradient(ellipse 70% 60% at 55% 50%, rgba(212,20,90,.14) 0%, transparent 65%),
        radial-gradient(ellipse 55% 50% at 45% 55%, rgba(102,45,145,.12) 0%, transparent 70%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}
.hero__img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: min(1080px, 68vw);
    height: auto;
    background: transparent !important;
    border: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    /* Si le PNG contient encore du noir : le fond sombre le neutralise */
    mix-blend-mode: screen;
    animation: float 8s ease-in-out infinite;
    filter: drop-shadow(0 0 48px rgba(212,20,90,.12));
}
@supports (mix-blend-mode: plus-lighter) {
    .hero__img { mix-blend-mode: plus-lighter; }
}
.hero__orbit {
    display: none;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.scroll-line {
    display: block;
    width: 1px; height: 56px;
    background: linear-gradient(to bottom, rgba(0,200,255,.5), transparent);
    margin: 0 auto;
    animation: scroll-pulse 2.2s ease-in-out infinite;
}

/* ── 9. STATS ───────────────────────────────────────────────── */
.stats {
    position: relative;
    padding-block: var(--section-y-sm);
}
.stats__glow-top, .stats__glow-bottom {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,200,255,.3) 50%, transparent 100%);
}
.stats__glow-top    { top: 0; }
.stats__glow-bottom { bottom: 0; }

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: clamp(28px, 4vw, 44px) 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0,200,255,.07) 0%, transparent 60%);
    opacity: 0;
    transition: var(--t);
}
.stat-card:hover {
    border-color: var(--border-h);
    transform: translateY(-8px);
    box-shadow: var(--shadow), var(--glow-elec);
}
.stat-card:hover::before { opacity: 1; }

.stat-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,200,255,.10);
    border: 1px solid rgba(0,200,255,.20);
    display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--elec);
    transition: var(--t);
}
.stat-card:hover .stat-card__icon {
    background: rgba(0,200,255,.18);
    box-shadow: 0 0 24px rgba(0,200,255,.28);
}

.stat-card__number {
    font-family: var(--f-body);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -.03em;
}
@supports not (-webkit-background-clip: text) {
    .stat-card__number { color: var(--ora); -webkit-text-fill-color: var(--ora); }
}

.stat-card__label {
    margin-top: 10px;
    font-family: var(--f-title);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── 10. ABOUT ──────────────────────────────────────────────── */
.about { padding-block: var(--section-y); }

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

.about__text { display: flex; flex-direction: column; align-items: flex-start; }
.about__text p { color: var(--muted-l); margin-bottom: 18px; }
.about__text .section-bar { margin-left: 0; }

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--t);
}
.about__feature:hover { border-color: var(--border-h); transform: translateY(-3px); }
.about__feature-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.about__feature strong { display: block; font-size: .9rem; color: var(--white); font-family: var(--f-body); font-weight: 500; white-space: nowrap; }
.about__feature span   { font-size: .8rem; color: var(--muted); }
.about__actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-items: center;
}
.about__actions .btn { flex-shrink: 0; }

.about__feature-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(0,200,255,.10);
    border: 1px solid rgba(0,200,255,.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--elec);
}
.about__feature-icon--ora,
.about__feature-icon--pink { background: rgba(212,20,90,.12); border-color: rgba(212,20,90,.28); color: var(--pink-l); }
.about__feature-icon--vio  { background: rgba(139,53,214,.10); border-color: rgba(139,53,214,.22); color: var(--vio-l); }
.about__feature-icon--blue { background: rgba(0,128,204,.10);  border-color: rgba(0,128,204,.22);  color: #5BCFFF; }

/* Card stack visuel */
.about__card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    backdrop-filter: blur(16px);
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}
.about__card:hover { border-color: var(--border-h); transform: translateX(6px); }
.about__card--1 { border-left: 3px solid var(--elec); }
.about__card--2 { border-left: 3px solid var(--pink); }
.about__card--3 { border-left: 3px solid var(--vio-l); }

.about__card-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    border-radius: 14px;
    background: rgba(0,200,255,.10);
    border: 1px solid rgba(0,200,255,.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--elec);
}
.about__card-icon--ora,
.about__card-icon--pink { background: rgba(212,20,90,.12); border-color: rgba(212,20,90,.28); color: var(--pink-l); }
.about__card-icon--vio { background: rgba(139,53,214,.10); border-color: rgba(139,53,214,.22); color: var(--vio-l); }

.about__card-title { font-family: var(--f-body); font-size: 1rem; font-weight: 600; color: var(--white); }
.about__card-sub   { font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* ── 11. BTOB ───────────────────────────────────────────────── */
.btob {
    position: relative;
    padding-block: var(--section-y);
    background: rgba(11,14,45,.35);
}
.btob__bg-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,53,214,.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(60px);
}

.btob__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.btob__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    backdrop-filter: blur(18px);
    padding: 36px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
    box-shadow: var(--shadow-sm);
}
.btob__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--elec), var(--vio));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--t);
}
.btob__card:hover { border-color: var(--border-h); transform: translateY(-8px); box-shadow: var(--shadow), var(--glow-vio); }
.btob__card:hover::after { transform: scaleX(1); }

.btob__card-num {
    font-family: var(--f-body);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(0,200,255,.08);
    position: absolute;
    top: 12px; right: 18px;
    line-height: 1;
    letter-spacing: -.04em;
    pointer-events: none;
    user-select: none;
}

.btob__card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: rgba(0,200,255,.10);
    border: 1px solid rgba(0,200,255,.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--elec);
    margin-bottom: 20px;
    transition: var(--t);
}
.btob__card-icon--ora,
.btob__card-icon--pink { background: rgba(212,20,90,.12); border-color: rgba(212,20,90,.28); color: var(--pink-l); }
.btob__card-icon--vio { background: rgba(139,53,214,.10); border-color: rgba(139,53,214,.22); color: var(--vio-l); }
.btob__card-icon--blue{ background: rgba(0,128,204,.10);  border-color: rgba(0,128,204,.22);  color: #5BCFFF; }
.btob__card:hover .btob__card-icon { box-shadow: 0 0 24px rgba(0,200,255,.28); }

.btob__card h3 { font-size: 1.08rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.btob__card p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── 12. TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
    padding-block: var(--section-y);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    backdrop-filter: blur(18px);
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}
.testimonial-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: var(--shadow), var(--glow-elec);
}

.testimonial-card__quote-icon {
    font-size: 5rem;
    line-height: .8;
    font-family: Georgia, serif;
    color: var(--elec);
    opacity: .22;
    position: absolute;
    top: 16px; left: 24px;
    user-select: none;
    pointer-events: none;
}

.testimonial-card__text {
    font-size: .96rem;
    color: rgba(236,240,255,.85);
    line-height: 1.82;
    font-style: normal;
    flex: 1;
    padding-top: 18px;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.testimonial-card__avatar--elec { background: linear-gradient(135deg, var(--elec-d), var(--elec)); }
.testimonial-card__avatar--ora  { background: linear-gradient(135deg, var(--ora), var(--pink)); }
.testimonial-card__avatar--vio  { background: linear-gradient(135deg, var(--vio), var(--vio-l)); }

.testimonial-card__author strong { display: block; font-size: .88rem; color: var(--white); font-family: var(--f-body); font-weight: 500; }
.testimonial-card__author span   { font-size: .76rem; color: var(--muted); line-height: 1.5; }

/* ── 13. PARTNERS ───────────────────────────────────────────── */
.partners {
    padding-block: var(--section-y);
    background: rgba(11,14,45,.35);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}

.partner-logo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    min-height: 80px;
}
.partner-logo:hover { border-color: var(--border-h); transform: scale(1.04); }
.partner-logo img {
    filter: grayscale(100%) brightness(.6);
    opacity: .55;
    transition: var(--t);
    max-height: 44px;
    width: auto;
}
.partner-logo:hover img { filter: grayscale(0%) brightness(1.05); opacity: 1; }

.partners__placeholder {
    text-align: center;
    padding: 56px 32px;
    background: var(--bg-card);
    border: 1px dashed rgba(0,200,255,.22);
    border-radius: var(--r);
    color: var(--muted);
}
.partners__placeholder strong { color: var(--white); }
.partners__placeholder .btn { margin-top: 20px; }

/* ── 13b. GALERIE PHOTOS ───────────────────────────────────── */
.gallery {
    position: relative;
    padding-block: var(--section-y);
    border-top: 1px solid rgba(212,20,90,.12);
    overflow: hidden;
}
.gallery__glow {
    position: absolute;
    width: 640px; height: 640px;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212,20,90,.14) 0%, transparent 68%);
    pointer-events: none;
}
.gallery__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}
.gallery__item {
    margin: 0;
    min-height: 0;
    position: relative;   /* Frame absolute pour couvrir toute la cellule */
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(212,20,90,.22);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--t);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(212,20,90,.48);
    box-shadow: 0 12px 48px rgba(0,0,0,.5), 0 0 32px rgba(212,20,90,.18);
}
.gallery__frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery__item:hover .gallery__img { transform: scale(1.06); }
.gallery__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,14,39,.05) 0%, rgba(10,14,39,.55) 55%, rgba(10,14,39,.88) 100%),
        linear-gradient(135deg, rgba(212,20,90,.22) 0%, transparent 50%, rgba(102,45,145,.18) 100%);
    pointer-events: none;
}
.gallery__tag,
.ait-el-bilan-gallery__tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    font-family: var(--f-title);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(10,14,39,.72);
    border: 1px solid rgba(0,200,255,.25);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.gallery__item:hover .gallery__tag,
.ait-el-bilan-gallery__item:hover .ait-el-bilan-gallery__tag {
    opacity: 1;
    transform: translateY(0);
}
.gallery__item,
.ait-el-bilan-gallery__item,
.ait-bilan-photo-grid__item,
.ait-bilan-photo-block.ait-lightbox-trigger {
    cursor: zoom-in;
}
@media (max-width: 900px) {
    .gallery__mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
    .gallery__mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery__item--wide { grid-column: span 1; }
}

/* ── 14. CTA SECTION ────────────────────────────────────────── */
.cta-section {
    position: relative;
    padding-block: var(--section-y-lg);
    overflow: hidden;
}
.cta-section__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212,20,90,.22) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(102,45,145,.24) 0%, transparent 55%);
    pointer-events: none;
}
.cta-section__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.cta-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .035em;
    margin-bottom: 16px;
}
.cta-section__content { flex: 1; min-width: 280px; }
.cta-section__content p { color: var(--muted-l); max-width: 520px; margin-top: 12px; }
.cta-section__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
/* Accueil Elementor : colonne CTA — widgets bouton côte à côte */
.elementor-column.cta-section__actions > .elementor-widget-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
}
.elementor-column.cta-section__actions .elementor-widget-spacer { display: none !important; }

/* ── 15. FOOTER ─────────────────────────────────────────────── */
.site-footer {
    background: #040714;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer__glow-line,
.ait-glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--vio) 20%, var(--ora) 50%, var(--magenta) 80%, transparent 100%);
    opacity: .75;
    animation: glow-sweep 6s linear infinite;
    background-size: 200%;
}

.footer__body { padding: var(--section-y-lg) 0 var(--section-y-sm); }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer__brand .footer__logo-link {
    display: inline-block;
    margin-bottom: 16px;
    line-height: 0;
    max-width: min(320px, 85vw);
}
.footer__brand .footer__logo-img,
.footer__brand img,
.footer__brand .custom-logo {
    display: block;
    height: clamp(64px, 7.5vw, 80px);
    width: auto;
    max-width: 100%;
    opacity: .95;
}
.footer__brand .footer__logo-img:hover,
.footer__brand img:hover {
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(212,20,90,.35));
}
.footer__logo-text {
    font-family: var(--f-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}
.footer__tagline { font-size: .85rem; color: var(--muted); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }

.footer__social { display: flex; gap: 10px; }
.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,200,255,.08);
    border: 1px solid rgba(0,200,255,.20);
    display: flex; align-items: center; justify-content: center;
    color: var(--elec);
    transition: var(--t);
}
.social-icon:hover {
    background: var(--elec);
    color: var(--bg);
    box-shadow: 0 0 24px rgba(0,200,255,.40);
    transform: translateY(-3px);
}

.footer__col-title {
    font-family: var(--f-title);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a { font-size: .88rem; color: var(--muted); transition: var(--t-fast); padding-left: 0; }
.footer__nav-list a:hover { color: var(--elec); padding-left: 6px; }

.footer__info-list { display: flex; flex-direction: column; gap: 14px; }
.footer__info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}
.footer__info-list svg { flex-shrink: 0; margin-top: 3px; color: var(--elec); }
.footer__info-list a { color: var(--elec); }
.footer__info-list a:hover { color: var(--pink-l); }

.footer__bottom { border-top: 1px solid rgba(0,200,255,.08); padding: 20px 0; }
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer__copyright, .footer__credits { font-size: .8rem; color: var(--muted); }
.footer__credits a { color: var(--elec); }
.footer__credits a:hover { color: var(--pink-l); }

/* ── 16. BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--elec-d), var(--vio));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 24px rgba(0,200,255,.35);
    transition: var(--t);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 999;
    padding: 0;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    box-shadow: 0 0 48px rgba(0,200,255,.55);
    transform: translateY(-4px);
}

/* ── 17. PAGE GÉNÉRIQUE ─────────────────────────────────────── */
.page-content-wrap {
    padding-top: var(--header-h);
    min-height: 60vh;
}
.page-hero {
    position: relative;
    overflow: hidden;
    background: rgba(11,14,45,.5);
    padding-block: var(--section-y-lg) var(--section-y);
    margin-bottom: var(--section-y-sm);
}
.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--vio) 20%, var(--ora) 50%, var(--magenta) 80%, transparent 100%);
    background-size: 200% 100%;
    animation: glow-sweep 6s linear infinite;
    opacity: .75;
    z-index: 3;
    pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.page-hero .breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: var(--elec); }
.page-hero .breadcrumb a:hover { color: var(--pink-l); }

.entry-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) 80px;
}
.entry-content h2 { margin: 40px 0 16px; }
.entry-content h3 { margin: 32px 0 12px; }
.entry-content p  { margin-bottom: 20px; }
.entry-content a  { color: var(--elec); border-bottom: 1px solid rgba(0,200,255,.25); }
.entry-content a:hover { color: var(--pink-l); border-color: rgba(212,20,90,.45); }
.entry-content ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.entry-content ul li::before { content: '→'; color: var(--elec); margin-right: 10px; }

/* ── 18. 404 ────────────────────────────────────────────────── */
.error404-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-h);
}
.error404-wrap h1 { font-size: clamp(5rem, 15vw, 12rem); font-weight: 500; text-transform: uppercase; color: transparent; -webkit-text-stroke: 2px rgba(0,200,255,.35); line-height: 1; letter-spacing: .04em; }

/* ── 19. ANIMATIONS ─────────────────────────────────────────── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-16px); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0; transform: translateY(0) scaleY(.6); }
    50%       { opacity: 1; transform: translateY(8px) scaleY(1); }
}
@keyframes glow-sweep {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
[data-reveal],
.ait-el-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
[data-reveal].is-visible,
.ait-el-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 19b. THÉMATIQUES (plaquette) ───────────────────────────── */
.themes {
    padding-block: var(--section-y);
    background: rgba(13,18,64,.28);
    border-top: 1px solid rgba(249,160,27,.08);
    border-bottom: 1px solid rgba(212,20,90,.08);
}
.themes__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}
.theme-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-title);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white);
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 40px;
    backdrop-filter: blur(14px);
    transition: var(--t);
    animation: fade-up .5s ease both;
    animation-delay: var(--delay, 0ms);
}
.theme-pill:hover {
    border-color: rgba(249,160,27,.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 24px rgba(249,160,27,.15);
}
.theme-pill__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--grad-brand);
    box-shadow: 0 0 10px rgba(249,160,27,.5);
    flex-shrink: 0;
}

/* ── 19c. LIEU (plaquette) ──────────────────────────────────── */
.venue {
    position: relative;
    padding-block: var(--section-y);
    overflow: hidden;
}
.venue__glow {
    position: absolute;
    width: 700px; height: 500px;
    right: -200px; top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(212,20,90,.14) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}
.venue__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
}
.venue__content p { color: var(--muted-l); margin-bottom: 18px; }
.venue__address {
    font-family: var(--f-body);
    font-size: .92rem;
    font-weight: 400;
    color: var(--white) !important;
    line-height: 1.7 !important;
    margin: 20px 0 28px !important;
    padding: 18px 22px;
    background: var(--bg-card);
    border-left: 3px solid var(--magenta);
    border-radius: 0 var(--r) var(--r) 0;
}
/* ── Timeline journées venue ─────────────────────────────────── */
.venue__timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}
.venue__tl-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(13,18,64,.55);
    border: 1px solid rgba(147,134,191,.12);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.venue__tl-item:hover {
    transform: translateX(6px);
    border-color: rgba(147,134,191,.28);
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.venue__tl-item--1 { border-left: 3px solid #00C8FF; }
.venue__tl-item--2 { border-left: 3px solid #D4145A; background: linear-gradient(135deg, rgba(212,20,90,.1), rgba(13,18,64,.55)); }
.venue__tl-item--3 { border-left: 3px solid #662D91; }
.venue__tl-num {
    font-family: var(--f-title);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    min-width: 36px;
    flex-shrink: 0;
}
.venue__tl-item--1 .venue__tl-num { color: #00C8FF; }
.venue__tl-item--2 .venue__tl-num { color: #D4145A; }
.venue__tl-item--3 .venue__tl-num { color: #9C5EC3; }
.venue__tl-body { display: flex; flex-direction: column; gap: 8px; }
.venue__tl-day {
    font-family: var(--f-body);
    font-size: .92rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .01em;
}
.venue__tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.venue__tl-tags span {
    font-size: .72rem;
    color: var(--muted-l);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(147,134,191,.15);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* ── Carte info venue (quand pas de photo) ───────────────────── */
.venue__info-card {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px 32px;
    text-align: center;
    background: linear-gradient(160deg, rgba(18,12,52,.9), rgba(10,14,39,.95));
}
.venue__info-stars { color: #F9A01B; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 12px; }
.venue__info-name {
    font-family: var(--f-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.venue__info-sub { font-size: .82rem; color: var(--muted-l); margin-bottom: 24px; }
.venue__info-divider {
    width: 48px; height: 2px;
    background: linear-gradient(90deg, var(--magenta), var(--elec));
    border-radius: 2px;
    margin: 0 auto 24px;
}
.venue__info-stats {
    display: flex; gap: 28px;
    margin-bottom: 24px;
}
.venue__info-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.venue__info-stat-val {
    font-family: var(--f-title);
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--elec), var(--vio));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.venue__info-stat-lbl { font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.venue__info-address {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--muted-l);
    margin-bottom: 20px;
}
.venue__info-address svg { color: var(--elec); flex-shrink: 0; }
.venue__info-hint { font-size: .68rem; color: rgba(147,134,191,.3); }

/* ── 20. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .btob__grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero {
        padding-top: var(--header-h);
        min-height: auto;
        align-items: flex-start;
        padding-bottom: 32px;
    }
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 0;             /* supprime les 40-80px de padding haut */
        padding-bottom: 0;
        gap: 0;                     /* supprime le gap entre visuel et contenu */
    }
    .hero__title-line {
        white-space: normal;
    }
    .hero__title,
    .hero__title-accent {
        max-width: 100%;
        width: auto;
        margin-inline: auto;
    }
    .hero__visual {
        order: -1;
        min-height: 0;
        /* Marges négatives pour compenser les zones transparentes du PNG */
        margin-top: -12%;
        margin-bottom: -14%;
    }
    .hero__img {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-1 * var(--gutter, 20px));
        margin-right: calc(-1 * var(--gutter, 20px));
    }
    .hero__content { gap: 20px; }
    .hero__ctas, .hero__badges { justify-content: center; }
    .hero__date-badge { margin: 0 auto; }
    .about__inner { grid-template-columns: 1fr; }
    .about__features { grid-template-columns: 1fr 1fr; }
    .venue__inner { grid-template-columns: 1fr; }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .cta-section__inner { flex-direction: column; text-align: center; }
    .cta-section__actions { justify-content: center; }
    .elementor-column.cta-section__actions > .elementor-widget-wrap { justify-content: center; }
    .header__actions .header__cta { display: none; }
    .burger { display: flex; }
}

@media (max-width: 640px) {
    .hero__ctas,
    .about__actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .stats__grid   { grid-template-columns: 1fr 1fr; }
    .btob__grid    { grid-template-columns: 1fr; }
    .footer__grid  { grid-template-columns: 1fr; }
    .about__features { grid-template-columns: 1fr; }
    .hero__date-badge { flex-wrap: wrap; gap: 12px; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ── HEADER RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1440px) {
    .header__actions .header__cta { display: none; }
}
@media (max-width: 1280px) {
    :root {
        --header-logo-h: clamp(62px, 7vw, 78px);
        --header-h: max(88px, calc(var(--header-logo-h) + 20px));
    }
    .header__logo-img,
    .header__logo img,
    .header__logo .custom-logo {
        max-width: min(240px, 34vw);
    }
    .nav__list > li > a,
    .nav__list.menu-main > li > a {
        padding: 7px 8px;
        font-size: clamp(.6rem, .84vw, .72rem);
    }
}

/* ══════════════════════════════════════════════════════════════
   MENU BURGER MOBILE — overlay full-screen propre
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    :root {
        --header-logo-h: clamp(52px, 12vw, 68px);
        --header-h: max(70px, calc(var(--header-logo-h) + 20px));
    }

    /* Burger visible */
    .burger { display: flex; }
    .header__actions .header__cta { display: none; }
    .header__inner { min-height: var(--header-h); }
    .header__logo { max-width: min(220px, 52vw); }
    .header__logo-img,
    .header__logo img,
    .header__logo .custom-logo {
        max-width: min(220px, 48vw);
    }

    /* ── Nav overlay — full screen (hors backdrop-filter, ça marche !) ── */
    .header__nav {
        /* Full screen — depuis le viewport, pas le parent */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;   /* dvh = tient compte de l'URL bar mobile */
        max-width: none !important;
        max-height: none !important;
        z-index: 9990 !important;

        /* Layout colonne scrollable */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;

        /* Décale le contenu sous la barre header */
        padding: var(--header-h) 0 40px !important;
        margin: 0 !important;
        box-sizing: border-box !important;

        /* Fond glass */
        background: rgba(7,9,30,.88) !important;
        backdrop-filter: blur(20px) saturate(160%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(160%) !important;

        /* Scroll si le contenu dépasse */
        overflow-y: auto !important;
        overflow-x: hidden !important;

        /* Caché par défaut */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
    }

    /* Ouvert — actif immédiatement */
    .header__nav.is-open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s !important;
    }

    /* Header au-dessus de l'overlay */
    .site-header {
        z-index: 9999 !important;
    }

    body.admin-bar .header__nav {
        top: var(--admin-bar-h, 32px) !important;
        height: calc(100dvh - var(--admin-bar-h, 32px)) !important;
    }

    /* ── Liste principale ────────────────────────────────────── */
    .nav__list {
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 2px !important;
        margin: 0 !important;
        padding: 16px clamp(16px, 5vw, 28px) 24px !important;
        box-sizing: border-box !important;
        list-style: none !important;
        overflow: visible !important;
    }

    .nav__list > li {
        width: 100% !important;
        flex-shrink: 0 !important;
        min-width: 0 !important;
        display: block !important;
    }

    .nav__list > li > a {
        display: flex !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        font-size: .95rem !important;
        font-weight: 600 !important;
        letter-spacing: .04em !important;
        padding: 14px 18px !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-radius: 12px !important;
        border: 1px solid transparent !important;
        transition: background .15s, border-color .15s !important;
        text-transform: uppercase !important;
    }
    .nav__list > li > a:hover,
    .nav__list > li > a:focus {
        background: rgba(212,20,90,.1) !important;
        border-color: rgba(212,20,90,.2) !important;
    }

    /* Chevron du sous-menu */
    .nav__list .menu-item-has-children > a::after {
        margin-left: auto !important;
        flex-shrink: 0 !important;
        transition: transform .25s ease !important;
    }
    .nav__list .menu-item-has-children.sub-open > a {
        background: rgba(212,20,90,.14) !important;
        border-color: rgba(212,20,90,.35) !important;
        color: var(--white) !important;
    }
    .nav__list .menu-item-has-children.sub-open > a::after {
        transform: rotate(180deg) !important;
    }

    /* ── Sous-menu mobile — max-height animation, zéro décalage ── */
    .nav__list .sub-menu {
        /* Remplace display:none par max-height pour éviter le saut de layout */
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height .3s cubic-bezier(.4,0,.2,1) !important;

        /* Positionnement */
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;

        /* Style */
        background: rgba(212,20,90,.1) !important;
        border-radius: 0 0 12px 12px !important;
        margin: 0 0 4px !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: none !important;
        box-shadow: none !important;
        min-width: 0 !important;
    }
    .nav__list .sub-menu::before { display: none !important; }

    /* Sous-menu ouvert */
    .nav__list .menu-item-has-children.sub-open > .sub-menu {
        max-height: 400px !important;
        pointer-events: auto !important;
        padding: 6px !important;
    }

    .nav__list .sub-menu li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .nav__list .sub-menu li a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        color: rgba(240,244,255,.88) !important;
        font-size: .82rem !important;
        font-weight: 600 !important;
        font-family: var(--f-title) !important;
        text-transform: uppercase !important;
        letter-spacing: .06em !important;
        padding: 12px 16px !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        background: transparent !important;
        border-radius: 8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: background .15s !important;
    }
    .nav__list .sub-menu li a::before { display: none !important; }
    .nav__list .sub-menu li a:hover,
    .nav__list .sub-menu li a:focus {
        color: var(--white) !important;
        background: rgba(212,20,90,.22) !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   ELEMENTOR — Intégration complète
   ══════════════════════════════════════════════════════════════ */

/* Sections Elementor — ne pas écraser les fonds AIT (gradients JSON) */
.elementor-section:not([class*="ait-el-"]),
.e-con:not([class*="ait-el-"]) {
    background-color: transparent;
}
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: var(--layout-max);
    padding-inline: var(--layout-gutter);
}

/* Pages intérieures Elementor — même ambiance que l'accueil */
.ait-el-page,
.ait-el-page-active .site-main {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 90% 55% at 8% 0%, rgba(102,45,145,.28) 0%, transparent 55%),
        radial-gradient(ellipse 70% 45% at 92% 12%, rgba(212,20,90,.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(249,160,27,.08) 0%, transparent 55%);
    background-attachment: fixed;
}
.ait-el-page {
    position: relative;
    overflow: hidden;
}
.ait-el-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 480px at 85% 8%, rgba(212,20,90,.08) 0%, transparent 70%),
        radial-gradient(circle 400px at 10% 90%, rgba(102,45,145,.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.ait-el-page > .elementor {
    position: relative;
    z-index: 1;
}

/* Texte et titres Elementor */
.elementor-widget-heading h1.elementor-heading-title,
.elementor-widget-heading h2.elementor-heading-title,
.elementor-widget-heading .elementor-heading-title h1,
.elementor-widget-heading .elementor-heading-title h2 {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: .035em !important;
}

.elementor-widget-heading .elementor-heading-title,
.elementor-widget-heading .elementor-heading-title h3,
.elementor-widget-heading .elementor-heading-title h4 {
    font-family: var(--f-body) !important;
    color: var(--white) !important;
    letter-spacing: -.02em !important;
}
.elementor-widget-heading .section-eyebrow,
.elementor-widget-heading .section-eyebrow--brand,
.elementor-widget-heading .elementor-heading-title.section-eyebrow,
.elementor-widget-heading .elementor-heading-title.section-eyebrow--brand {
    font-family: var(--f-title) !important;
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
    font-family: var(--f-body) !important;
    font-weight: 400 !important;
    color: var(--muted-l) !important;
    line-height: 1.8 !important;
}

/* Boutons Elementor */
.elementor-button-wrapper .elementor-button,
.elementor-widget-button .elementor-button {
    font-family: var(--f-title) !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    transition: var(--t) !important;
}
.elementor-button.elementor-size-md { padding: 13px 32px !important; }
.elementor-button.elementor-size-lg { padding: 16px 40px !important; }

/* Bouton principal Elementor → dégradé orange-rouge */
.elementor-widget-button .elementor-button:not(.elementor-button-outline) {
    background: var(--grad-primary) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 5px 28px rgba(236,79,20,.38) !important;
}
.elementor-widget-button .elementor-button:not(.elementor-button-outline):hover {
    transform: translateY(-3px) scale(1.025) !important;
    box-shadow: 0 10px 42px rgba(221,50,76,.4) !important;
    color: #fff !important;
}

/* Bouton secondaire/outline Elementor → dégradé violet-indigo */
.elementor-widget-button .elementor-button.elementor-button-outline,
.elementor-widget-button .elementor-button-outline {
    background: var(--grad-secondary) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 5px 24px rgba(95,92,198,.32) !important;
}
.elementor-widget-button .elementor-button.elementor-button-outline:hover {
    transform: translateY(-3px) scale(1.025) !important;
    box-shadow: 0 10px 36px rgba(95,92,198,.5) !important;
    color: #fff !important;
}

/* Séparateurs Elementor */
.elementor-widget-divider .elementor-divider-separator {
    border-color: var(--border) !important;
}

/* Images Elementor */
.elementor-widget-image img {
    border-radius: var(--r) !important;
    transition: var(--t) !important;
}
.elementor-widget-image:hover img { transform: scale(1.02) !important; }

/* Icônes Elementor */
.elementor-icon, .elementor-icon i, .elementor-icon svg {
    color: var(--elec) !important;
    fill: var(--elec) !important;
    transition: var(--t) !important;
}
.elementor-icon:hover i, .elementor-icon:hover svg {
    color: var(--pink-l) !important;
    fill: var(--pink-l) !important;
}

/* Icon Box Elementor — transformer en card premium */
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    padding: 32px 26px !important;
    backdrop-filter: blur(18px) !important;
    transition: var(--t) !important;
    box-shadow: var(--shadow-sm) !important;
}
.elementor-widget-icon-box .elementor-icon-box-wrapper:hover {
    border-color: var(--border-h) !important;
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow), var(--glow-elec) !important;
}
.elementor-widget-icon-box .elementor-icon-box-title,
.elementor-widget-icon-box .elementor-icon-box-title a {
    font-family: var(--f-body) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
}
.elementor-widget-icon-box .elementor-icon-box-description {
    color: var(--muted-l) !important;
    font-size: .9rem !important;
}

/* Testimonials Elementor */
.elementor-widget-testimonial .elementor-testimonial-content {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-left: 3px solid var(--elec) !important;
    border-radius: var(--r) !important;
    color: rgba(236,240,255,.88) !important;
    font-style: normal !important;
    padding: 28px 32px !important;
    backdrop-filter: blur(16px) !important;
}
.elementor-widget-testimonial .elementor-testimonial-name {
    font-family: var(--f-body) !important;
    color: var(--elec) !important;
    font-weight: 600 !important;
}
.elementor-widget-testimonial .elementor-testimonial-job { color: var(--muted) !important; }

/* Counter Elementor */
.elementor-widget-counter .elementor-counter-number-wrapper {
    font-family: var(--f-body) !important;
    color: var(--elec) !important;
    text-shadow: 0 0 40px rgba(0,200,255,.30) !important;
}
.elementor-widget-counter .elementor-counter-title {
    font-family: var(--f-title) !important;
    color: var(--muted) !important;
    font-size: .8rem !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
}

/* Progress Bar Elementor */
.elementor-widget-progress .elementor-progress-bar {
    background: linear-gradient(90deg, var(--elec-d), var(--vio)) !important;
    border-radius: 4px !important;
    box-shadow: 0 0 16px rgba(0,200,255,.35) !important;
}
.elementor-widget-progress .elementor-progress-wrapper {
    background: rgba(12,16,53,.70) !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
}

/* Accordion Elementor */
.elementor-widget-accordion .elementor-accordion-item {
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    margin-bottom: 8px !important;
    overflow: hidden !important;
    transition: var(--t) !important;
}
.elementor-widget-accordion .elementor-accordion-item:hover { border-color: var(--border-h) !important; }
.elementor-widget-accordion .elementor-tab-title {
    background: transparent !important;
    color: var(--white) !important;
    font-family: var(--f-body) !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 18px 24px !important;
}
.elementor-widget-accordion .elementor-tab-content {
    color: var(--muted-l) !important;
    border: none !important;
    padding: 0 24px 20px !important;
}
.elementor-widget-accordion .elementor-tab-title .elementor-accordion-icon { color: var(--elec) !important; }

/* Tabs Elementor */
.elementor-widget-tabs .elementor-tab-title { color: var(--muted) !important; font-family: var(--f-title) !important; }
.elementor-widget-tabs .elementor-tab-title.elementor-active { color: var(--elec) !important; }
.elementor-widget-tabs .elementor-tabs-content-wrapper { background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: var(--r) !important; color: var(--muted-l) !important; }

/* Formulaire Elementor */
.elementor-widget-form .elementor-field-group input,
.elementor-widget-form .elementor-field-group select,
.elementor-widget-form .elementor-field-group textarea {
    background: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 10px !important;
    color: var(--form-field-text) !important;
    font-family: var(--f-body) !important;
    padding: 13px 16px !important;
    transition: var(--t) !important;
    color-scheme: light !important;
}
.elementor-widget-form .elementor-field-group input:focus,
.elementor-widget-form .elementor-field-group textarea:focus,
.elementor-widget-form .elementor-field-group select:focus {
    border-color: var(--form-field-border-focus) !important;
    background: var(--form-field-bg-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    outline: none !important;
    color: var(--form-field-text) !important;
}
.elementor-widget-form .elementor-field-label { font-family: var(--f-title) !important; color: #9386bf !important; font-size: .78rem !important; text-transform: none !important; letter-spacing: .03em !important; }
.elementor-widget-form .elementor-button { background: var(--grad-brand) !important; color: #fff !important; box-shadow: 0 5px 28px rgba(212,20,90,.35) !important; }
.elementor-widget-form .elementor-button:hover { transform: translateY(-3px) scale(1.025) !important; box-shadow: 0 10px 40px rgba(212,20,90,.48) !important; }

/* Galerie Elementor */
.elementor-widget-image-gallery .gallery-item img,
.elementor-widget-gallery .elementor-gallery-item__image {
    border-radius: var(--r) !important;
    transition: var(--t) !important;
}
.elementor-widget-image-gallery .gallery-item:hover img { transform: scale(1.04) !important; }

/* Social Icons Elementor */
.elementor-widget-social-icons .elementor-social-icon {
    background: rgba(0,200,255,.08) !important;
    border: 1px solid rgba(0,200,255,.22) !important;
    border-radius: 50% !important;
    transition: var(--t) !important;
    color: var(--elec) !important;
}
.elementor-widget-social-icons .elementor-social-icon:hover {
    background: var(--elec) !important;
    border-color: var(--elec) !important;
    box-shadow: 0 0 24px rgba(0,200,255,.40) !important;
    transform: translateY(-3px) !important;
}
.elementor-widget-social-icons .elementor-social-icon i { color: inherit !important; }

/* ══════════════════════════════════════════════════════════════
   GUTENBERG BLOCKS — Styles dans le front-end
   ══════════════════════════════════════════════════════════════ */

/* Alignements large/full */
.wp-block-group, .wp-block-cover, .wp-block-media-text { background: transparent !important; }
.alignwide  { max-width: 1140px; }
.alignfull  { max-width: 100%; }

/* Headings blocks */
.wp-block-heading { color: var(--white) !important; font-family: var(--f-body) !important; }
.wp-block-heading:is(h1, h2),
h1.wp-block-heading,
h2.wp-block-heading {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: .035em !important;
}

/* Paragraph */
.wp-block-paragraph { color: var(--muted-l) !important; line-height: 1.8 !important; }

/* Quote */
.wp-block-quote {
    background: var(--bg-card) !important;
    border: none !important;
    border-left: 3px solid var(--elec) !important;
    border-radius: 0 var(--r) var(--r) 0 !important;
    padding: 24px 28px !important;
    margin: 28px 0 !important;
}
.wp-block-quote p { color: rgba(236,240,255,.88) !important; font-size: 1.05rem !important; font-style: italic !important; }
.wp-block-quote cite { color: var(--elec) !important; font-size: .85rem !important; font-style: normal !important; }

/* Lists */
.wp-block-list { color: var(--muted-l) !important; }
.wp-block-list li::marker { color: var(--elec) !important; }

/* Image block */
.wp-block-image img { border-radius: var(--r) !important; }
.wp-block-image figcaption { color: var(--muted) !important; font-size: .82rem !important; text-align: center !important; margin-top: 8px !important; }

/* Buttons block */
.wp-block-button__link {
    font-family: var(--f-title) !important;
    font-weight: 600 !important;
    font-size: .82rem !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    background: var(--grad-brand) !important;
    color: #fff !important;
    box-shadow: 0 5px 28px rgba(212,20,90,.35) !important;
    border: none !important;
    padding: 13px 32px !important;
    transition: var(--t) !important;
}
.wp-block-button__link:hover { transform: translateY(-2px) !important; box-shadow: 0 10px 40px rgba(212,20,90,.50) !important; }
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    border: 1.5px solid var(--elec) !important;
    color: var(--elec) !important;
    box-shadow: 0 0 20px rgba(0,200,255,.12) !important;
}

/* Separator */
.wp-block-separator { border: none !important; border-top: 1px solid var(--border) !important; margin: 40px auto !important; }

/* Table */
.wp-block-table table { width: 100%; border-collapse: collapse; }
.wp-block-table th { background: rgba(0,200,255,.10) !important; color: var(--white) !important; font-family: var(--f-title) !important; font-size: .82rem !important; letter-spacing: .08em !important; text-transform: uppercase !important; padding: 12px 16px !important; border-bottom: 1px solid var(--border) !important; }
.wp-block-table td { color: var(--muted-l) !important; padding: 12px 16px !important; border-bottom: 1px solid rgba(0,200,255,.08) !important; }
.wp-block-table tr:hover td { background: rgba(0,200,255,.04) !important; }

/* Cover block */
.wp-block-cover { border-radius: var(--r) !important; overflow: hidden !important; }
.wp-block-cover__inner-container { color: var(--white) !important; }

/* Columns */
.wp-block-columns { gap: 24px !important; }
.wp-block-column { padding: 0 !important; }

/* Code / Preformatted */
.wp-block-code, .wp-block-preformatted {
    background: rgba(12,16,53,.85) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    color: var(--elec) !important;
    font-size: .88rem !important;
    padding: 20px 24px !important;
}

/* Gravity Forms dans Elementor et pages standards */
/* ══ GRAVITY FORMS — Style global premium (tous les formulaires du site) ══ */
.gform_wrapper { background: transparent !important; }
.gform_wrapper .gform_body { background: transparent !important; }

/* Labels */
.gform_wrapper .gfield_label {
    font-family: var(--f-body) !important;
    font-size: .8rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
    margin-bottom: 7px !important;
    display: block !important;
}
/* Champs texte / email / tel / textarea / date / etc. */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="time"],
.gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="file"]),
.gform_wrapper textarea {
    background-color: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: var(--form-field-text) !important;
    -webkit-text-fill-color: var(--form-field-text) !important;
    padding: 14px 18px !important;
    font-family: var(--f-body) !important;
    font-size: .95rem !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color-scheme: light !important;
}
/* Select — fond clair + flèche sombre */
.gform_wrapper select {
    background-color: var(--form-field-bg) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A0E27' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 12px 8px !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: #0A0E27 !important;
    -webkit-text-fill-color: #0A0E27 !important;
    opacity: 1 !important;
    padding: 14px 42px 14px 18px !important;
    font-family: var(--f-body) !important;
    font-size: .95rem !important;
    line-height: 1.5 !important;
    min-height: 52px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    color-scheme: light !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease !important;
}
.gform_wrapper select option {
    background-color: var(--form-field-bg) !important;
    color: var(--form-field-text) !important;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: var(--form-field-placeholder) !important; }
.gform_wrapper input:focus:not([type="submit"]),
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: var(--form-field-border-focus) !important;
    background-color: var(--form-field-bg-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    outline: none !important;
    color: #0A0E27 !important;
    -webkit-text-fill-color: #0A0E27 !important;
}
.gform_wrapper .ginput_container_select select,
.gform_wrapper .address_country select {
    color: #0A0E27 !important;
    -webkit-text-fill-color: #0A0E27 !important;
}
/* Espacement entre champs */
.gform_wrapper .gfield { margin-bottom: 14px !important; padding: 0 !important; }
/* Bouton */
.gform_wrapper .gform_button, .gform_wrapper input[type="submit"] {
    background: linear-gradient(90deg, #f38e07, #ec4f14, #dd324c) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 36px !important;
    font-family: var(--f-title) !important;
    font-weight: 700 !important;
    font-size: .88rem !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 8px 32px rgba(236,79,20,.4) !important;
    transition: transform .25s, box-shadow .25s !important;
    width: 100% !important;
    margin-top: 8px !important;
}
.gform_wrapper .gform_button:hover, .gform_wrapper input[type="submit"]:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 16px 48px rgba(236,79,20,.52) !important;
}
/* Validation */
.gform_wrapper .gfield_required { color: #e8428c !important; font-size: .85em !important; }
.gform_wrapper .validation_message { color: #e8428c !important; font-size: .78rem !important; margin-top: 4px !important; }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error .chosen-single { border-color: rgba(232,66,140,.6) !important; box-shadow: 0 0 0 3px rgba(232,66,140,.12) !important; }

/* ── CHOSEN.JS — champ pays Gravity Forms ────────────────────── */
.gform_wrapper .chosen-container { width: 100% !important; }
.gform_wrapper .chosen-container-single .chosen-single {
    background: var(--form-field-bg) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A0E27' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 12px 8px !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: var(--form-field-text) !important;
    padding: 14px 42px 14px 18px !important;
    font-family: var(--f-body) !important;
    font-size: .95rem !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}
.gform_wrapper .chosen-container-single .chosen-single span {
    color: var(--form-field-text) !important;
    font-family: var(--f-body) !important;
    font-size: .95rem !important;
    display: block !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    margin-right: 0 !important;
}
.gform_wrapper .chosen-container-single .chosen-single div { display: none !important; }
.gform_wrapper .chosen-container-active .chosen-single,
.gform_wrapper .chosen-container-single.chosen-with-drop .chosen-single {
    border-color: var(--form-field-border-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    background-color: var(--form-field-bg-focus) !important;
    border-radius: 14px 14px 0 0 !important;
}
.gform_wrapper .chosen-drop {
    background: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-top: none !important;
    border-radius: 0 0 14px 14px !important;
    box-shadow: 0 12px 32px rgba(10,14,39,.12) !important;
    margin-top: -1px !important;
}
.gform_wrapper .chosen-search input {
    background: var(--form-field-bg) !important;
    border: 1px solid var(--form-field-border) !important;
    border-radius: 8px !important;
    color: var(--form-field-text) !important;
    padding: 8px 12px !important;
    font-family: var(--f-body) !important;
    font-size: .9rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.gform_wrapper .chosen-results { color: var(--form-field-text) !important; max-height: 240px !important; }
.gform_wrapper .chosen-results li { padding: 10px 16px !important; font-size: .92rem !important; }
.gform_wrapper .chosen-results li.highlighted {
    background: rgba(10,14,39,.06) !important;
    color: var(--form-field-text) !important;
}
.gform_wrapper .chosen-results li.result-selected {
    color: var(--form-field-text) !important;
    background: rgba(10,14,39,.04) !important;
}
.gform_wrapper .gform_confirmation_message {
    color: #9c90cc; font-size: 1rem; text-align: center;
    padding: 32px 24px;
    background: rgba(147,134,191,.06); border-radius: 16px; border: 1px solid rgba(147,134,191,.2);
}
/* Masquer le champ de confirmation d'email (un seul champ email visible) */
.gform_wrapper .ginput_container_email .ginput_right {
    display: none !important;
}
.gform_wrapper .ginput_container_email .ginput_left {
    width: 100% !important;
    float: none !important;
    padding-right: 0 !important;
}
.gform_wrapper .ginput_container_email {
    display: block !important;
}
/* (fin styles globaux GravityForms) */
.gform_wrapper .validation_error,
.gform_wrapper .gform_validation_errors {
    background: rgba(232,66,140,.10) !important;
    border: 1px solid rgba(232,66,140,.35) !important;
    border-radius: 10px !important;
    color: #e8428c !important;
    padding: 16px 20px !important;
}
.gform_wrapper .gform_validation_errors h2,
.gform_wrapper .validation_error h2,
.gform_wrapper .gform_validation_errors *,
.gform_wrapper .validation_error * { color: #e8428c !important; }
.gform_wrapper .gfield_description { color: var(--muted) !important; font-size: .82rem !important; margin-top: 4px !important; }

/* Autocomplete navigateur — fond clair conservé */
.gform_wrapper input:-webkit-autofill,
.gform_wrapper input:-webkit-autofill:hover,
.gform_wrapper input:-webkit-autofill:focus,
.gform_wrapper textarea:-webkit-autofill,
.gform_wrapper textarea:-webkit-autofill:focus,
.gform_wrapper select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--form-field-bg-focus) inset !important;
    -webkit-text-fill-color: var(--form-field-text) !important;
    caret-color: var(--form-field-text) !important;
    border: 1.5px solid var(--form-field-border) !important;
    color: var(--form-field-text) !important;
}

/* ── Contenu nettoyé Fusion Builder ─────────────────────────── */

/* Checklist convertie */
.ait-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}
.ait-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted-l);
    font-size: .95rem;
    line-height: 1.7;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: var(--t);
}
.ait-checklist li::before {
    content: '';
    display: block;
    width: 8px; height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--elec);
    box-shadow: 0 0 12px rgba(0,200,255,.45);
    margin-top: 7px;
}
.ait-checklist li:hover {
    border-color: var(--border-h);
    transform: translateX(4px);
}

/* Image convertie */
.ait-content-img {
    margin: 28px 0;
}
.ait-content-img img {
    width: 100%;
    border-radius: var(--r) !important;
    box-shadow: var(--shadow) !important;
}

/* Séparateur converti */
.ait-sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}

/* Page hero intro */
.page-hero__intro {
    color: var(--muted-l);
    font-size: 1.08rem;
    max-width: 600px;
    margin-top: 14px;
    line-height: 1.75;
}

/* Notice admin */
.ait-admin-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 40px 0 0;
    padding: 14px 20px;
    background: rgba(139,53,214,.10);
    border: 1px solid rgba(139,53,214,.30);
    border-radius: 10px;
    font-size: .85rem;
    color: var(--muted-l);
}
.ait-admin-notice svg { color: var(--vio-l); flex-shrink: 0; }
.ait-admin-notice a {
    color: var(--elec);
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
}
.ait-admin-notice a:hover { color: var(--pink-l); }

/* ── Nettoyage shortcodes Avada résiduels ─────────────────── */
/* Si des pages contiennent encore des shortcodes Fusion Builder non parsés */
.fusion-fullwidth, .fusion-row, .fusion-column,
[class^="fusion-"], [class*=" fusion-"] { background: transparent !important; }
.fusion-column-wrapper { display: block !important; }

/* ══════════════════════════════════════════════════════════════
   ELEMENTOR AIT — Sections premium v3 (aligné homepage)
   ══════════════════════════════════════════════════════════════ */
.elementor-section.ait-el-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #0A0E27 0%, #111848 45%, #1a0a30 100%) !important;
    /* main.ait-el-page-main fournit déjà 96px — espace contenu sous le header */
    padding-top: var(--section-y-hero-top) !important;
    padding-bottom: var(--section-y-hero-bottom) !important;
}
.elementor-section.ait-el-hero::before {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(212,20,90,.22) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.elementor-section.ait-el-hero::after,
.elementor-section.ait-bilan-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--vio) 20%, var(--ora) 50%, var(--magenta) 80%, transparent 100%);
    background-size: 200% 100%;
    animation: glow-sweep 6s linear infinite;
    opacity: .75;
    z-index: 3;
    pointer-events: none;
}
.elementor-section.ait-el-hero > .elementor-container { position: relative; z-index: 1; }
.elementor-section.ait-el-hero .elementor-heading-title {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.elementor-section.ait-el-hero h1.elementor-heading-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: .035em !important;
}
/* Widget HTML orphelin (SVG flèche bouton seul) — toutes pages Elementor */
.ait-el-page .elementor-widget-html .elementor-widget-container > svg.btn__arrow:only-child,
.ait-el-page .elementor-widget-html .elementor-widget-container svg.btn__arrow:only-child,
.ait-el-page .elementor-widget-html .elementor-widget-container:not(:has(a, p, h1, h2, h3, h4, span.section-eyebrow, span.section-bar, span.ait-el-anchor, .section-eyebrow, .section-bar, .ait-el-anchor)),
.ait-el-hero .elementor-widget-html .elementor-widget-container > svg.btn__arrow:only-child,
.ait-el-hero .elementor-widget-html .elementor-widget-container svg.btn__arrow:only-child,
.ait-el-hero .elementor-widget-html .elementor-widget-container:not(:has(a, p, h1, h2, h3, span, div)) {
    display: none !important;
}
.ait-partner-form-sec .elementor-widget-html svg,
.ait-el-form .elementor-widget-html svg,
.elementor-widget-button .elementor-button svg.btn__arrow {
    display: none !important;
}
.header__cta svg,
.header__cta .btn__arrow {
    display: none !important;
}
/* H1 bilan hero — même gradient que les autres pages hero */
.elementor-section.ait-bilan-hero h1.elementor-heading-title {
    background: var(--grad-text) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: .035em !important;
}
/* Titres h2+ : blanc accueil (pas de dégradé) */
.elementor-section.ait-el-hero h2.elementor-heading-title,
.elementor-section.ait-el-hero h3.elementor-heading-title,
.elementor-section:not(.ait-el-hero) .elementor-heading-title {
    background: none !important;
    -webkit-text-fill-color: #F0F4FF !important;
    color: #F0F4FF !important;
    font-family: var(--f-body) !important;
}
.elementor-section:not(.ait-el-hero) h2.elementor-heading-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: .035em !important;
    margin-bottom: 4px !important;
}

/* ── Parité accueil : eyebrows, barres, badges ── */
.ait-el-page .section-eyebrow,
.ait-el-page .section-eyebrow--brand {
    margin-bottom: 16px;
}
.ait-el-page .section-bar {
    display: block;
    margin: 12px 0 20px;
}
.ait-el-page .elementor-widget-heading:has(.section-eyebrow),
.ait-el-page .elementor-widget-html:has(.section-eyebrow) {
    margin-bottom: 0;
}
/* Fallback anciens templates (h6 rose sans pill) */
.ait-el-page .elementor-widget-heading h6.elementor-heading-title {
    display: inline-block !important;
    font-family: var(--f-title) !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: var(--pink-l) !important;
    padding: 5px 14px !important;
    border: 1px solid rgba(212,20,90,.42) !important;
    border-radius: 30px !important;
    background: rgba(212,20,90,.10) !important;
    box-shadow: 0 0 24px rgba(212,20,90,.12);
    margin-bottom: 16px !important;
    -webkit-text-fill-color: var(--pink-l) !important;
}
/* Fallback divider Elementor → barre dégradée accueil */
.ait-el-page .elementor-widget-divider .elementor-divider {
    padding: 0 !important;
    margin: 12px 0 20px !important;
}
.ait-el-page .elementor-widget-divider .elementor-divider-separator {
    width: 64px !important;
    max-width: 64px !important;
    height: 3px !important;
    border: none !important;
    border-radius: 2px !important;
    background: var(--grad-bar) !important;
    box-shadow: 0 0 16px rgba(212,20,90,.32);
}
.ait-el-page [style*="text-align: center"] .section-bar,
.ait-el-page .elementor-align-center .section-bar {
    margin-left: auto;
    margin-right: auto;
}
/* Badges thématiques & invités = hero */
.ait-el-page .ait-el-theme-badges,
.ait-el-page .ait-el-guest-pills.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 960px;
    margin: 0 auto;
}
.ait-el-page .hero__badges .badge {
    font-family: var(--f-title);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}
/* Stats = grille accueil */
.ait-el-page .ait-el-stats-grid.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .ait-el-page .ait-el-stats-grid.stats__grid { grid-template-columns: repeat(2, 1fr); }
}

.elementor-section.ait-el-mesh {
    position: relative;
    background: linear-gradient(165deg, #0A0E27 0%, #0D1240 55%, #0A0E27 100%) !important;
}
.elementor-section.ait-el-mesh::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212,20,90,.06) 0%, transparent 60%);
    pointer-events: none;
}

.elementor-section.ait-el-section-alt {
    background: linear-gradient(180deg, rgba(102,45,145,.08) 0%, transparent 50%, rgba(212,20,90,.05) 100%) !important;
    border-top: none !important;
    border-bottom: none !important;
    backdrop-filter: none;
}

.elementor-section.ait-el-section-glow {
    background: linear-gradient(135deg, rgba(13,18,64,.6) 0%, rgba(26,10,48,.5) 50%, rgba(13,18,64,.6) 100%) !important;
    border-top: none !important;
    position: relative;
    overflow: hidden;
}
.elementor-section.ait-el-section-glow::after {
    content: '';
    position: absolute;
    width: 100%; height: 1px;
    bottom: 0; left: 0;
    background: linear-gradient(90deg, transparent, rgba(212,20,90,.45), rgba(249,160,27,.35), transparent);
    opacity: .7;
}

.elementor-section.ait-el-stats {
    background: transparent !important;
    padding-top: 0 !important;
}

/* Chiffres clés : accueil uniquement (pas les pages intérieures Elementor) */
.ait-el-page .elementor-section.ait-el-stats {
    display: none !important;
}

.elementor-column.ait-el-card-col,
.elementor-column.ait-el-card-col > .elementor-widget-wrap {
    transition: var(--t);
    background: var(--bg-card) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    box-shadow: var(--shadow-sm) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.elementor-column.ait-el-card-col:hover {
    transform: translateY(-6px);
    border-color: var(--border-h) !important;
    box-shadow: var(--shadow), var(--glow-elec) !important;
}

.elementor-section.ait-el-stats .elementor-heading-title {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
}

.elementor-section.ait-el-form .gform_wrapper {
    margin-top: 8px;
}

/* Icon box — style about__card accueil */
.elementor-widget-icon-box .elementor-icon-box-wrapper {
    background: rgba(13,18,64,.4) !important;
    border: 1px solid var(--border) !important;
    border-left: 3px solid var(--pink-l) !important;
    border-radius: var(--r) !important;
    padding: 24px 22px !important;
    height: 100%;
    transition: var(--t) !important;
    box-shadow: none !important;
}
.elementor-widget-icon-box .elementor-icon-box-wrapper:hover {
    border-color: var(--border-h) !important;
    border-left-color: var(--ora) !important;
    transform: translateX(4px) !important;
    box-shadow: var(--shadow-sm) !important;
}
.elementor-widget-icon-box .elementor-icon-box-title { font-family: var(--f-body) !important; }

/* Icon list spacing */
.elementor-widget-icon-list .elementor-icon-list-item { padding: 6px 0 !important; }

/* Buttons in elementor pages */
.elementor-section.ait-el-hero .elementor-button,
.elementor-section.ait-el-section-glow .elementor-button {
    font-family: var(--f-title) !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
}

/* Grille 2 colonnes formulaire */
.elementor-section.ait-el-2col .elementor-column-gap-default > .elementor-row {
    align-items: stretch;
}

/* Animation subtile au scroll (Elementor) */
.elementor-section.ait-el-card-col,
.elementor-column.ait-el-card-col {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.elementor-widget-heading h6.elementor-heading-title {
    margin-bottom: 0 !important;
}

/* Liens dans text-editor */
.elementor-widget-text-editor a {
    color: var(--c-electric);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,200,255,.35);
    transition: var(--t);
}
.elementor-widget-text-editor a:hover {
    color: var(--c-gold);
    border-bottom-color: var(--c-gold);
}

/* Tags thématiques (pages programme / invité) */
.ait-el-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 920px;
    margin: 0 auto;
}
.ait-el-tag {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(13,18,64,.72);
    border: 1px solid rgba(212,20,90,.28);
    color: #9AA3C2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: var(--t);
}
.ait-el-tag:hover {
    border-color: rgba(249,160,27,.5);
    color: #F0F4FF;
    box-shadow: 0 4px 24px rgba(212,20,90,.15);
}

/* Grille logos partenaires */
.ait-el-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.ait-el-logo-slot {
    aspect-ratio: 16 / 10;
    border: 1px dashed rgba(0,200,255,.22);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7394;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(13,18,64,.45);
    transition: var(--t);
}
.ait-el-logo-slot:hover {
    border-color: rgba(212,20,90,.4);
    color: #9AA3C2;
}

/* Formulaires Gravity — cartes premium */
.elementor-column.ait-el-form,
.elementor-column.ait-el-form .elementor-widget-wrap {
    border-color: rgba(212,20,90,.22) !important;
}
.elementor-section.ait-el-form .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.elementor-section.ait-el-form .gform_wrapper textarea,
.elementor-section.ait-el-form .gform_wrapper select {
    background: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 12px !important;
    color: var(--form-field-text) !important;
    color-scheme: light !important;
}
.elementor-section.ait-el-form .gform_wrapper input:focus:not([type="submit"]),
.elementor-section.ait-el-form .gform_wrapper textarea:focus,
.elementor-section.ait-el-form .gform_wrapper select:focus {
    border-color: var(--form-field-border-focus) !important;
    background: var(--form-field-bg-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    color: var(--form-field-text) !important;
}

/* ── Devenir Invité : 3 formules ───────────────────────────── */
.invite-formulas__lead {
    text-align: center;
    font-family: var(--f-body);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--ora);
    margin-bottom: clamp(28px, 4vw, 40px);
}
.invite-formulas__lead strong { color: var(--ora); font-weight: 700; }

.invite-formulas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    align-items: stretch;
}

.invite-formula-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(24px, 3vw, 32px);
    background: rgba(240,244,255,.94);
    border: 1px solid rgba(240,244,255,.12);
    border-radius: var(--r);
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    transition: var(--t);
    min-height: 100%;
}
.invite-formula-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 56px rgba(0,0,0,.45), 0 0 32px rgba(249,160,27,.12);
}

.invite-formula-card__title {
    font-family: var(--f-body);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--bg);
    line-height: 1.25;
    margin: 0;
}

.invite-formula-card__desc {
    flex: 1;
    font-family: var(--f-body);
    font-size: .92rem;
    font-weight: 400;
    line-height: 1.7;
    color: #3a4260;
    margin: 0;
}

.invite-formula-card__btn {
    align-self: flex-start;
    margin-top: auto;
    font-size: .78rem !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    letter-spacing: .06em !important;
}

.elementor-section.ait-el-invite-formulas {
    padding-block: var(--section-y) !important;
}

@media (max-width: 900px) {
    .invite-formulas { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .invite-formula-card__btn { align-self: stretch; justify-content: center; }
}

/* ── Inscription invité : formulaire large (aligné Devenir Partenaire) ── */
.elementor-section.ait-el-form-wide {
    padding-block: var(--section-y) !important;
}
.elementor-section.ait-el-hero + .elementor-section.ait-el-form-wide,
.elementor-section.ait-el-hero + .elementor-section.ait-partner-form-sec,
body.ait-inscription-page .elementor-section.ait-el-hero + .elementor-section {
    padding-top: var(--section-y-sm) !important;
}
.elementor-section.ait-el-form-wide .elementor-container,
body.ait-inscription-page .elementor-section:has(.gform_wrapper) .elementor-container {
    max-width: var(--layout-max) !important;
    padding-inline: var(--layout-gutter);
}
.elementor-section.ait-el-form-wide .elementor-column,
body.ait-inscription-page .elementor-section:has(.gform_wrapper) .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
}
.elementor-column.ait-el-form-wide-col > .elementor-widget-wrap {
    padding: clamp(24px, 4vw, 48px) !important;
}
.elementor-section.ait-el-form-wide .gform_wrapper,
body.ait-inscription-page .gform_wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
}
.elementor-section.ait-el-form-wide .gform_wrapper .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-html,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-section,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-textarea,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--width-full,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-name,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-email,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-address,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-select,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield--type-phone,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield.gfield_contains_required.gfield--type-consent,
.elementor-section.ait-el-form-wide .gform_wrapper .gfield.gfield--type-checkbox,
body.ait-inscription-page .gform_wrapper .gfield--type-html,
body.ait-inscription-page .gform_wrapper .gfield--type-section,
body.ait-inscription-page .gform_wrapper .gfield--type-textarea,
body.ait-inscription-page .gform_wrapper .gfield--width-full,
body.ait-inscription-page .gform_wrapper .gfield--type-name,
body.ait-inscription-page .gform_wrapper .gfield--type-email,
body.ait-inscription-page .gform_wrapper .gfield--type-address,
body.ait-inscription-page .gform_wrapper .gfield--type-select,
body.ait-inscription-page .gform_wrapper .gfield--type-phone,
body.ait-inscription-page .gform_wrapper .gfield.gfield_contains_required.gfield--type-consent,
body.ait-inscription-page .gform_wrapper .gfield.gfield--type-checkbox {
    grid-column: 1 / -1;
}
.elementor-section.ait-el-form-wide .gform_wrapper .gform_footer,
body.ait-inscription-page .gform_wrapper .gform_footer {
    grid-column: 1 / -1;
    margin-top: 8px;
}
body.ait-inscription-page .elementor-section:has(.gform_wrapper) .elementor-column > .elementor-widget-wrap {
    background: linear-gradient(160deg, rgba(18,12,52,.82) 0%, rgba(10,14,39,.92) 100%) !important;
    border: 1px solid rgba(147,134,191,.18) !important;
    border-radius: 28px !important;
    padding: clamp(24px, 4vw, 56px) !important;
    backdrop-filter: blur(24px) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 32px 80px rgba(0,0,0,.55),
        0 0 120px rgba(61,52,139,.12) !important;
}
body.ait-inscription-page .gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 28px !important;
}
@media (max-width: 768px) {
    .elementor-section.ait-el-form-wide .gform_wrapper .gform_fields,
    body.ait-inscription-page .gform_wrapper .gform_fields {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   ACCÉLÉRATEUR DE BUSINESS — layout 2 cols HTML natif
   ══════════════════════════════════════════════════════════════ */
.ait-accelerateur-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.ait-accelerateur-grid__text { }
.ait-accelerateur-grid__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ait-accelerateur-grid__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #C8D0E8;
    font-size: .97rem;
    line-height: 1.6;
}
.ait-accelerateur-grid__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}
@media (max-width: 900px) {
    .ait-accelerateur-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ══════════════════════════════════════════════════════════════
   FORMULAIRES PREMIUM — Partenaire, Contact, Invité
   ══════════════════════════════════════════════════════════════ */

/* ── Wrapper card glassmorphism ─────────────────────────────────── */
.elementor-column.ait-partner-form-col > .elementor-widget-wrap,
.elementor-column.ait-partner-form-col--full > .elementor-widget-wrap,
.elementor-column.ait-el-form-wide-col > .elementor-widget-wrap {
    background: linear-gradient(160deg, rgba(18,12,52,.82) 0%, rgba(10,14,39,.92) 100%) !important;
    border: 1px solid rgba(147,134,191,.18) !important;
    border-radius: 28px !important;
    padding: 28px clamp(28px, 4vw, 56px) !important;
    backdrop-filter: blur(24px) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 32px 80px rgba(0,0,0,.55),
        0 0 120px rgba(61,52,139,.12) !important;
}

/* ── Layout 2 colonnes pour le formulaire full-width ───────────── */
.elementor-column.ait-partner-form-col--full .gform_wrapper .gform_fields,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 28px !important;
}
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-textarea,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--width-full,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-html,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-select,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-name,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-email,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-address,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-phone,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield--type-consent,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gform_footer,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-textarea,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--width-full,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-html,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-select,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-name,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-email,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-address,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-phone,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gfield--type-consent,
.elementor-column.ait-el-form-wide-col .gform_wrapper .gform_footer {
    grid-column: 1 / -1 !important;
}
@media (max-width: 700px) {
    .elementor-column.ait-partner-form-col--full .gform_wrapper .gform_fields,
    .elementor-column.ait-el-form-wide-col .gform_wrapper .gform_fields {
        grid-template-columns: 1fr !important;
    }
}

/* ── Labels (uniquement labels principaux de champ, pas sous-labels Nom/Adresse) ── */
.elementor-column.ait-partner-form-col .gfield_label,
.elementor-column.ait-partner-form-col--full .gfield_label,
.elementor-column.ait-contact-form-col .gfield_label {
    font-family: var(--f-body) !important;
    font-size: .8rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* ── Champs texte/email/textarea ──────────────────────────────── */
.elementor-column.ait-partner-form-col .gform_wrapper input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="button"]),
.elementor-column.ait-partner-form-col--full .gform_wrapper input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="button"]),
.elementor-column.ait-partner-form-col .gform_wrapper textarea,
.elementor-column.ait-partner-form-col--full .gform_wrapper textarea {
    background-color: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: var(--form-field-text) !important;
    -webkit-text-fill-color: var(--form-field-text) !important;
    font-family: var(--f-body) !important;
    font-size: .96rem !important;
    padding: 15px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color-scheme: light !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper select,
.elementor-column.ait-partner-form-col--full .gform_wrapper select {
    background-color: var(--form-field-bg) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A0E27' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 12px 8px !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: var(--form-field-text) !important;
    font-family: var(--f-body) !important;
    font-size: .96rem !important;
    padding: 15px 44px 15px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    color-scheme: light !important;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper select option,
.elementor-column.ait-partner-form-col--full .gform_wrapper select option {
    background-color: var(--form-field-bg) !important;
    color: var(--form-field-text) !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper input::placeholder,
.elementor-column.ait-partner-form-col--full .gform_wrapper input::placeholder,
.elementor-column.ait-partner-form-col .gform_wrapper textarea::placeholder,
.elementor-column.ait-partner-form-col--full .gform_wrapper textarea::placeholder {
    color: var(--form-field-placeholder) !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper input:focus:not([type="submit"]),
.elementor-column.ait-partner-form-col--full .gform_wrapper input:focus:not([type="submit"]),
.elementor-column.ait-partner-form-col .gform_wrapper textarea:focus,
.elementor-column.ait-partner-form-col--full .gform_wrapper textarea:focus,
.elementor-column.ait-partner-form-col .gform_wrapper select:focus,
.elementor-column.ait-partner-form-col--full .gform_wrapper select:focus {
    border-color: var(--form-field-border-focus) !important;
    background-color: var(--form-field-bg-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    outline: none !important;
    color: var(--form-field-text) !important;
}
/* Textarea */
.elementor-column.ait-partner-form-col .gform_wrapper textarea,
.elementor-column.ait-partner-form-col--full .gform_wrapper textarea {
    min-height: 120px !important;
    resize: vertical !important;
}
/* Séparateur optionnel entre colonnes de champs */
.elementor-column.ait-partner-form-col .gform_wrapper .gfield,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield {
    margin-bottom: 12px !important;
    padding: 0 !important;
}

/* ── Bouton submit ─────────────────────────────────────────────── */
.elementor-column.ait-partner-form-col .gform_wrapper input[type="submit"],
.elementor-column.ait-partner-form-col--full .gform_wrapper input[type="submit"],
.elementor-column.ait-partner-form-col .gform_wrapper .gform_button,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gform_button {
    width: 100% !important;
    background: linear-gradient(90deg, #f38e07, #ec4f14, #dd324c) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-family: var(--f-title) !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    padding: 18px 40px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 32px rgba(236,79,20,.4), 0 0 0 1px rgba(255,255,255,.08) inset !important;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease !important;
    margin-top: 12px !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper input[type="submit"]:hover,
.elementor-column.ait-partner-form-col--full .gform_wrapper input[type="submit"]:hover,
.elementor-column.ait-partner-form-col .gform_wrapper .gform_button:hover,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gform_button:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 16px 48px rgba(236,79,20,.52), 0 0 0 1px rgba(255,255,255,.12) inset !important;
}

/* ── Divers ─────────────────────────────────────────────────────── */
.elementor-column.ait-partner-form-col .gfield_required,
.elementor-column.ait-partner-form-col--full .gfield_required { color: #E8326F !important; font-size: .85em !important; }

.elementor-column.ait-partner-form-col .gform_confirmation_message,
.elementor-column.ait-partner-form-col--full .gform_confirmation_message {
    color: #9c90cc;
    font-size: 1rem;
    text-align: center;
    padding: 40px 24px;
    background: rgba(147,134,191,.06);
    border-radius: 16px;
    border: 1px solid rgba(147,134,191,.2);
}

/* Ligne de validation Gravity Forms */
.elementor-column.ait-partner-form-col .gform_wrapper .gfield_error input,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield_error input,
.elementor-column.ait-partner-form-col .gform_wrapper .gfield_error select,
.elementor-column.ait-partner-form-col--full .gform_wrapper .gfield_error select {
    border-color: rgba(232,50,111,.6) !important;
    box-shadow: 0 0 0 3px rgba(232,50,111,.12) !important;
}
.elementor-column.ait-partner-form-col .gform_wrapper .validation_message,
.elementor-column.ait-partner-form-col--full .gform_wrapper .validation_message {
    color: #E8326F !important;
    font-size: .78rem !important;
    margin-top: 4px !important;
}

/* ── En-tête de formulaire (conservé) ─────────────────────────── */
.ait-form-header { margin-bottom: 8px; }
.ait-form-header__title {
    font-family: var(--f-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: #F0F4FF;
    margin: 0 0 8px;
}
.ait-form-header__sub { font-size: .88rem; color: #9AA3C2; margin: 0; line-height: 1.6; }
.ait-form-header__sub strong { color: #F0F4FF; }

/* ── Cards "Pourquoi partenaire" ──────────────────────────────── */
.ait-partner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
.ait-pb-card {
    background: linear-gradient(180deg, rgba(13,18,64,.8) 0%, rgba(8,10,28,.9) 100%);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--t);
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.ait-pb-card:hover {
    transform: translateY(-8px);
    border-color: rgba(156,144,204,.25);
    box-shadow: 0 28px 72px rgba(0,0,0,.55), 0 0 40px var(--pb-accent, rgba(212,20,90,.15));
}
.ait-pb-card__top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
}
.ait-pb-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.ait-pb-card__stat {
    display: flex;
    flex-direction: column;
}
.ait-pb-card__num {
    font-family: var(--f-title);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
.ait-pb-card__label {
    font-family: var(--f-title);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-top: 3px;
}
.ait-pb-card__body {
    padding: 24px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.ait-pb-card__title {
    font-family: var(--f-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: #F0F4FF;
    margin: 0;
    letter-spacing: .01em;
}
.ait-pb-card__desc {
    color: #9AA3C2;
    font-size: .87rem;
    line-height: 1.72;
    margin: 0;
}
.ait-pb-card__list {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.ait-pb-card__list li {
    font-size: .82rem;
    color: #C8D0E8;
    padding-left: 18px;
    position: relative;
    line-height: 1.45;
}
.ait-pb-card__list li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9c90cc;
    box-shadow: 0 0 6px rgba(156, 144, 204, .45);
}
@media (max-width: 900px) {
    .ait-partner-benefits { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .ait-pb-card:hover { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE CONTACT — cartes info + formulaire
   ══════════════════════════════════════════════════════════════ */

/* Colonne info contact alignée verticalement */
.ait-contact-info-col > .elementor-widget-wrap {
    padding: 0 !important;
    display: flex !important;
    align-items: stretch !important;
}

/* Stack de cartes contact */
.ait-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.ait-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(13,18,64,.65);
    border: 1px solid rgba(156,144,204,.15);
    border-radius: 18px;
    padding: 22px 24px;
    backdrop-filter: blur(12px);
    transition: border-color .25s, box-shadow .25s;
}
.ait-contact-card:hover {
    border-color: rgba(156,144,204,.35);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.ait-contact-card--venue {
    border-color: rgba(243,142,7,.18);
    background: rgba(13,18,64,.5);
}
.ait-contact-card--venue:hover {
    border-color: rgba(243,142,7,.4);
}
.ait-contact-card__icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.ait-contact-card__body { flex: 1; min-width: 0; }
.ait-contact-card__title {
    font-family: 'Volte', var(--f-body);
    font-size: .95rem;
    font-weight: 700;
    color: #F0F4FF;
    margin: 0 0 4px;
    letter-spacing: .02em;
}
.ait-contact-card__sub {
    font-size: .78rem;
    color: #9c90cc;
    margin: 0 0 10px;
    line-height: 1.4;
}
.ait-contact-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ait-contact-card__list li {
    font-size: .82rem;
    color: #9AA3C2;
    line-height: 1.5;
}
.ait-contact-card__list a {
    color: #9c90cc;
    text-decoration: none;
    transition: color .2s;
}
.ait-contact-card__list a:hover { color: #F0F4FF; }
.ait-contact-card__venue-date {
    font-family: 'Volte', var(--f-body);
    font-size: .88rem;
    font-weight: 700;
    color: #da7c2f;
    margin: 8px 0 0;
    letter-spacing: .04em;
}

/* Formulaire contact — layout avec gap */
.ait-el-section.ait-contact-main > .elementor-container {
    align-items: flex-start !important;
    gap: 48px !important;
}
.ait-contact-form-col > .elementor-widget-wrap {
    height: 100% !important;
    box-sizing: border-box !important;
}
/* Formulaire contact : hérite du style premium partenaire */
.elementor-column.ait-contact-form-col .gfield_label {
    font-family: var(--f-body) !important;
    font-size: .8rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
    margin-bottom: 4px !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper .gform_fields {
    row-gap: 4px !important;
    gap: 4px 0 !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.elementor-column.ait-contact-form-col .gform_wrapper textarea,
.elementor-column.ait-contact-form-col .gform_wrapper select {
    background: var(--form-field-bg) !important;
    border: 1.5px solid var(--form-field-border) !important;
    border-radius: 14px !important;
    color: var(--form-field-text) !important;
    -webkit-text-fill-color: var(--form-field-text) !important;
    font-family: var(--f-body) !important;
    font-size: .96rem !important;
    padding: 11px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color-scheme: light !important;
    transition: border-color .2s, box-shadow .2s, background-color .2s !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper select option {
    background-color: var(--form-field-bg) !important;
    color: var(--form-field-text) !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper input::placeholder,
.elementor-column.ait-contact-form-col .gform_wrapper textarea::placeholder {
    color: var(--form-field-placeholder) !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper input:focus:not([type="submit"]),
.elementor-column.ait-contact-form-col .gform_wrapper textarea:focus,
.elementor-column.ait-contact-form-col .gform_wrapper select:focus {
    border-color: var(--form-field-border-focus) !important;
    background: var(--form-field-bg-focus) !important;
    box-shadow: var(--form-field-shadow-focus) !important;
    outline: none !important;
    color: var(--form-field-text) !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper .gfield { margin-bottom: 6px !important; padding-bottom: 0 !important; }
.elementor-column.ait-contact-form-col .gform_wrapper .ginput_container_email .ginput_right {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper input[type="submit"],
.elementor-column.ait-contact-form-col .gform_wrapper .gform_button {
    width: 100% !important;
    background: linear-gradient(90deg, #f38e07, #ec4f14, #dd324c) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-family: var(--f-title) !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    padding: 18px 40px !important;
    cursor: pointer !important;
    box-shadow: 0 8px 32px rgba(236,79,20,.4) !important;
    transition: transform .25s, box-shadow .25s !important;
    margin-top: 12px !important;
}
.elementor-column.ait-contact-form-col .gform_wrapper input[type="submit"]:hover,
.elementor-column.ait-contact-form-col .gform_wrapper .gform_button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 16px 48px rgba(236,79,20,.52) !important;
}

/* ── Champ "(Nécessaire)" → "*" via CSS (fallback) ────────── */
.gfield_required_text {
    font-size: 0 !important; /* cache le texte "(Nécessaire)" */
}
.gfield_required_text::after {
    content: ' *';
    font-size: .85rem;
    color: #E8326F;
    font-weight: 700;
}

/* ── Section RDV avec photo gauche ────────────────────────────── */
.ait-el-section-glow.ait-rdv-sec > .elementor-container {
    align-items: center !important;
}
.ait-rdv-text > .elementor-widget-wrap {
    padding-left: clamp(24px, 4vw, 48px) !important;
}

/* Boutons Elementor — style homepage */
.elementor-button {
    font-family: var(--f-title) !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    transition: var(--t) !important;
}
.elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212,20,90,.25) !important;
}

/* Centrage boutons dans sections CTA */
.elementor-section.ait-el-section-glow .elementor-button-wrapper {
    text-align: center;
}
.elementor-section.ait-el-section-glow .elementor-button {
    margin: 0 8px 8px;
}

/* ══════════════════════════════════════════════════════════════
   ACCUEIL ELEMENTOR — widgets natifs (édition visuelle)
   ══════════════════════════════════════════════════════════════ */
.elementor-section.ait-el-accueil-native {
    background: transparent !important;
}
.elementor-section.ait-el-accueil-native > .elementor-container {
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
}
/* Hero HTML dans Elementor — 1 colonne EL, grille interne .hero__inner */
.elementor-section.ait-el-accueil-hero > .elementor-container {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    grid-template-columns: unset !important;
}
.elementor-section.ait-el-accueil-hero .elementor-column {
    width: 100% !important;
}
.elementor-section.ait-el-accueil-native.stats > .elementor-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ait-el-stat-col .elementor-icon-box-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: clamp(28px, 4vw, 44px) 24px;
    text-align: center;
    transition: var(--t);
}
.ait-el-stat-col .elementor-icon-box-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--elec);
}
.ait-el-stat-col .elementor-icon-box-description {
    color: var(--text-muted);
    font-size: .9rem;
}
.elementor-section.ait-el-accueil-native.about > .elementor-container,
.elementor-section.ait-el-accueil-native.venue > .elementor-container,
.elementor-section.ait-el-accueil-native.cta-section > .elementor-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}
.ait-el-about-cards .elementor-icon-box-wrapper,
.ait-el-venue-cards .elementor-icon-box-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
}
.elementor-section.ait-el-accueil-native.themes .theme-pill .elementor-heading-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-title);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: rgba(13, 18, 64, .6);
}
.elementor-section.ait-el-accueil-native.themes .theme-pill .elementor-heading-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-brand);
    flex-shrink: 0;
}
.ait-el-btob-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
}
.ait-el-btob-col .btob__card-num {
    font-family: var(--f-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(0, 200, 255, .25);
    margin: 0 0 8px;
    line-height: 1;
}
.ait-el-testimonial-col {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px 28px;
}
.ait-el-gallery-col .elementor-widget-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--r);
}
.elementor-section.ait-el-accueil-native.cta-section {
    background: linear-gradient(135deg, rgba(13, 18, 64, .95), rgba(26, 10, 48, .9)) !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (max-width: 1024px) {
    .elementor-section.ait-el-accueil-native.about > .elementor-container,
    .elementor-section.ait-el-accueil-native.venue > .elementor-container,
    .elementor-section.ait-el-accueil-native.cta-section > .elementor-container,
    .elementor-section.ait-el-accueil-native.stats > .elementor-container {
        grid-template-columns: 1fr;
    }
    .elementor-section.ait-el-accueil-native.stats .ait-el-stat-col {
        width: 50% !important;
    }
}

/* Pages Elementor — offset header fixe (sauf accueil HTML avec .hero) */
.site-main.ait-el-page-main {
    padding-top: var(--header-h);
    min-height: 0;
}
.site-main.ait-el-page-main:has(.ait-el-accueil-hero),
.site-main.ait-el-page-main:has(#hero.hero) {
    padding-top: 0;
}
@media (max-width: 1024px) {
    .site-main.ait-el-page-main {
        padding-top: var(--header-h);
    }
}

/* ══════════════════════════════════════════════════════════════
   ACCUEIL ELEMENTOR — miroir template-parts (sans padding EL)
   ══════════════════════════════════════════════════════════════ */
.elementor-section.ait-el-home-sec {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}
.elementor-section.ait-el-home-sec + .elementor-section.ait-el-home-sec {
    margin-top: 0 !important;
}
.elementor-section.ait-el-home-sec > .elementor-container {
    max-width: 100% !important;
    padding: 0 !important;
}
/* About / Lieu — 2 colonnes Elementor : container centré (pas full-bleed HTML) */
.elementor-section.ait-el-home-sec.ait-el-accueil-native.about > .elementor-container,
.elementor-section.ait-el-home-sec.ait-el-accueil-native.venue > .elementor-container {
    max-width: var(--layout-max) !important;
    width: 100%;
    margin-inline: auto;
    padding-inline: var(--layout-gutter) !important;
    box-sizing: border-box;
}
/* About / Lieu — respiration vs lignes séparatrices (stats glow, themes border…) */
.elementor-section.ait-el-home-sec.ait-el-accueil-native.about,
.elementor-section.ait-el-home-sec.ait-el-accueil-native.venue {
    padding-block: var(--section-y) !important;
}
.elementor-section.ait-el-accueil-native.about .about__text,
.elementor-section.ait-el-accueil-native.venue .venue__content {
    padding-block: clamp(6px, 1vw, 11px);
}
.elementor-section.ait-el-accueil-native.about .about__features {
    margin-bottom: clamp(5px, 0.8vw, 8px);
}
.elementor-section.ait-el-accueil-native.about .about__actions {
    margin-top: clamp(16px, 2vw, 22px);
    margin-bottom: clamp(5px, 0.8vw, 8px);
}
.elementor-section.ait-el-accueil-native.venue .venue__timeline {
    margin-bottom: clamp(5px, 0.8vw, 8px);
}
.elementor-section.ait-el-accueil-native.venue .venue__content > .btn {
    margin-top: clamp(16px, 2vw, 22px) !important;
    margin-bottom: clamp(5px, 0.8vw, 8px) !important;
}
.elementor-section.ait-el-accueil-native.about > .elementor-container > .elementor-column,
.elementor-section.ait-el-accueil-native.venue > .elementor-container > .elementor-column {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
}
.elementor-section.ait-el-accueil-native.about .elementor-widget-wrap,
.elementor-section.ait-el-accueil-native.venue .elementor-widget-wrap {
    min-width: 0;
}
.elementor-section.ait-el-home-sec .elementor-column > .elementor-widget-wrap {
    padding: 0 !important;
}
.elementor-section.ait-el-home-sec .elementor-widget-html {
    width: 100%;
}
.ait-el-page .elementor-widget-html section {
    display: block;
    width: 100%;
}
.ait-el-page .elementor-widget-html section:not(.hero) .container,
.ait-el-page .elementor-widget-html .container:not(.hero__inner) {
    width: 100%;
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
}
/* Hero accueil Elementor — grille interne texte | visuel */
.ait-el-page .elementor-widget-html .hero {
    width: 100%;
    overflow: hidden;
}
.ait-el-page .elementor-widget-html .home-v2__hero.hero {
    overflow: visible;
}
.elementor-section.ait-el-accueil-hero,
.elementor-section.ait-el-accueil-hero > .elementor-container,
.elementor-section.ait-el-accueil-hero .elementor-widget-wrap {
    overflow: visible !important;
}
/* Accueil Elementor : hero — Devenir Partenaire + Devenir Invité en ligne */
.elementor-column.hero__content > .elementor-widget-wrap {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 14px;
    row-gap: 16px;
    justify-items: start;
    align-items: center;
}
.elementor-column.hero__content > .elementor-widget-wrap > :not(.elementor-widget-button:nth-last-of-type(-n+2)) {
    grid-column: 1 / -1;
}
.elementor-column.hero__content > .elementor-widget-wrap > .elementor-widget-button:nth-last-of-type(2) {
    grid-column: 1;
}
.elementor-column.hero__content > .elementor-widget-wrap > .elementor-widget-button:nth-last-of-type(1) {
    grid-column: 2;
}
.elementor-column.hero__content > .elementor-widget-wrap > .elementor-widget-spacer:has(+ .elementor-widget-button:nth-last-of-type(1)) {
    display: none !important;
}
.ait-el-page .elementor-widget-html .hero .container.hero__inner {
    width: 100%;
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
    display: grid !important;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.48fr) !important;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    overflow: visible;
}
.ait-el-page .elementor-widget-html .hero .hero__content {
    min-width: 0;
    overflow: visible;
    position: relative;
    z-index: 5;
}
.ait-el-page .elementor-widget-html .hero .hero__visual {
    min-width: 0;
    z-index: 1;
}
.ait-el-page .elementor-widget-html .hero .hero__title,
.ait-el-page .elementor-widget-html .hero .hero__title-accent {
    overflow: visible;
    word-break: normal;
    max-width: none;
    width: max-content;
    position: relative;
    z-index: 6;
}
@media (min-width: 901px) {
    .hero,
    .ait-el-page .elementor-widget-html .hero {
        overflow: visible;
    }
    .hero__inner {
        overflow: visible;
    }
    .hero__title,
    .hero__title-accent {
        max-width: calc(100% + clamp(48px, 10vw, 140px));
        width: max-content;
    }
}
@media (max-width: 900px) {
    .ait-el-page .elementor-widget-html .hero .container.hero__inner {
        grid-template-columns: 1fr !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   BILAN 2025 — Layout immersif (photos fond + gradients)
   ══════════════════════════════════════════════════════════════ */
.ait-el-page .elementor-section.ait-el-bilan-sec {
    padding-block: var(--section-y) !important;
}
.ait-el-page .elementor-section.ait-el-bilan-sec + .elementor-section.ait-el-bilan-sec,
.ait-el-page .elementor-section.ait-el-bilan-quotes-head + .elementor-section.ait-el-bilan-quotes {
    margin-top: 0;
}

.elementor-section.ait-el-hero--bilan {
    min-height: min(72vh, 640px);
    display: flex;
    align-items: flex-end;
}
.elementor-section.ait-el-hero--bilan > .elementor-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Bandeau chiffres intégré au hero */
.ait-bilan-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(
        105deg,
        rgba(10,14,39,.94) 0%,
        rgba(13,18,64,.92) 45%,
        rgba(9,22,72,.9) 100%
    );
    border: 1px solid rgba(0,200,255,.14);
    box-shadow:
        0 12px 48px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(0,200,255,.1);
    max-width: 100%;
}
.ait-bilan-stat {
    background: linear-gradient(
        180deg,
        rgba(13,18,64,.88) 0%,
        rgba(10,14,39,.92) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: clamp(14px, 2vw, 22px) 10px;
    text-align: center;
}
.ait-bilan-stat:not(:last-child) {
    box-shadow: 1px 0 0 rgba(0,200,255,.08);
}
.ait-bilan-stat__num {
    display: block;
    font-family: var(--f-body);
    font-size: clamp(1.25rem, 2.2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ait-bilan-stat__lbl {
    display: block;
    margin-top: 6px;
    font-family: var(--f-title);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #9AA3C2;
}

/* Sections photo plein écran + dégradé */
.elementor-section.ait-el-bilan-photo-sec {
    min-height: clamp(320px, 42vw, 460px);
    display: flex;
    align-items: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}
.elementor-section.ait-el-bilan-photo-sec::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102,45,145,.15) 0%, transparent 45%, rgba(212,20,90,.12) 100%);
    pointer-events: none;
    z-index: 0;
}
.elementor-section.ait-el-bilan-photo-sec > .elementor-container {
    position: relative;
    z-index: 1;
}
.elementor-section.ait-el-bilan-photo-sec--center > .elementor-container {
    text-align: center;
}
.elementor-section.ait-el-bilan-photo-sec--center .elementor-button-wrapper {
    text-align: center;
}

/* Panneaux verre sur photos */
.elementor-column.ait-bilan-glass > .elementor-widget-wrap {
    background: rgba(8,10,28,.58) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(212,20,90,.28) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 56px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06) !important;
}
.elementor-column.ait-bilan-glass--right {
    margin-left: auto;
}

/* Galerie compacte */
.ait-el-bilan-gallery--compact .ait-el-bilan-gallery__mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: clamp(120px, 14vw, 168px);
    gap: 10px;
}
.ait-el-bilan-gallery--compact .ait-el-bilan-gallery__item--wide {
    grid-column: span 2;
}
.ait-el-bilan-gallery { position: relative; }
.ait-el-bilan-gallery__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}
.ait-el-bilan-gallery__item {
    margin: 0;
    min-height: 0;
    position: relative;   /* Frame absolute s'étale dessus */
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(212,20,90,.2);
    transition: var(--t);
}
.ait-el-bilan-gallery__item--wide { grid-column: span 2; }
.ait-el-bilan-gallery__item:hover {
    transform: scale(1.02);
    border-color: rgba(249,160,27,.45);
    box-shadow: 0 8px 32px rgba(212,20,90,.2);
}
.ait-el-bilan-gallery__frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.ait-el-bilan-gallery__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .5s ease;
}
.ait-el-bilan-gallery__item:hover .ait-el-bilan-gallery__frame img { transform: scale(1.08); }
.ait-el-bilan-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,14,39,.85) 100%);
    pointer-events: none;
}
/* ── Bilan 2025 — Vidéo YouTube ────────────────────────────────── */
.ait-bilan-video-wrap {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 0 60px rgba(212,20,90,.25), 0 0 120px rgba(61,52,139,.30), 0 24px 48px rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.08);
}
.ait-bilan-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ait-el-bilan-gallery__tag {
    position: absolute;
    left: 10px; bottom: 10px;
    font-family: var(--f-title);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(212,20,90,.75);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.ait-el-bilan-gallery__item:hover .ait-el-bilan-gallery__tag {
    opacity: 1;
    transform: translateY(0);
}

/* Témoignages — style éditorial, pas de cartes */
.elementor-column.ait-bilan-quote-col > .elementor-widget-wrap {
    background: rgba(8,10,28,.45) !important;
    backdrop-filter: blur(10px);
    border: none !important;
    border-left: 3px solid #E8326F !important;
    border-radius: 0 14px 14px 0 !important;
    padding: 20px 22px !important;
    height: 100%;
    box-shadow: none !important;
}
.elementor-section.ait-el-bilan-quotes .elementor-column-gap-default > .elementor-row {
    align-items: stretch;
}

/* Invités — pills plus discrets */
.elementor-section.ait-el-bilan-guests {
    background: linear-gradient(180deg, rgba(102,45,145,.12) 0%, transparent 70%) !important;
}
.ait-el-guest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}
.ait-el-guest-pill {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(8,10,28,.5);
    border: 1px solid rgba(212,20,90,.2);
    color: #9AA3C2;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: var(--t);
}
.ait-el-guest-pill:hover { border-color: rgba(249,160,27,.4); color: #F0F4FF; }
.ait-el-guest-pill--more { border-color: rgba(249,160,27,.35); color: #F9A01B; }

/* Partenaires */
.elementor-section.ait-el-partners-section {
    background: linear-gradient(180deg, #0D1240 0%, #0A0E27 100%) !important;
}
.ait-el-partners-banner {
    background: linear-gradient(145deg, #fff 0%, #f4f6ff 100%);
    border-radius: 16px;
    padding: 20px 18px;
    border: 1px solid rgba(212,20,90,.12);
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.ait-el-partners-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Merci */
.elementor-section.ait-el-bilan-thanks .elementor-heading-title {
    text-shadow: 0 2px 24px rgba(0,0,0,.5);
}

/* ─── Bilan — blocs photo modernes (remplace fonds photo) ─────── */

/* Hero 2 colonnes */
.elementor-section.ait-bilan-hero {
    position: relative;
    overflow: hidden;
}
.elementor-section.ait-bilan-hero > .elementor-container {
    align-items: center;
    gap: 48px;
}
.elementor-column.ait-bilan-hero-text > .elementor-widget-wrap {
    justify-content: center;
    padding-block: var(--section-y-sm) !important;
    padding-inline: 0 !important;
}

/* Sections split */
.elementor-section.ait-bilan-split > .elementor-container,
.elementor-section.ait-bilan-split--reverse > .elementor-container {
    align-items: center;
    gap: 0;
}
.elementor-column.ait-bilan-content-text > .elementor-widget-wrap {
    padding-block: var(--section-y-sm) !important;
    padding-inline: var(--section-y-sm) 0 !important;
    justify-content: center;
}
.elementor-section.ait-bilan-split--reverse .elementor-column.ait-bilan-content-text > .elementor-widget-wrap {
    padding-block: var(--section-y-sm) !important;
    padding-inline: 0 var(--section-y-sm) !important;
}

/* ══════════════════════════════════════════════════════════════
   BILAN — Zones photos premium
   ══════════════════════════════════════════════════════════════ */

/* ── Colonnes photo : forcer la largeur (background-image = zéro taille
      intrinsèque → Elementor effondre la colonne sans cette règle) ── */
.elementor-column.ait-bilan-content-photo {
    width: 48% !important;
    flex: 0 0 48% !important;
    max-width: 48% !important;
    box-sizing: border-box;
}
.elementor-column.ait-bilan-hero-photo {
    width: 45% !important;
    flex: 0 0 45% !important;
    max-width: 45% !important;
    box-sizing: border-box;
}
.elementor-column.ait-invite-eco-photo {
    width: 45% !important;
    flex: 0 0 45% !important;
    max-width: 45% !important;
    box-sizing: border-box;
}
.elementor-column.ait-invite-eco-text {
    width: 55% !important;
    flex: 0 0 55% !important;
    max-width: 55% !important;
    box-sizing: border-box;
}
.elementor-column.ait-rdv-photo {
    width: 44% !important;
    flex: 0 0 44% !important;
    max-width: 44% !important;
    box-sizing: border-box;
}
.elementor-column.ait-rdv-text {
    width: 56% !important;
    flex: 0 0 56% !important;
    max-width: 56% !important;
    box-sizing: border-box;
}
/* Padding intérieur pour que les photos respirent dans la colonne */
.elementor-column.ait-bilan-content-photo > .elementor-widget-wrap {
    padding: 32px 24px 32px 0 !important;
    align-items: stretch;
    width: 100%;
}
.elementor-section.ait-bilan-split--reverse .elementor-column.ait-bilan-content-photo > .elementor-widget-wrap {
    padding: 32px 0 32px 24px !important;
}
.elementor-column.ait-bilan-hero-photo > .elementor-widget-wrap {
    padding: 0 0 0 28px !important;
    align-items: stretch;
    width: 100%;
}
.elementor-column.ait-invite-eco-photo > .elementor-widget-wrap,
.elementor-column.ait-rdv-photo > .elementor-widget-wrap {
    padding: 0 !important;
    align-items: stretch;
    width: 100%;
}
.elementor-column.ait-invite-eco-photo .elementor-widget-html,
.elementor-column.ait-rdv-photo .elementor-widget-html,
.elementor-column.ait-bilan-content-photo .elementor-widget-html,
.elementor-column.ait-bilan-hero-photo .elementor-widget-html {
    width: 100%;
}
.elementor-column.ait-invite-eco-photo .elementor-widget-html .elementor-widget-container,
.elementor-column.ait-rdv-photo .elementor-widget-html .elementor-widget-container,
.elementor-column.ait-bilan-content-photo .elementor-widget-html .elementor-widget-container,
.elementor-column.ait-bilan-hero-photo .elementor-widget-html .elementor-widget-container {
    width: 100%;
}

/* ── Bloc photo individuel (sections split) ── */
.ait-bilan-photo-block {
    display: block;
    width: 100%;
    min-height: 340px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background-color: #12082a;
    /* Halo coloré + profondeur */
    box-shadow:
        0 0 0 1px rgba(212,20,90,.18),
        0 24px 60px rgba(0,0,0,.6),
        0 0 80px rgba(61,52,139,.18) inset;
    transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
    margin: 0;
}
.ait-bilan-photo-block__img,
.ait-bilan-photo-block img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.ait-bilan-photo-block--hero { min-height: 460px; }
.ait-bilan-photo-block--hero img { min-height: 460px; }
.ait-bilan-photo-block--portrait { min-height: 400px; aspect-ratio: 4 / 5; }
.ait-bilan-photo-block--portrait img { min-height: 400px; aspect-ratio: 4 / 5; }
.ait-bilan-photo-block:hover {
    transform: scale(1.015);
    box-shadow:
        0 0 0 1px rgba(249,160,27,.28),
        0 32px 72px rgba(0,0,0,.65),
        0 0 60px rgba(212,20,90,.12) inset;
}

/* ── Grille photos ── */
.ait-bilan-photo-grid {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.ait-bilan-photo-grid--hero-2 {
    display: grid !important;
    grid-template-columns: 3fr 2fr;       /* grande à gauche, petite à droite */
    grid-template-rows: 280px 170px;
    gap: 14px;
    width: 100%;
    min-height: 464px;
}
.ait-bilan-photo-grid--hero-2 .ait-bilan-photo-grid__item--hero {
    grid-column: 1 / -1;
    min-height: 280px;
}
.ait-bilan-photo-grid--hero-2 .ait-bilan-photo-grid__item:not(.ait-bilan-photo-grid__item--hero) {
    min-height: 170px;
}

.ait-bilan-photo-grid--grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    min-height: 280px;
}
.ait-bilan-photo-grid--grid-3 .ait-bilan-photo-grid__item { min-height: 280px; }

.ait-bilan-photo-grid--grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    min-height: 210px;
}
.ait-bilan-photo-grid--grid-2 .ait-bilan-photo-grid__item { min-height: 210px; }

/* ── Items grille ── */
.ait-bilan-photo-grid__item {
    display: block;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background-color: #0f0930;
    background-size: cover;
    background-position: center;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.06),
        0 12px 36px rgba(0,0,0,.5);
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.ait-bilan-photo-grid__item--hero {
    background-color: #1a0840;
    box-shadow:
        0 0 0 1px rgba(212,20,90,.2),
        0 20px 50px rgba(0,0,0,.55);
}
.ait-bilan-photo-grid__item:hover {
    transform: scale(1.025) translateY(-3px);
    box-shadow:
        0 0 0 1px rgba(249,160,27,.35),
        0 24px 56px rgba(212,20,90,.22);
}

/* ══════════════════════════════════════════════════════════════
   DÉROULÉ DES JOURNÉES — Cartes premium
   ══════════════════════════════════════════════════════════════ */
.ait-days-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.ait-day-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.015) 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 36px 32px 40px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow:
        0 2px 0 0 rgba(255,255,255,.06) inset,
        0 20px 60px rgba(0,0,0,.35);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.ait-day-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 2px 0 0 rgba(255,255,255,.08) inset,
        0 32px 72px rgba(0,0,0,.45);
}

/* Ligne colorée en haut de la carte */
.ait-day-card__accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
}

/* Tête : numéro + nom */
.ait-day-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.ait-day-card__num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-title);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.ait-day-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ait-day-card__weekday,
.ait-day-card__dateline {
    font-family: var(--f-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
}
.ait-day-card__month {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(200,208,232,.5);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Timeline */
.ait-day-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ait-day-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ait-day-item:last-child { border-bottom: none; padding-bottom: 0; }
.ait-day-item:first-child { padding-top: 0; }

.ait-day-item__time {
    font-family: var(--f-title);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(200,208,232,.45);
}
.ait-day-item__label {
    font-size: .92rem;
    font-weight: 500;
    color: #C8D0E8;
    line-height: 1.45;
}

/* EN — même empilement que FR, horaires AM/PM sans uppercase agressif */
.ait-lang-en .ait-day-item__time {
    text-transform: none;
    letter-spacing: .04em;
    font-size: .75rem;
    font-variant-numeric: tabular-nums;
}
.ait-lang-en .ait-day-item__label {
    font-size: .9rem;
    line-height: 1.5;
}
.ait-lang-en .ait-day-card__dateline {
    font-size: 1rem;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .ait-days-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Liste chiffres inline */
.ait-bilan-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ait-bilan-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(13,18,64,.55);
    border: 1px solid rgba(0,200,255,.1);
}
.ait-bilan-list__num {
    font-family: var(--f-body);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    min-width: 72px;
}
.ait-bilan-list__icon {
    font-size: 1.3rem;
    line-height: 1;
    min-width: 32px;
    text-align: center;
}
.ait-bilan-list__lbl {
    color: #C8D0E8;
    font-size: .88rem;
}

/* Tags thématiques */
.ait-bilan-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Featured quote */
.ait-bilan-quote-featured {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 48px;
    background: linear-gradient(145deg, rgba(13,18,64,.6) 0%, rgba(102,45,145,.18) 100%);
    border: 1px solid rgba(212,20,90,.28);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.ait-bilan-quote-featured__mark {
    font-family: Georgia, serif;
    font-size: 120px;
    line-height: .7;
    color: #D4145A;
    opacity: .25;
    margin-bottom: -16px;
    user-select: none;
}
.ait-bilan-quote-featured__text {
    font-size: 1.12rem;
    color: #E8ECFF;
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 24px;
}
.ait-bilan-quote-featured__foot {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.ait-bilan-quote-featured__name {
    font-family: var(--f-body);
    font-size: .95rem;
    font-weight: 600;
    color: #F0F4FF;
    letter-spacing: .03em;
}
.ait-bilan-quote-featured__role {
    font-size: .78rem;
    color: #9AA3C2;
    letter-spacing: .04em;
}

/* ─── Responsif Bilan ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ait-bilan-photo-block { min-height: 280px; }
    .ait-bilan-photo-block--hero { min-height: 320px; }
    .ait-bilan-photo-grid--hero-2 { grid-template-rows: 200px 130px; }
}
@media (max-width: 768px) {
    .elementor-section.ait-bilan-split > .elementor-container,
    .elementor-section.ait-bilan-hero > .elementor-container,
    .elementor-section.ait-el-invite-eco > .elementor-container,
    .elementor-section.ait-rdv-sec > .elementor-container {
        flex-direction: column !important;
    }
    .elementor-column.ait-bilan-content-photo,
    .elementor-column.ait-bilan-hero-photo,
    .elementor-column.ait-invite-eco-photo,
    .elementor-column.ait-rdv-photo {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: -1;
    }
    .elementor-column.ait-bilan-content-photo > .elementor-widget-wrap,
    .elementor-column.ait-bilan-hero-photo > .elementor-widget-wrap,
    .elementor-column.ait-invite-eco-photo > .elementor-widget-wrap,
    .elementor-column.ait-rdv-photo > .elementor-widget-wrap {
        padding: 0 !important;
    }
    .elementor-column.ait-bilan-content-text,
    .elementor-column.ait-bilan-hero-text,
    .elementor-column.ait-invite-eco-text,
    .elementor-column.ait-rdv-text {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .elementor-column.ait-bilan-content-text > .elementor-widget-wrap,
    .elementor-column.ait-bilan-hero-text > .elementor-widget-wrap,
    .elementor-column.ait-invite-eco-text > .elementor-widget-wrap,
    .elementor-column.ait-rdv-text > .elementor-widget-wrap {
        padding: 28px 0 0 !important;
    }
    .ait-bilan-photo-block { min-height: 240px !important; height: 240px; }
    .ait-bilan-photo-block--hero { min-height: 260px !important; height: 260px; }
    .ait-bilan-photo-grid--hero-2 {
        grid-template-rows: 190px 120px;
        gap: 10px;
    }
    .ait-bilan-quote-featured {
        padding: 28px 22px;
    }
    .ait-bilan-quote-featured__mark { font-size: 80px; }
    .ait-bilan-quote-featured__text { font-size: .96rem; }
}
@media (max-width: 480px) {
    .ait-bilan-photo-grid--hero-2 {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 130px 130px;
    }
    .ait-bilan-photo-grid--hero-2 .ait-bilan-photo-grid__item--hero {
        grid-column: 1;
    }
    .ait-bilan-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ─── 4 étapes élégantes (remplace icon-box 01-04) ────────────── */
.ait-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ait-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 28px;
    background: linear-gradient(145deg, rgba(13,18,64,.7) 0%, rgba(10,14,39,.8) 100%);
    border: 1px solid rgba(0,200,255,.12);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: var(--t);
}
.ait-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-brand);
    opacity: .7;
}
.ait-step:hover {
    border-color: rgba(212,20,90,.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(212,20,90,.12);
}
.ait-step__num {
    font-family: var(--f-title);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: .35;
    position: absolute;
    top: 20px; right: 20px;
}
.ait-step__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,20,90,.22) 0%, rgba(102,45,145,.22) 100%);
    border: 1px solid rgba(212,20,90,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #00C8FF;
    flex-shrink: 0;
}
.ait-step__body { flex: 1; }
.ait-step__title {
    font-family: var(--f-body);
    font-size: .88rem;
    font-weight: 700;
    color: #F0F4FF;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.ait-step__desc {
    color: #9AA3C2;
    font-size: .83rem;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 900px) {
    .ait-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .ait-steps { grid-template-columns: 1fr; }
}

/* ─── Lieu + Format unifié ─────────────────────────────────────── */
.ait-lieu-format {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    background: linear-gradient(145deg, rgba(13,18,64,.6) 0%, rgba(10,14,39,.7) 100%);
    border: 1px solid rgba(0,200,255,.12);
    border-radius: 24px;
    overflow: hidden;
}
.ait-lieu-format__card {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ait-lieu-format__sep {
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212,20,90,.3) 30%, rgba(212,20,90,.3) 70%, transparent);
    align-self: stretch;
    flex-shrink: 0;
}
.ait-lieu-format__icon {
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}
.ait-lieu-format__eyebrow {
    font-family: var(--f-title);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #D4145A;
}
.ait-lieu-format__title {
    font-family: var(--f-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: #F0F4FF;
    margin: 4px 0;
}
.ait-lieu-format__sub {
    font-size: .82rem;
    color: #9AA3C2;
    margin: 0 0 16px;
}
.ait-lieu-format__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ait-lieu-format__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: #C8D0E8;
}
.ait-lieu-format__list li span {
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
@media (max-width: 768px) {
    .ait-lieu-format {
        grid-template-columns: 1fr;
    }
    .ait-lieu-format__sep {
        width: auto; height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212,20,90,.3) 30%, rgba(212,20,90,.3) 70%, transparent);
    }
    .ait-lieu-format__card { padding: 32px 24px; }
}

/* ─── 3 Formules — cartes dark premium ────────────────────────── */
.ait-formulas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ait-formula {
    background: linear-gradient(180deg, rgba(13,18,64,.75) 0%, rgba(10,14,39,.85) 100%);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--t);
}
.ait-formula:hover {
    transform: translateY(-6px);
    border-color: rgba(212,20,90,.3);
    box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 0 1px rgba(212,20,90,.12);
}
.ait-formula__top {
    height: 6px;
    width: 100%;
    flex-shrink: 0;
}
.ait-formula__body {
    padding: 32px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.ait-formula__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.ait-formula__tag {
    font-family: var(--f-title);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}
.ait-formula__badge {
    margin-left: auto;
    font-family: var(--f-title);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,.15);
    padding: 3px 10px;
    border-radius: 20px;
}
.ait-formula__top {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    height: auto;
}
.ait-formula__title {
    font-family: var(--f-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: #F0F4FF;
    letter-spacing: .02em;
    margin: 0;
}
.ait-formula__desc {
    color: #9AA3C2;
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.ait-formula__btn {
    margin-top: 8px;
    align-self: flex-start;
    font-size: .82rem !important;
}
@media (max-width: 768px) {
    .ait-formulas { grid-template-columns: 1fr; }
    .ait-formula:hover { transform: none; }
}

/* Ancres internes — décalage sous le header fixe */
.ait-el-anchor { scroll-margin-top: var(--header-h); }

/* ── Bouton row — 2 boutons côte à côte ──────────────────────────── */
.ait-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}
.ait-btn-row__primary { flex-shrink: 0; }
.ait-btn-row__ghost   { flex-shrink: 0; }
/* Centré quand dans une section CTA */
.ait-btn-row[style*="justify-content:center"] { justify-content: center; }
@media (max-width: 480px) {
    .ait-btn-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .ait-btn-row[style*="justify-content:center"] {
        align-items: center;
    }
}

/* ── Section Écosystème — 2 colonnes (photo + texte) ─────────────── */
.ait-el-invite-eco > .elementor-container {
    align-items: center !important;
}
.ait-invite-eco-text > .elementor-widget-wrap {
    padding-left: clamp(24px, 4vw, 56px) !important;
}

/* Zone photo placeholder — dégradé + label éditable */
.ait-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #0d1140 0%, #1f0952 55%, #12082a 100%);
    border: 2px dashed rgba(156,144,204,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 24px 56px rgba(0,0,0,.45), 0 0 40px rgba(61,52,139,.2);
    transition: border-color .3s;
}
.ait-photo-placeholder:hover {
    border-color: rgba(156,144,204,.6);
}
.ait-photo-placeholder__inner {
    text-align: center;
    padding: 24px;
}
.ait-photo-placeholder__icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    opacity: .6;
}
.ait-photo-placeholder__label {
    font-family: var(--f-title);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #9c90cc;
    margin: 0 0 4px;
}
.ait-photo-placeholder__hint {
    font-size: .72rem;
    color: rgba(154,163,194,.55);
    margin: 0;
}
/* Quand le placeholder contient une vraie img, elle couvre tout */
.ait-photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* Citations */
.ait-el-quote { margin: 0; padding: 0; border: none; }
.ait-el-quote__text {
    color: #C8D0E8;
    font-size: .88rem;
    line-height: 1.65;
    font-style: italic;
    margin: 0 0 .75rem;
}
.ait-el-quote__foot strong {
    color: #F0F4FF;
    font-family: var(--f-body);
    font-size: .85rem;
    font-weight: 500;
}
.ait-el-quote__role {
    color: #9AA3C2;
    font-size: .75rem;
    margin: .25rem 0 0;
}

@media (max-width: 1024px) {
    .ait-bilan-stats { grid-template-columns: repeat(3, 1fr); }
    .ait-el-bilan-gallery--compact .ait-el-bilan-gallery__mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .ait-bilan-stats { grid-template-columns: repeat(2, 1fr); }
    .elementor-section.ait-el-bilan-photo-sec { min-height: 280px; }
    .elementor-column.ait-bilan-glass { width: 100% !important; }
    .ait-el-bilan-gallery--compact .ait-el-bilan-gallery__mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
    .ait-el-bilan-gallery--compact .ait-el-bilan-gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
    .ait-bilan-stats { grid-template-columns: repeat(2, 1fr); }
    .ait-el-bilan-gallery--compact .ait-el-bilan-gallery__item--wide { grid-column: span 1; }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM UPGRADES — sections améliorées
   ══════════════════════════════════════════════════════════════ */

/* ── ABOUT — Photo frame avec stats flottantes ─────────────── */
.about__visual { display: flex; align-items: stretch; }

.about__photo-frame {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 80px rgba(212,20,90,.12);
    min-height: 460px;
}
.about__photo-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.about__photo-frame:hover .about__photo-img { transform: scale(1.04); }

/* Cadres photo — sections accueil native 2 colonnes */
.elementor-section.ait-el-accueil-native.about,
.elementor-section.ait-el-accueil-native.venue {
    overflow-x: clip;
}
.elementor-section.ait-el-accueil-native.venue {
    position: relative;
}
.elementor-section.ait-el-accueil-native.venue::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 500px;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(212,20,90,.14) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}
.elementor-column.about__text,
.elementor-column.about__visual-col,
.elementor-column.venue__content,
.elementor-column.venue__photo-col {
    box-sizing: border-box;
}
.elementor-column.about__visual-col > .elementor-widget-wrap,
.elementor-column.venue__photo-col > .elementor-widget-wrap {
    padding: 0 !important;
    width: 100%;
}
.elementor-column.about__visual-col .about__photo-frame,
.elementor-column.venue__photo-col .venue__photo-frame {
    width: 100%;
}

.about__photo-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,14,39,.0) 40%, rgba(10,14,39,.85) 100%),
        linear-gradient(135deg, rgba(212,20,90,.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Badge 100% B2B */
.about__photo-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--grad-brand);
    border-radius: 50%;
    width: 72px; height: 72px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(249,160,27,.35);
    gap: 0;
}
.about__photo-badge-num {
    font-family: var(--f-title);
    font-size: 1.15rem; font-weight: 800;
    color: #fff; line-height: 1;
}
.about__photo-badge-lbl {
    font-size: .55rem; font-weight: 700;
    letter-spacing: .08em; color: rgba(255,255,255,.9);
    text-transform: uppercase;
}

/* Stats flottantes bas */
.about__photo-stat {
    position: absolute; bottom: 20px;
    background: rgba(10,14,39,.82);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,200,255,.22);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex; flex-direction: column;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.about__photo-stat--btob   { left: 20px; }
.about__photo-stat--guests { right: 20px; }

.about__photo-stat-num {
    font-family: var(--f-title);
    font-size: 1.35rem; font-weight: 800;
    color: var(--elec); line-height: 1;
}
.about__photo-stat-lbl {
    font-size: .72rem; color: var(--muted-l);
    font-weight: 500; white-space: nowrap;
}

/* Hint admin (quand pas d'image) */
.about__photo-admin-hint,
.venue__photo-hint,
.gallery__hero-hint {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; height: 100%; min-height: 340px;
    text-align: center;
    color: rgba(255,255,255,.28);
    font-size: .82rem;
    padding: 32px;
    border: 2px dashed rgba(0,200,255,.15);
    border-radius: 20px;
}
.gallery__hero-hint {
    min-height: 120px;
    flex-direction: row;
    margin: 0 0 24px;
    font-size: .8rem;
    border-radius: 14px;
}

/* ── GALLERY — hero plein format ───────────────────────────── */
.gallery__hero { margin-bottom: 20px; }
.gallery__hero-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-height: 480px;
    border: 1px solid rgba(212,20,90,.22);
    box-shadow: var(--shadow);
}
.gallery__hero-img {
    width: 100%; height: 480px;
    object-fit: cover; object-position: center;
    display: block;
}
.gallery__hero-caption {
    position: absolute; bottom: 16px; left: 16px;
}

/* CTA sous galerie */
.gallery__cta {
    margin-top: 40px;
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center; gap: 16px;
}
.gallery__cta p {
    color: var(--muted-l); font-size: .92rem;
    margin: 0;
}

/* ── VENUE — colonne photo ─────────────────────────────────── */
.venue__inner { grid-template-columns: 1fr 1fr; }

.venue__photo-col { display: flex; align-items: stretch; }

.venue__photo-frame {
    position: relative;
    width: 100%; border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 80px rgba(212,20,90,.10);
    min-height: 480px;
}
.venue__photo-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.venue__photo-frame:hover .venue__photo-img { transform: scale(1.04); }
.venue__photo-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 50%, rgba(10,14,39,.80) 100%),
        linear-gradient(225deg, rgba(212,20,90,.18) 0%, transparent 45%);
    pointer-events: none;
}

/* Badge étoiles */
.venue__photo-award {
    position: absolute; top: 20px; left: 20px;
    background: rgba(10,14,39,.80);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(249,160,27,.35);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex; flex-direction: column; gap: 2px;
}
.venue__photo-award-stars { color: var(--ora); font-size: .9rem; letter-spacing: .06em; }
.venue__photo-award-text  { font-size: .68rem; color: var(--muted-l); font-weight: 500; white-space: nowrap; }

/* Badge localisation */
.venue__photo-location {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(10,14,39,.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,200,255,.22);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--white);
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.venue__photo-location svg { color: var(--elec); }

.venue__photo-hint {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px; height: 100%; min-height: 420px;
    text-align: center; color: rgba(255,255,255,.28);
    font-size: .82rem; padding: 32px;
    border: 2px dashed rgba(0,200,255,.15); border-radius: 20px;
}

/* ── TESTIMONIALS — featured card ──────────────────────────── */
.testimonial-featured {
    position: relative;
    background: linear-gradient(135deg, rgba(0,200,255,.08) 0%, rgba(212,20,90,.08) 100%);
    border: 1px solid rgba(0,200,255,.22);
    border-radius: 24px;
    padding: 48px 56px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow), 0 0 60px rgba(0,200,255,.06);
    backdrop-filter: blur(20px);
}
.testimonial-featured::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(0,200,255,.06) 0%, transparent 60%);
    pointer-events: none;
}

.testimonial-featured__quote-mark {
    font-size: 8rem; line-height: .7;
    font-family: Georgia, serif;
    color: var(--elec); opacity: .15;
    position: absolute; top: 20px; left: 36px;
    user-select: none; pointer-events: none;
}

.testimonial-featured__text {
    font-size: 1.18rem;
    color: rgba(240,244,255,.92);
    line-height: 1.78;
    font-style: italic;
    max-width: 820px;
    margin: 0 0 24px;
    position: relative; z-index: 1;
}

.testimonial-featured__stars {
    display: flex; gap: 4px;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.testimonial-featured__stars span,
.testimonial-card__stars span {
    color: var(--ora);
    font-size: 1rem;
}

.testimonial-featured__author {
    display: flex; align-items: center;
    gap: 14px;
    position: relative; z-index: 1;
}
.testimonial-featured__author strong {
    display: block; font-size: 1rem;
    color: var(--white); font-family: var(--f-body); font-weight: 600;
}
.testimonial-featured__author span {
    font-size: .82rem; color: var(--muted);
}

/* Stars dans les cards normales */
.testimonial-card__stars {
    display: flex; gap: 3px;
    margin-bottom: 8px;
}
.testimonial-card__stars span { font-size: .82rem; color: var(--ora); }

/* ── PARTNERS — bannière + join CTA ────────────────────────── */
.partners__banner {
    text-align: center;
    padding: 32px 0 8px;
}
.partners__banner-img {
    max-width: 100%;
    height: auto;
    filter: brightness(.85);
    transition: var(--t);
}
.partners__banner-img:hover { filter: brightness(1); }

.partners__slider {
    position: relative;
    margin-top: clamp(8px, 1.5vw, 16px);
    width: 100%;
    padding-block: var(--section-y-sm);
}

.partners__slider::before,
.partners__slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
    pointer-events: none;
}

.partners__slider::before { top: 0; }
.partners__slider::after  { bottom: 0; }

.partners__slider .xcom-logo-slider,
.partners__slider .xcom-logo-slider__item,
.partners__slider .xcom-logo-slider__item img,
.partners__slider .xcom-logo-slider__card {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.partners__slider .xcom-logo-slider {
    padding-inline: 0;
}

.partners__upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
}
.partner-logo--placeholder {
    min-height: 80px;
    border: 1px dashed rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    cursor: default;
}
.partner-logo--placeholder:hover { transform: none; border-color: rgba(255,255,255,.08); }

.partners__upload-hint {
    grid-column: 1 / -1;
    display: flex; gap: 16px;
    align-items: flex-start;
    background: rgba(0,200,255,.06);
    border: 1px dashed rgba(0,200,255,.2);
    border-radius: var(--r);
    padding: 20px 24px;
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 8px;
}
.partners__upload-hint svg { color: var(--elec); flex-shrink: 0; margin-top: 2px; }
.partners__upload-hint strong { display: block; color: var(--white); margin-bottom: 6px; }
.partners__upload-hint p { margin: 4px 0 0; }

.partners__join {
    margin-top: 48px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(249,160,27,.08), rgba(212,20,90,.08));
    border: 1px solid rgba(249,160,27,.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.partners__join-content p { margin: 0; }
.partners__join-eyebrow {
    display: block;
    font-size: .72rem;
    font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ora); margin-bottom: 4px;
}
.partners__join-content strong {
    display: block;
    font-family: var(--f-title);
    font-size: 1.15rem; font-weight: 700;
    color: var(--white);
}
.partners__join-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── THEMES — pills numérotées ─────────────────────────────── */
.theme-pill__num {
    font-family: var(--f-title);
    font-size: .6rem; font-weight: 700;
    color: rgba(255,255,255,.35);
    letter-spacing: .04em;
    min-width: 18px;
    text-align: right;
    flex-shrink: 0;
}
.themes__footer {
    text-align: center;
    margin-top: 36px;
}

/* Couleurs spécifiques des pills selon badge */
.theme-pill.badge--ai     { --pill-color: rgba(0,200,255,.18);   --pill-border: rgba(0,200,255,.35); }
.theme-pill.badge--data   { --pill-color: rgba(249,160,27,.12);  --pill-border: rgba(249,160,27,.3); }
.theme-pill.badge--security{ --pill-color: rgba(212,20,90,.12);  --pill-border: rgba(212,20,90,.3); }
.theme-pill.badge--cloud  { --pill-color: rgba(139,53,214,.12);  --pill-border: rgba(139,53,214,.3); }

.theme-pill.badge--ai,
.theme-pill.badge--data,
.theme-pill.badge--security,
.theme-pill.badge--cloud {
    background: var(--pill-color, var(--bg-card));
    border-color: var(--pill-border, var(--border));
}

/* ── RESPONSIVE premium upgrades ───────────────────────────── */
@media (max-width: 1024px) {
    .venue__inner { grid-template-columns: 1fr; }
    .venue__photo-col { min-height: 360px; }
    .venue__photo-frame { min-height: 360px; }
}
@media (max-width: 900px) {
    .about__inner { grid-template-columns: 1fr; }
    .about__photo-frame { min-height: 340px; }
    .testimonial-featured { padding: 32px 28px; }
    .testimonial-featured__text { font-size: 1rem; }
    .gallery__hero-img { height: 300px; }
    .partners__join { flex-direction: column; }
}
@media (max-width: 600px) {
    .about__photo-stat--btob   { left: 12px; bottom: 12px; }
    .about__photo-stat--guests { right: 12px; bottom: 12px; }
    .about__photo-badge { width: 60px; height: 60px; top: 12px; right: 12px; }
    .testimonial-featured { padding: 24px 20px; }
    .partners__upload-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION SPACING SYSTEM — harmonisation globale
   ══════════════════════════════════════════════════════════════ */

/* Pages Elementor : sections standard (hors hero / wrappers accueil) */
.ait-el-page .elementor-top-section:not(.ait-el-hero):not(.ait-bilan-hero):not(.ait-el-accueil-hero):not(.ait-el-home-sec):not(.ait-el-stats) {
    padding-top: var(--section-y) !important;
    padding-bottom: var(--section-y) !important;
}

/* Respiration réduite juste après un hero */
.ait-el-page .elementor-section.ait-el-hero + .elementor-top-section:not(.ait-el-home-sec),
.ait-el-page .elementor-section.ait-bilan-hero + .elementor-top-section:not(.ait-el-home-sec),
.ait-el-page .elementor-section.ait-el-accueil-hero + .elementor-top-section:not(.ait-el-home-sec) {
    padding-top: var(--section-y-sm) !important;
}

/* Sections Elementor typées AIT */
.elementor-section.ait-el-section-alt,
.elementor-section.ait-el-section-glow,
.elementor-section.ait-el-mesh,
.elementor-section.ait-el-partners-section,
.elementor-section.ait-el-bilan-guests,
.elementor-section.ait-el-bilan-quotes,
.elementor-section.ait-rdv-sec,
.elementor-section.ait-partner-form-sec {
    padding-block: var(--section-y) !important;
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM POLISH v3.36
   ══════════════════════════════════════════════════════════════ */

/* Séparateur animé entre sections Elementor */
.ait-el-page .elementor-section + .elementor-section:not(.cta-section)::before {
    content: '';
    display: block;
    height: 1px;
    max-width: min(960px, 88vw);
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(212,20,90,.35), rgba(249,160,27,.25), transparent);
    opacity: .45;
}

/* CTA Elementor unifié */
.elementor-section.ait-el-cta-sec.cta-section {
    padding-block: var(--section-y-lg) !important;
    overflow: hidden;
}
.elementor-section.ait-el-cta-sec .cta-section__inner {
    max-width: var(--layout-max);
    margin: 0 auto;
    padding-inline: var(--layout-gutter);
}

/* Grille partenaires inner pages */
.ait-el-partners-grid.partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.partner-logo__monogram {
    font-family: var(--f-title);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: rgba(255,255,255,.18);
}

/* Icônes SVG unifiées */
.ait-icon,
.ait-pb-card__icon-svg,
.ait-step__icon-svg,
.ait-lieu-format__list-icon,
.ait-contact-card__list-icon {
    flex-shrink: 0;
    color: var(--elec);
}
.ait-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0,200,255,.08);
    border: 1px solid rgba(0,200,255,.2);
    color: var(--elec);
}
.ait-contact-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ait-lieu-format__list li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ait-lieu-format__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ora);
}
.ait-pb-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.ait-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--elec);
}

/* Card glow étendu */
.ait-pb-card,
.ait-day-card,
.invite-formula-card,
.ait-contact-card,
.testimonial-featured {
    position: relative;
    overflow: hidden;
}
.ait-pb-card::before,
.ait-day-card::before,
.invite-formula-card::before,
.ait-contact-card::before,
.testimonial-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,200,255,.09) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--t-fast);
    pointer-events: none;
    z-index: 0;
}
.ait-pb-card:hover::before,
.ait-day-card:hover::before,
.invite-formula-card:hover::before,
.ait-contact-card:hover::before,
.testimonial-featured:hover::before {
    opacity: 1;
}

/* Bilan stats labels */
.ait-bilan-stat__lbl {
    font-size: 10px;
}

/* Lightbox */
.ait-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4,7,20,.92);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
}
.ait-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility 0s linear 0s;
}
.ait-lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    background: rgba(10,14,39,.6);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
.ait-lightbox__figure {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    margin: 0;
}
.ait-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 78vh;
    border-radius: var(--r);
    box-shadow: var(--shadow);
}
.ait-lightbox__caption {
    margin-top: 14px;
    text-align: center;
    color: var(--muted-l);
    font-size: .9rem;
}

/* Thème pills — glow au hover */
.theme-pill:hover {
    box-shadow: 0 0 24px var(--pill-border, rgba(0,200,255,.2));
}

/* Quotes — glyphe Volte */
.testimonial-featured__quote-mark,
.ait-bilan-quote-featured__mark {
    font-family: var(--f-title);
    font-style: normal;
    font-weight: 700;
    color: var(--ora);
    opacity: .35;
}

/* ══════════════════════════════════════════════════════════════
   FORMULAIRES GF — Alignement champs composés + selects natifs
   ══════════════════════════════════════════════════════════════ */

/* Nom : masquer le label/legend principal si sous-champs Prénom/Nom (GF 2.5+ = legend) */
.gform_wrapper .gfield--type-name:has(.name_first, .name_last, .gform-grid-row) > .gfield_label,
.gform_wrapper .gfield--type-name:has(.name_first, .name_last, .gform-grid-row) > legend.gfield_label,
.gform_wrapper .gfield--input-type-name:has(.gform-grid-row) > .gfield_label,
.gform_wrapper .gfield--input-type-name:has(.gform-grid-row) > legend.gfield_label,
.gform_wrapper fieldset.gfield--type-name:has(.name_first) > legend.gfield_label {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Fieldset Nom — reset navigateur */
.gform_wrapper .gfield--type-name,
.gform_wrapper .gfield--input-type-name,
.gform_wrapper fieldset.gfield--type-name {
    border: 0 !important;
    padding: 0 !important;
    margin: 0 0 6px !important;
    min-width: 0 !important;
}

/* Reset floats legacy GF sur champs composés */
.gform_wrapper .ginput_complex,
.gform_wrapper .ginput_container_name,
.gform_wrapper .ginput_container--name,
.gform_wrapper .ginput_container.gform-grid-row,
.gform_wrapper .ginput_container_address {
    overflow: visible !important;
    width: 100% !important;
}
.gform_wrapper .ginput_complex::before,
.gform_wrapper .ginput_complex::after {
    display: none !important;
    content: none !important;
}
.gform_wrapper .ginput_container_name .name_first,
.gform_wrapper .ginput_container_name .name_last,
.gform_wrapper .ginput_complex .ginput_left,
.gform_wrapper .ginput_complex .ginput_right,
.gform_wrapper .ginput_complex span {
    float: none !important;
    clear: none !important;
}

.gform_wrapper .ginput_container_name,
.gform_wrapper .ginput_complex.ginput_container_name,
.gform_wrapper .ginput_container--name.gform-grid-row,
.gform_wrapper .ginput_container.ginput_container--name {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 20px !important;
    width: 100% !important;
}
.gform_wrapper .ginput_container_name.no_last_name,
.gform_wrapper .ginput_container--name.no_last_name,
.gform_wrapper .gform-grid-row.no_last_name,
.gform_wrapper .ginput_container_name:not(:has(.name_last input:not([type="hidden"]))),
.gform_wrapper .ginput_container--name:not(:has(.name_last input:not([type="hidden"]))) {
    grid-template-columns: 1fr !important;
}
.gform_wrapper .ginput_container_name .name_first,
.gform_wrapper .ginput_container_name .name_last,
.gform_wrapper .ginput_container--name .name_first,
.gform_wrapper .ginput_container--name .name_last,
.gform_wrapper .gform-grid-row .name_first,
.gform_wrapper .gform-grid-row .name_last {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.gform_wrapper .ginput_container_name .name_first label,
.gform_wrapper .ginput_container_name .name_last label,
.gform_wrapper .ginput_container--name .name_first label,
.gform_wrapper .ginput_container--name .name_last label,
.gform_wrapper .gfield--type-name .gform-field-label--type-sub {
    order: -1 !important;
    display: block !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
    font-family: var(--f-body) !important;
    font-size: .72rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
    text-align: left !important;
}
.gform_wrapper .gfield--type-name.gfield_contains_required .gform-field-label--type-sub::after {
    content: ' *';
    color: #E8326F;
}
.gform_wrapper .ginput_container_name input[type="text"],
.gform_wrapper .ginput_container--name input[type="text"],
.gform_wrapper .gfield--type-name .gform-grid-row input[type="text"] {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
    order: 0 !important;
}

/* GF 2.5+ — grille Nom (thème Orbital / framework) */
.gform_wrapper .gfield--type-name .gform-grid-row,
.gform_wrapper .gfield--input-type-name .gform-grid-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 20px !important;
    width: 100% !important;
}
.gform_wrapper .gfield--type-name .gform-grid-row.no_last_name,
.gform_wrapper .gfield--input-type-name .gform-grid-row.no_last_name {
    grid-template-columns: 1fr !important;
}
.gform_wrapper .gfield--type-name .gform-grid-col,
.gform_wrapper .gfield--input-type-name .gform-grid-col {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    width: 100% !important;
}
.gform_wrapper .gfield--type-name .gform-grid-col label,
.gform_wrapper .gfield--input-type-name .gform-grid-col label {
    order: -1 !important;
    margin-bottom: 6px !important;
}

/* Email : un seul label visible (confirmation masquée) */
.gform_wrapper .gfield--type-email .ginput_container_email label,
.gform_wrapper .ginput_container_email .ginput_left label,
.gform_wrapper .ginput_container_email .ginput_right label {
    display: none !important;
}

/* Adresse : grille propre */
.gform_wrapper .gfield--type-address > .gfield_label {
    margin-bottom: 10px !important;
}
.gform_wrapper .ginput_container_address {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 20px !important;
    width: 100% !important;
    float: none !important;
}
.gform_wrapper .ginput_container_address span {
    display: flex !important;
    flex-direction: column !important;
    float: none !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}
.gform_wrapper .ginput_container_address span.address_line_1,
.gform_wrapper .ginput_container_address span.address_line_2,
.gform_wrapper .ginput_container_address span.address_country {
    grid-column: 1 / -1 !important;
}
.gform_wrapper .ginput_container_address label {
    order: -1 !important;
    display: block !important;
    margin: 0 0 6px !important;
    font-size: .72rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
}
.gform_wrapper .ginput_container_address input,
.gform_wrapper .ginput_container_address select {
    width: 100% !important;
    margin: 0 !important;
}

/* Select natif — valeur toujours visible */
.gform_wrapper select,
.gform_wrapper .ginput_container_select select,
.gform_wrapper .address_country select {
    color: #0A0E27 !important;
    -webkit-text-fill-color: #0A0E27 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.gform_wrapper select option {
    color: #0A0E27 !important;
    background: var(--form-field-bg) !important;
}
.gform_wrapper select option:checked {
    color: #0A0E27 !important;
    background: var(--form-field-bg) !important;
}

/* Chosen (fallback si encore actif) */
.gform_wrapper .chosen-container-single .chosen-single {
    background-color: var(--form-field-bg) !important;
    color: #0A0E27 !important;
}
.gform_wrapper .chosen-container-single .chosen-single span {
    color: #0A0E27 !important;
    -webkit-text-fill-color: #0A0E27 !important;
    opacity: 1 !important;
}

/* Sous-labels GF */
.gform_wrapper .ginput_complex label:not(.gfield_label),
.gform_wrapper .ginput_container label:not(.gfield_label) {
    font-size: .72rem !important;
    font-weight: 600 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: #9386bf !important;
}

@media (max-width: 640px) {
    .gform_wrapper .ginput_container_name,
    .gform_wrapper .ginput_container_address {
        grid-template-columns: 1fr !important;
    }
}

/* Reduced 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;
    }
    [data-reveal],
    .ait-el-reveal {
        opacity: 1;
        transform: none;
    }
    .footer__glow-line,
    .elementor-section.ait-el-hero::after,
    .elementor-section.ait-bilan-hero::after {
        animation: none;
    }
}

/* ── PERF — rendu différé sections hors écran (desktop uniquement) ── */
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
    .stats,
    .about,
    .themes,
    .btob,
    .venue,
    .testimonials,
    .cta-section,
    .ait-el-page .elementor-top-section:not(.ait-el-accueil-hero):not(.ait-bilan-hero):not(.ait-el-hero) {
        content-visibility: auto;
        contain-intrinsic-size: auto 520px;
    }
    #hero,
    .hero,
    .ait-el-accueil-hero,
    .site-header,
    .gallery,
    .partners,
    .elementor-widget-gallery,
    .elementor-widget-image-gallery,
    .elementor-section:has(.elementor-widget-gallery),
    .elementor-section:has(.elementor-widget-image-gallery),
    .elementor-section.ait-el-partners-section {
        content-visibility: visible;
    }
    #hero-canvas {
        contain: strict;
        will-change: transform;
    }
    .hero__halo {
        will-change: opacity;
    }
}

