/* ===== Nerolia Academy — v3.0 Violet Premium ===== */

/* ── Variables ── */
:root {
    --violet-deep:   #13003E;
    --violet-mid:    #260B6B;
    --violet-bright: #5B21B6;
    --violet-light:  #7C3AED;
    --nerolia:       #00C28B;
    --nerolia-light: #00E5A3;
    --nerolia-dark:  #008F65;
    --slate-50:  #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-500: #64748B;
    --slate-900: #0F172A;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
    color: var(--slate-900);
    background: white;
    padding-top: 72px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Satoshi', system-ui, -apple-system, sans-serif;
    font-weight: 700;
}


/* ── Gradient Text ── */
.text-gradient-violet {
    background: linear-gradient(135deg, #A78BFA 0%, #00C28B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-nerolia { color: var(--nerolia); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav-white {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #f1f5f9;
    top: 0;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}
.nav-white.nav-hidden {
    top: -80px;
}
.nav-white.nav-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-bottom-color: transparent;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
    position: relative;
}
/* Invisible bridge: keeps hover alive while mouse crosses gap to panel */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 16px;
}
.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: 'Satoshi', system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: #0f172a; }
.nav-dropdown-btn svg { transition: transform 0.2s ease; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    margin-left: -135px;
    background: white;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 6px;
    width: 270px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s;
}
.nav-dropdown-item:hover { background: #f8f7ff; }
.nav-dropdown-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ede9fe, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.nav-dropdown-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1px;
}
.nav-dropdown-item span {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* ── Lead Magnet Popup ── */
.lead-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 0, 26, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.lead-overlay.visible {
    opacity: 1;
    pointer-events: all;
}
.lead-card {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    padding: 40px 36px 32px;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}
.lead-overlay.visible .lead-card {
    transform: translateY(0) scale(1);
}
.lead-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.lead-close:hover { background: #e2e8f0; }
.lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ede9fe, #d1fae5);
    color: #5B21B6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.lead-card h3 {
    font-size: 1.55rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.lead-card .lead-sub {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}
.lead-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.lead-perks li {
    font-size: 0.875rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lead-perks li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A78BFA, #00C28B);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lead-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}
.lead-form input:focus { border-color: #7C3AED; background: white; }
.lead-form input::placeholder { color: #94a3b8; }
.lead-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.lead-rgpd input[type="checkbox"] {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #7C3AED;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}
.lead-rgpd span {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}
.lead-rgpd span a {
    color: #7C3AED;
    text-decoration: underline;
}
.lead-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #5B21B6, #7C3AED);
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(91,33,182,0.35);
    margin-top: 4px;
}
.lead-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91,33,182,0.45);
}
.lead-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.lead-skip {
    text-align: center;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #94a3b8;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    font-family: 'Satoshi', sans-serif;
}
.lead-skip:hover { color: #64748b; }
.lead-success {
    text-align: center;
    padding: 12px 0 8px;
}
.lead-success .lead-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}
.lead-success h3 {
    margin-bottom: 8px;
}
.lead-success p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
}
.lead-success-close {
    padding: 12px 32px;
    background: linear-gradient(135deg, #5B21B6, #7C3AED);
    color: white;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}
@media (max-width: 480px) {
    .lead-card { padding: 32px 24px 24px; }
    .lead-card h3 { font-size: 1.3rem; }
}

/* ── WhatsApp floating button ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 13px 20px 13px 16px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.40);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.50);
}
.wa-float svg {
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .wa-float span { display: none; }
    .wa-float { padding: 14px; bottom: 20px; right: 20px; }
}

/* ─────────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────────── */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
}
/* Petit triangle */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    background: #f5f3ff;
    color: #5B21B6;
}
.nav-dropdown-item-icon {
    width: 32px;
    height: 32px;
    background: #ede9fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-dropdown-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 0;
}
.nav-dropdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px 6px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero-section {
    background: linear-gradient(150deg, #0E0035 0%, #1A0850 45%, #260B6B 100%);
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Formes décoratives éditoriales */
.hero-shape-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(91,33,182,0.22) 0%, transparent 65%);
    top: -250px;
    right: -150px;
    pointer-events: none;
}
.hero-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.035);
    border-radius: 50%;
    bottom: -120px;
    left: -100px;
    pointer-events: none;
}

/* Eyebrow éditorial */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}
.hero-eyebrow .sep {
    color: var(--nerolia);
    font-size: 0.5rem;
    opacity: 0.8;
}

/* Cartes visuelles droite */
.hero-card {
    position: absolute;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
}
.hero-card-main {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 28px 32px;
    top: 0;
    right: 0;
    width: 280px;
}
.hero-card-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    bottom: 20px;
    right: 30px;
    width: 260px;
}
.hero-card-badge {
    background: rgba(0,194,139,0.10);
    border: 1px solid rgba(0,194,139,0.20);
    padding: 12px 18px;
    bottom: 30px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Photo hero ── */
.hero-photo-wrapper {
    position: relative;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
}
.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,0,53,0.10) 0%, rgba(14,0,53,0.65) 100%);
}
.hero-photo-stat {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10,0,30,0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
}
.hero-photo-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.hero-photo-stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.50);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(10,0,30,0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,194,139,0.25);
    border-radius: 50px;
    color: rgba(255,255,255,0.80);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Avis Google / Trustpilot */
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}
.review-score {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
}
.review-stars {
    font-size: 0.75rem;
    color: #FBBF24;
    letter-spacing: 1px;
}
.review-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
}

/* Social proof chips */
.proof-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
/* Bouton violet (nav) */
.btn-violet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--violet-bright);
    color: white;
    font-weight: 700;
    border-radius: 10px;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-violet:hover {
    background: var(--violet-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.30);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--violet-mid);
    font-weight: 800;
    border-radius: 10px;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--violet-bright);
    color: white;
    font-weight: 800;
    border-radius: 14px;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.22s ease;
    box-shadow: 0 8px 24px rgba(91,33,182,0.30);
}
.btn-primary-lg:hover {
    background: var(--violet-mid);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(91,33,182,0.40);
}

/* CTA vert (pour les sections claires) */
.btn-green-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--nerolia);
    color: white;
    font-weight: 800;
    border-radius: 14px;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-green-lg:hover {
    background: var(--nerolia-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 194, 139, 0.35);
    color: white;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--nerolia);
    color: white;
    font-weight: 800;
    border-radius: 10px;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-green:hover {
    background: var(--nerolia-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 194, 139, 0.30);
}

/* CTAs hero particulier / entreprise */
.btn-cta-particulier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: var(--violet-bright);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-cta-particulier:hover {
    background: var(--violet-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.40);
}

.btn-cta-entreprise {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-cta-entreprise:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 700;
    border-radius: 14px;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.btn-secondary-lg:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   METRICS BAR
───────────────────────────────────────── */
.metric-num {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--violet-bright), var(--violet-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.metric-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 500;
}
.metric-divider {
    width: 1px;
    background: var(--slate-200);
    height: 48px;
    align-self: center;
}

/* ─────────────────────────────────────────
   SECTION TAGS
───────────────────────────────────────── */
.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(91, 33, 182, 0.07);
    border: 1px solid rgba(91, 33, 182, 0.15);
    color: var(--violet-bright);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.section-tag-light {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.80);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
}

/* ─────────────────────────────────────────
   OFFER CARDS
───────────────────────────────────────── */
.offer-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(91, 33, 182, 0.09);
    border-color: rgba(91, 33, 182, 0.18);
}

/* Carte featured violet */
.offer-card-featured {
    background: linear-gradient(155deg, var(--violet-deep) 0%, var(--violet-mid) 100%);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12), 0 20px 48px rgba(91, 33, 182, 0.20);
}
.offer-card-featured:hover {
    border-color: rgba(124, 58, 237, 0.55);
    box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.28), 0 28px 56px rgba(91, 33, 182, 0.28);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--nerolia), var(--nerolia-light));
    color: white;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.offer-icon {
    width: 48px;
    height: 48px;
    background: rgba(91, 33, 182, 0.07);
    border: 1px solid rgba(91, 33, 182, 0.13);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.offer-icon-dark {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}
.offer-feature::before {
    content: '✓';
    color: var(--nerolia);
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.offer-feature-dark {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}
.offer-feature-dark::before {
    content: '✓';
    color: var(--nerolia);
    font-weight: 900;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--violet-bright);
    text-decoration: none;
    transition: gap 0.2s ease;
}
.offer-link:hover { gap: 10px; }

.btn-offer-featured {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    background: var(--nerolia);
    color: white;
    font-size: 0.875rem;
    font-weight: 800;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-offer-featured:hover {
    background: var(--nerolia-light);
    box-shadow: 0 10px 28px rgba(0, 194, 139, 0.35);
}

/* ─────────────────────────────────────────
   ROADMAP TIMELINE
───────────────────────────────────────── */
.roadmap-section { background: var(--slate-50); }
.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}
.timeline-step {
    position: relative;
    z-index: 10;
    flex: 1;
    text-align: center;
}
.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .timeline { flex-direction: column; align-items: center; }
    .timeline-line { top: 0; left: 50%; width: 2px; height: 100%; }
    .timeline-step { margin-bottom: 2.5rem; }
}

/* ─────────────────────────────────────────
   CALENDAR ROADMAP
───────────────────────────────────────── */
.roadmap-calendar { display: flex; justify-content: center; position: relative; }
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 46px);
    grid-auto-rows: 46px;
    gap: 8px;
    padding: 24px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.calendar-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}
.calendar-cell.highlight {
    background: var(--violet-bright);
    color: white;
    box-shadow: 0 4px 12px rgba(91,33,182,0.35);
}
.annotation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
}
.annotation.left { left: -260px; text-align: right; }
.annotation.right { right: -260px; text-align: left; }
.annot-item { max-width: 200px; }
.icon-row { display: flex; gap: 6px; justify-content: center; }
@media (max-width: 768px) {
    .roadmap-calendar { flex-direction: column; }
    .annotation { position: static; transform: none; width: auto; text-align: center; margin-bottom: 1.5rem; }
    .annotation.left, .annotation.right { left: auto; right: auto; }
}

/* ─────────────────────────────────────────
   ROADMAP — CLICKWAY STYLE
───────────────────────────────────────── */
.roadmap-ck-section {
    background: var(--slate-50);
    padding: 96px 0 112px;
}
.roadmap-ck-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.roadmap-ck-accent {
    background: linear-gradient(135deg, #A78BFA 0%, #00C28B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-ck-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.roadmap-ck-annot {
    width: 220px;
    flex-shrink: 0;
}
.roadmap-ck-annot.left { text-align: right; }
.roadmap-ck-annot.right { text-align: left; }
.ck-annot-item { max-width: 200px; }
.roadmap-ck-annot.left .ck-annot-item { margin-left: auto; }

/* Step badge (replaces icon row) */
.ck-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--violet-bright);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.roadmap-ck-annot.left .ck-step-badge { margin-left: auto; display: flex; }
.ck-annot-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0A0A0A;
    margin: 0 0 5px;
    line-height: 1.3;
}
.ck-annot-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
}
.ck-accent-text {
    background: linear-gradient(135deg, #A78BFA 0%, #00C28B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ck-accent-link {
    color: var(--nerolia);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 800;
}

/* Calendar */
.roadmap-ck-cal-zone {
    position: relative;
    flex-shrink: 0;
    margin: 0 72px;
}
.roadmap-ck-cal {
    display: grid;
    grid-template-columns: repeat(7, 64px);
    grid-auto-rows: 64px;
    gap: 12px;
    padding: 32px;
    background: white;
    border-radius: 32px;
    box-shadow: 14px 14px 50px rgba(0,0,0,0.10), -2px -2px 20px rgba(0,0,0,0.04);
    transform: rotate(-4deg);
    transform-origin: center center;
    transition: transform 0.55s ease;
    will-change: transform;
}
.ck-day {
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: default;
}
.ck-day-num {
    position: absolute;
    top: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
}
.ck-day-icon { font-size: 1.35rem; margin-top: 8px; }

.ck-day.empty { background: #E5E7EB; }
.ck-day.empty .ck-day-num, .ck-day.empty .ck-day-icon { display: none; }

.ck-day.soft { background: #EDE9FE; }
.ck-day.soft .ck-day-num {
    position: static;
    font-size: 0.72rem;
    color: var(--violet-bright);
    opacity: 0.7;
}
.ck-day.soft:hover {
    transform: scale(1.10);
    background: #DDD6FE;
}

.ck-day.active { background: var(--violet-bright); }
.ck-day.active .ck-day-num { color: rgba(255,255,255,0.8); }
.ck-day.active:hover {
    transform: scale(1.16);
    box-shadow: 0 6px 20px rgba(91,33,182,0.45);
    z-index: 3;
}

.ck-day.special {
    background: var(--nerolia);
    box-shadow: 0 4px 18px rgba(0,194,139,0.5);
    transform: scale(1.14);
    z-index: 2;
}
.ck-day.special:hover {
    transform: scale(1.22);
    box-shadow: 0 8px 28px rgba(0,194,139,0.60);
    z-index: 3;
}
.ck-day.special .ck-day-num { color: rgba(255,255,255,0.85); font-weight: 900; }
.ck-day.special .ck-day-icon { font-size: 1.5rem; }

/* SVG arrows */
.roadmap-ck-arrows {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 5;
}

/* CTA */
.roadmap-ck-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0A0A0A;
    color: white !important;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.roadmap-ck-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

/* Benefit pills */
.roadmap-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.roadmap-benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(91,33,182,0.07);
    border: 1px solid rgba(91,33,182,0.14);
    color: var(--violet-bright);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.roadmap-benefit-pill::before {
    content: '✓';
    font-size: 0.65rem;
    font-weight: 900;
}

/* Annotation step interactivity */
.ck-annot-item {
    border-radius: 14px;
    padding: 14px;
    margin: -14px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ck-annot-item:hover,
.ck-annot-item.ck-annot-active {
    background: rgba(91,33,182,0.06);
    transform: translateY(-3px);
}
.ck-annot-item.ck-annot-active--left {
    box-shadow: inset -3px 0 0 0 var(--violet-bright);
}
.ck-annot-item.ck-annot-active--right {
    box-shadow: inset 3px 0 0 0 var(--nerolia);
}

/* Lit calendar cell (triggered by step hover) */
@keyframes ck-lit-pulse {
    0%   { transform: scale(1.14); }
    50%  { transform: scale(1.30); }
    100% { transform: scale(1.14); }
}
.ck-day.active.ck-day-lit {
    animation: ck-lit-pulse 0.7s ease infinite;
    box-shadow: 0 0 0 5px rgba(91,33,182,0.22), 0 6px 22px rgba(91,33,182,0.5);
    z-index: 4;
}
.ck-day.special.ck-day-lit {
    animation: ck-lit-pulse 0.7s ease infinite;
    box-shadow: 0 0 0 5px rgba(0,194,139,0.25), 0 8px 28px rgba(0,194,139,0.6);
    z-index: 4;
}
.ck-day.soft.ck-day-lit {
    background: var(--violet-bright);
    box-shadow: 0 0 0 4px rgba(91,33,182,0.2);
    transform: scale(1.18);
    z-index: 4;
}
.ck-day.soft.ck-day-lit .ck-day-num {
    position: static;
    color: rgba(255,255,255,0.9);
    opacity: 1;
    font-size: 0.72rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .roadmap-ck-wrapper { flex-direction: column; gap: 2.5rem; }
    .roadmap-ck-arrows { display: none; }
    .roadmap-ck-annot {
        width: 100%;
        max-width: 580px;
        display: flex;
        gap: 3rem;
        text-align: left;
    }
    .roadmap-ck-annot.left,
    .roadmap-ck-annot.right { text-align: left; }
    .roadmap-ck-annot.left .ck-annot-item { margin-left: 0; }
    .roadmap-ck-annot.left .ck-step-badge { margin-left: 0; }
    .roadmap-ck-cal-zone { margin: 0; }
    .roadmap-ck-cal { transform: none; box-shadow: 0 12px 40px rgba(0,0,0,0.10); }
}
@media (max-width: 640px) {
    /* 2-col steps grid on top, calendar below */
    .roadmap-ck-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left right"
            "cal  cal";
        gap: 20px 16px;
        align-items: start;
    }
    .roadmap-ck-annot.left  { grid-area: left;  width: 100%; max-width: 100%; flex-direction: column; gap: 20px; text-align: left; }
    .roadmap-ck-annot.right { grid-area: right; width: 100%; max-width: 100%; flex-direction: column; gap: 20px; text-align: left; }
    .roadmap-ck-annot.left .ck-step-badge { margin-left: 0; display: inline-flex; }
    .roadmap-ck-cal-zone { grid-area: cal; margin: 0; }

    /* Calendar — shrink to fit mobile */
    .roadmap-ck-cal {
        grid-template-columns: repeat(7, 1fr);
        grid-auto-rows: calc((100vw - 64px) / 7);
        gap: 5px;
        padding: 14px;
    }
    .ck-day-icon { font-size: 0.82rem; margin-top: 3px; }
    .ck-day-num { font-size: 0.48rem; top: 5px; }
    .ck-day.special { transform: scale(1.08); }
    .ck-day.soft .ck-day-num { font-size: 0.52rem; }

    /* Step badges + text compact */
    .ck-annot-item { max-width: 100%; }
    .ck-annot-title { font-size: 0.875rem; }
    .ck-annot-desc  { font-size: 0.75rem; }
    .ck-step-badge  { width: 28px; height: 28px; font-size: 0.65rem; margin-bottom: 8px; }
}

/* ─────────────────────────────────────────
   NOS EXPERTISES IA — BENTO CLICKWAY
───────────────────────────────────────── */
.expertises-bento-section {
    background: var(--slate-50);
    padding: 88px 0 96px;
}

/* Wrapper (float labels + arrows anchor) */
.exp-bento-wrapper {
    position: relative;
    padding-top: 68px;
}

/* Floating labels */
.exp-float-label {
    position: absolute;
    top: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0F172A;
    white-space: nowrap;
}
.exp-float-label em { font-style: italic; }
.exp-float-left  { left: 0; }
.exp-float-right { right: 0; text-align: right; }

/* SVG arrows */
.exp-bento-arrows {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 5;
}

/* Grid */
.exp-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 220px 220px 200px;
    gap: 12px;
}

/* Grid placements */
.exp-bento-tall-left  { grid-column: 1 / 3; grid-row: 1 / 3; }
.exp-bento-mid-top    { grid-column: 3 / 5; grid-row: 1 / 2; }
.exp-bento-tall-right { grid-column: 5 / 7; grid-row: 1 / 3; }
.exp-bento-mid-bottom { grid-column: 3 / 5; grid-row: 2 / 3; }
.exp-bento-wide-left  { grid-column: 1 / 4; grid-row: 3 / 4; }
.exp-bento-wide-right { grid-column: 4 / 7; grid-row: 3 / 4; }

/* Card base */
.exp-bento-card {
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
    text-decoration: none;
}
.exp-bento-card:hover { transform: translateY(-3px); }

/* Card variants */
.exp-bento-dark {
    background: var(--violet-deep);
}
.exp-bento-dark:hover {
    box-shadow: 0 18px 44px rgba(19,0,62,0.30);
}
.exp-bento-nerolia {
    background: linear-gradient(145deg, var(--nerolia-dark) 0%, var(--nerolia) 60%, var(--nerolia-light) 100%);
}
.exp-bento-nerolia:hover {
    box-shadow: 0 18px 44px rgba(0,194,139,0.30);
}
.exp-bento-violet {
    background: linear-gradient(145deg, var(--violet-mid) 0%, var(--violet-bright) 100%);
}
.exp-bento-violet:hover {
    box-shadow: 0 18px 44px rgba(91,33,182,0.30);
}
.exp-bento-light {
    background: white;
    border: 1px solid #E2E8F0;
}
.exp-bento-light:hover {
    border-color: rgba(91,33,182,0.2);
    box-shadow: 0 12px 32px rgba(91,33,182,0.08);
}
.exp-bento-photo {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.exp-bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.exp-bento-photo:hover .exp-bento-img {
    transform: scale(1.06);
}
.exp-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12) 0%, rgba(10,0,40,0.84) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}
.exp-bento-photo .exp-bento-num  { color: rgba(255,255,255,0.55); }
.exp-bento-photo .exp-bento-title { color: #fff; }
.exp-bento-photo .exp-bento-desc  { color: rgba(255,255,255,0.80); }
.exp-bento-photo .exp-bento-link  { color: rgba(255,255,255,0.90); }

/* Card internals */
.exp-bento-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: auto;
    padding-bottom: 16px;
}
.exp-bento-body {
    display: flex;
    flex-direction: column;
}
.exp-bento-num {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #CBD5E1;
}
.exp-bento-dark   .exp-bento-num,
.exp-bento-nerolia .exp-bento-num,
.exp-bento-violet  .exp-bento-num { color: rgba(255,255,255,0.28); }

/* Icon */
.exp-bento-icon-wrap {
    width: 40px;
    height: 40px;
    background: #EDE9FE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--violet-bright);
    flex-shrink: 0;
}
.exp-icon-dark   { background: rgba(255,255,255,0.12); color: white; }
.exp-icon-nerolia { background: rgba(255,255,255,0.20); color: white; }
.exp-icon-violet  { background: rgba(255,255,255,0.15); color: white; }

/* Title */
.exp-bento-title {
    font-size: 0.97rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    line-height: 1.35;
}
.exp-bento-dark    .exp-bento-title,
.exp-bento-nerolia .exp-bento-title,
.exp-bento-violet  .exp-bento-title { color: white; }

/* Desc */
.exp-bento-desc {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}
.exp-bento-dark    .exp-bento-desc,
.exp-bento-nerolia .exp-bento-desc,
.exp-bento-violet  .exp-bento-desc { color: rgba(255,255,255,0.60); }

/* Link */
.exp-bento-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--nerolia);
    text-decoration: none;
    letter-spacing: 0.02em;
}
.exp-bento-link:hover { text-decoration: underline; }
.exp-bento-link-light { color: rgba(255,255,255,0.92); }
.exp-bento-link-light:hover { color: white; }

/* Responsive */
@media (max-width: 1100px) {
    .exp-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 220px 220px 200px auto;
    }
    .exp-bento-tall-left  { grid-column: 1 / 3; grid-row: 1 / 3; }
    .exp-bento-mid-top    { grid-column: 3 / 5; grid-row: 1 / 2; }
    .exp-bento-tall-right { grid-column: 3 / 5; grid-row: 2 / 3; }
    .exp-bento-mid-bottom { grid-column: 1 / 3; grid-row: 3 / 4; }
    .exp-bento-wide-left  { grid-column: 3 / 5; grid-row: 3 / 4; }
    .exp-bento-wide-right { grid-column: 1 / 5; grid-row: 4 / 5; }
    .exp-float-label, .exp-bento-arrows { display: none; }
    .exp-bento-wrapper { padding-top: 0; }
}
@media (max-width: 640px) {
    .exp-bento-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .exp-bento-card { min-height: 180px; }
}

/* ─────────────────────────────────────────
   STEP CARDS
───────────────────────────────────────── */
.step-card {
    padding: 32px;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.step-card:hover {
    border-color: rgba(91, 33, 182, 0.18);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.07);
    transform: translateY(-3px);
}
.step-card-accent {
    border-color: rgba(91, 33, 182, 0.18);
    box-shadow: 0 8px 24px rgba(91, 33, 182, 0.08);
}

.step-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(91, 33, 182, 0.10);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}
.step-num-accent {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--violet-bright), var(--violet-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

/* ─────────────────────────────────────────
   DARK SECTION (Why Nerolia)
───────────────────────────────────────── */
.dark-section {
    background: linear-gradient(155deg, var(--violet-deep) 0%, #1B0858 50%, var(--violet-mid) 100%);
    position: relative;
    overflow: hidden;
}
.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(91, 33, 182, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 26px;
    transition: all 0.25s ease;
    position: relative;
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 194, 139, 0.12);
    border: 1px solid rgba(0, 194, 139, 0.20);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

/* ─────────────────────────────────────────
   FINANCEMENT
───────────────────────────────────────── */
.financement-wrapper {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 60%, #ede9fe 100%);
    border: 1px solid rgba(91, 33, 182, 0.12);
    border-radius: 24px;
    padding: 52px;
}

.financing-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.financing-card:hover {
    border-color: rgba(91, 33, 182, 0.18);
    box-shadow: 0 8px 24px rgba(91, 33, 182, 0.06);
}

.financing-label {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(91, 33, 182, 0.07);
    color: var(--violet-bright);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 100px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonial-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.25s ease;
}
.testimonial-card:hover {
    border-color: rgba(91, 33, 182, 0.18);
    box-shadow: 0 12px 36px rgba(91, 33, 182, 0.07);
    transform: translateY(-3px);
}

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 1px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.12), rgba(91, 33, 182, 0.06));
    border: 1px solid rgba(91, 33, 182, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--violet-bright);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-item .faq-icon { transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-item.open {
    border-color: rgba(91, 33, 182, 0.20) !important;
    box-shadow: 0 4px 16px rgba(91, 33, 182, 0.06);
}

/* ─────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────── */
.cta-section {
    background: linear-gradient(155deg, var(--violet-deep) 0%, #1E0A5C 40%, #2D0D8E 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(124, 58, 237, 0.40) 0%, transparent 60%);
    pointer-events: none;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer-dark { background: #080510; }

/* ─────────────────────────────────────────
   QUALIOPI BADGE
───────────────────────────────────────── */
.qualiopi-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 28px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #166534;
}
.qualiopi-sep {
    color: #86efac;
}
.qualiopi-sep-v {
    width: 1px;
    height: 28px;
    background: #86efac;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   OPCO MARQUEE
───────────────────────────────────────── */
.opco-marquee-wrapper {
    overflow: hidden;
    position: relative;
    /* Fondu sur les bords */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.opco-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.opco-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: marquee-scroll 28s linear infinite;
}
.opco-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.opco-item {
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #475569;
    padding: 6px 24px;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.opco-item:hover {
    color: var(--violet-bright);
}

.opco-logo-item {
    display: inline-flex;
    align-items: center;
    padding: 6px 24px;
    white-space: nowrap;
    opacity: 0.65;
    transition: opacity 0.2s ease;
}
.opco-logo-item:hover { opacity: 1; }
.opco-logo-item img {
    height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.opco-dot {
    color: var(--nerolia);
    font-size: 0.5rem;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mobile-menu.open { max-height: 380px; }

/* ─────────────────────────────────────────
   ÉQUIPE EXPERTS — HERO PANELS
───────────────────────────────────────── */
.team-hero-section {
    background: #080018;
    overflow: hidden;
}
.team-hero-header {
    text-align: center;
    padding: 88px 24px 64px;
    background: white;
}
.team-hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 80vh;
    min-height: 620px;
}
.team-panel { min-height: 620px; }
.team-panel {
    position: relative;
    overflow: hidden;
    cursor: default;
}
.team-panel-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #12003a 0%, #2d007a 50%, #4c1d95 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.05em;
    user-select: none;
}
.team-panel-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}
.team-panel:hover .team-panel-photo {
    transform: scale(1.04);
}
.team-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,0,24,0.97) 0%,
        rgba(8,0,24,0.65) 35%,
        rgba(8,0,24,0.20) 60%,
        transparent 100%
    );
    z-index: 1;
}
.team-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 52px 48px;
    z-index: 2;
}
.team-panel-role {
    display: inline-block;
    background: rgba(91,33,182,0.45);
    border: 1px solid rgba(139,92,246,0.40);
    color: #c4b5fd;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}
.team-panel-name {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.035em;
    line-height: 1.0;
    margin-bottom: 14px;
}
.team-panel-school {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nerolia);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.team-panel-bio {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 440px;
}
.team-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.team-panel-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.82);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s;
}
.team-panel:hover .team-panel-tag {
    background: rgba(91,33,182,0.38);
    border-color: rgba(139,92,246,0.38);
}
/* Thin separator between panels */
.team-panel + .team-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: rgba(255,255,255,0.07);
    z-index: 3;
}
@media (max-width: 768px) {
    .team-hero-panels {
        grid-template-columns: 1fr;
        height: auto;
    }
    .team-panel { height: 90vw; min-height: 420px; }
    .team-panel + .team-panel::before { display: none; }
    .team-panel-name { font-size: 2rem; }
    .team-panel-content { padding: 36px 28px; }
}

/* ─────────────────────────────────────────
   CTA CALENDLY — CLICKWAY STYLE
───────────────────────────────────────── */
.cta-calendly-section {
    background: linear-gradient(155deg, #080018 0%, #0f0030 50%, #080018 100%);
    overflow: hidden;
    position: relative;
}
.cta-calendly-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,33,182,0.18) 0%, transparent 70%);
    top: -200px; left: -100px;
    pointer-events: none;
}
.cta-calendly-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    padding: 96px 64px;
    position: relative;
    z-index: 1;
}
.cta-left { display: flex; flex-direction: column; }
.cta-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 16px 6px 12px;
    margin-bottom: 20px;
    width: fit-content;
}
.cta-stars { color: #FBBF24; font-size: 0.75rem; letter-spacing: 1px; }
.cta-social-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}
.cta-cal-title {
    font-size: 3.4rem;
    font-weight: 900;
    color: white;
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin: 16px 0 18px;
}
.cta-cal-sub {
    color: rgba(255,255,255,0.52);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 420px;
}
.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
    font-weight: 500;
}
.cta-check {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(0,194,139,0.14);
    border: 1px solid rgba(0,194,139,0.32);
    color: #00C28B;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cta-avatar-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 32px;
}
.cta-avatar-img {
    width: 54px; height: 54px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(0,194,139,0.35);
}
.cta-avatar-name {
    font-size: 0.95rem; font-weight: 800; color: white;
}
.cta-avatar-role {
    font-size: 0.75rem; color: rgba(255,255,255,0.40);
}
.cta-logos-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.cta-logo-img {
    height: 46px; width: auto;
    opacity: 0.65;
    filter: brightness(1.3);
}
.cta-logo-sep {
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.cta-logo-text {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255,255,255,0.40);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}
.cta-logo-text span {
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    color: rgba(255,255,255,0.28);
}
.cta-calendly-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    overflow: hidden;
}
@media (max-width: 1024px) {
    .cta-calendly-inner {
        grid-template-columns: 1fr;
        padding: 64px 24px;
        gap: 48px;
    }
    .cta-cal-title { font-size: 2.4rem; }
}

/* ─────────────────────────────────────────
   RESPONSIVE — GLOBAL MOBILE
───────────────────────────────────────── */
@media (max-width: 768px) {
    .financement-wrapper { padding: 28px 20px; }
    .hero-section { min-height: auto; }
    .metric-divider { display: none; }

    /* Hero shapes — hide on mobile to avoid overflow */
    .hero-shape-1, .hero-shape-2 { display: none; }

    /* Mobile menu */
    .mobile-menu.open { max-height: 500px; }

    /* Team panels — stack vertically */
    .team-hero-panels {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .team-panel { min-height: 360px; }

    /* OPCO logo items — reduce padding */
    .opco-logo-item { padding: 6px 14px; }
    .opco-logo-item img { height: 22px; max-width: 90px; }
    .opco-item { padding: 6px 14px; font-size: 0.82rem; }

    /* Logo track items */
    .logo-item { padding: 0 24px; }
    .logo-item img { height: 18px; }
    .logo-item span { font-size: 0.8rem; }

    /* Section padding reduction */
    .dark-section { padding-top: 3rem; padding-bottom: 3rem; }
    .py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

    /* Value cards grid — single column */
    .value-card { padding: 20px; }

    /* Testimonial cards */
    .testimonial-card { padding: 20px; }

    /* CTA section */
    .cta-section { padding: 3rem 1rem; }
    .btn-primary-lg, .btn-secondary-lg {
        padding: 13px 20px;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    /* Financement section — stack grid */
    .financement-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Offres section heading */
    .offres-heading { font-size: 1.5rem !important; }

    /* Formation catalogue grid */
    .catalogue-grid {
        grid-template-columns: 1fr !important;
    }

    /* 4th sur-mesure card — reset grid-column */
    .catalogue-grid > a:last-child {
        grid-column: 1 / -1 !important;
    }

    /* Stats strip — reduce gap */
    .stats-strip { gap: 20px !important; }
    .stats-strip > div[style*="width:1px"] { display: none; }

    /* Formation header */
    .formation-header h1 { font-size: 1.75rem; }

    /* Sticky sidebar — not sticky on mobile */
    .sticky-sidebar { position: static !important; }

    /* Logo bande scrolling — smaller padding */
    .logo-item { padding: 0 18px; }

    /* Financement card padding */
    .financement-card-inner { padding: 28px 20px !important; gap: 24px !important; }

    /* Hero photo — full width */
    .hero-photo-wrap { width: 100% !important; max-width: 100% !important; }

    /* Nav bar */
    .nav-white .btn-violet { display: none; }

    /* Footer grid */
    .footer-dark .grid { gap: 6 !important; }
}

/* ─────────────────────────────────────────
   HERO — MOBILE OVERFLOW FIX
───────────────────────────────────────── */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 640px) {
    /* CTA hero buttons — full width on mobile */
    .btn-cta-particulier,
    .btn-cta-entreprise {
        width: 100%;
        white-space: normal;
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    /* Review badges — wrap on small screens */
    .review-badges-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .review-badge {
        font-size: 0.8rem;
    }

    /* Hero headline — reduce size to prevent overflow */
    .hero-section h1 {
        font-size: 2.5rem !important;
    }

    /* Team panels — photo on top, content below on dark bg */
    .team-panel {
        display: flex;
        flex-direction: column;
        min-height: auto;
        height: auto;
    }
    .team-panel-photo {
        position: relative;
        inset: auto;
        width: 100%;
        height: 260px;
        flex-shrink: 0;
        object-fit: cover;
        object-position: top center;
    }
    .team-panel-overlay {
        display: none;
    }
    .team-panel-content {
        position: relative;
        inset: auto;
        background: #08001a;
        padding: 28px 20px 32px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .team-panel-role {
        margin-bottom: 10px;
    }
    .team-panel-name {
        font-size: 2rem;
    }
    .team-panel-bio {
        max-width: 100%;
        font-size: 0.84rem;
        line-height: 1.65;
    }
    .team-panel-tags {
        justify-content: center;
    }
    .team-panel + .team-panel::before {
        display: none;
    }
}
