        /* ============================================
           STYLES AGENCE ALLBOUND - Version 3D
           ============================================ */
        
        :root {
            --allbound-blue: #408cb5;
            --allbound-blue-dark: #2d6a8a;
            --allbound-blue-light: rgba(64, 140, 181, 0.12);
            --allbound-blue-glow: rgba(64, 140, 181, 0.25);
            --allbound-pink: #da1c5c;
            --allbound-pink-light: rgba(218, 28, 92, 0.12);
            --allbound-pink-glow: rgba(218, 28, 92, 0.25);
        }

        .allbound-section {
            padding: 20px 0 0px 0;
            background: var(--bg-main);
            transition: background var(--transition-speed) ease;
            perspective: 1200px;
        }

        /* ============================================
           HERO ALLBOUND
           ============================================ */
        .allbound-hero {
            text-align: center;
            padding: 0 0 20px 0;
        }

        .allbound-hero .pill-strategy {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 18px;
            border-radius: 60px;
            font-size: 20px;
            font-weight: 500;
            color: var(--allbound-blue);
            background: var(--allbound-blue-light);
            border: 1px solid rgba(64, 140, 181, 0.2);
            margin-bottom: 16px;
            transition: all var(--transition-speed) ease;
        }

        .allbound-hero .pill-strategy i {
            font-size: 15px;
            animation: pulse-icon 2s ease-in-out infinite;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .allbound-hero h1 {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-title);
            line-height: 1.2;
            margin-bottom: 12px;
            transition: color var(--transition-speed) ease;
        }

        .allbound-hero h1 .highlight-blue {
            color: var(--allbound-blue);
        }

        .allbound-hero h1 .highlight-pink {
            color: var(--allbound-pink);
        }

        [data-theme="dark"] .allbound-hero h1 {
            color: #ffffff;
        }

        .allbound-hero .lead {
            font-size: 17px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* ============================================
           BLOC INBOUND / OUTBOUND - 3D
           ============================================ */
        .allbound-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 20px 0 40px 0;
        }

        .split-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(30px) rotateX(5deg);
            animation: fadeIn3D 0.8s ease forwards;
            position: relative;
            overflow: visible;
            transform-style: preserve-3d;
        }

        .split-card:nth-child(1) { animation-delay: 0.10s; }
        .split-card:nth-child(2) { animation-delay: 0.20s; }

        @keyframes fadeIn3D {
            from {
                opacity: 0;
                transform: translateY(40px) rotateX(8deg) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg) scale(1);
            }
        }

        .split-card:hover {
            transform: translateY(-8px) rotateX(2deg);
            box-shadow: 0 30px 80px var(--shadow-hover);
        }

        .split-card.inbound-card:hover {
            border-color: var(--allbound-pink);
        }

        .split-card.outbound-card:hover {
            border-color: var(--allbound-blue);
        }

        /* En-tête de carte */
        .split-card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }

        .split-card-header .icon-circle {
            width: 54px;
            height: 54px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            flex-shrink: 0;
            transform-style: preserve-3d;
        }

        .split-card.inbound-card .icon-circle {
            background: var(--allbound-pink);
            box-shadow: 0 8px 30px var(--allbound-pink-glow);
        }

        .split-card.outbound-card .icon-circle {
            background: var(--allbound-blue);
            box-shadow: 0 8px 30px var(--allbound-blue-glow);
        }

        .split-card:hover .icon-circle {
            transform: scale(1.05) rotateY(-8deg);
        }

        .split-card-header .card-title-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .split-card-header .card-title-group .card-sub {
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .split-card.inbound-card .card-title-group .card-sub {
            color: var(--allbound-pink);
        }

        .split-card.outbound-card .card-title-group .card-sub {
            color: var(--allbound-blue);
        }

        .split-card-header .card-title-group .card-main {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-title);
            line-height: 1.2;
            transition: color var(--transition-speed) ease;
        }

        [data-theme="dark"] .split-card-header .card-title-group .card-main {
            color: #ffffff;
        }

        .split-card .card-desc {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* ============================================
           ACTION VISUELLE INBOUND - ENTONNOIR 3D (AIDA)
           LARGE EN HAUT - ÉTROIT EN BAS
           ============================================ */
        .split-card.inbound-card .action-visual {
            position: relative;
            padding: 20px 10px 30px 10px;
            margin-bottom: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
            perspective: 800px;
        }

        /* Entonnoir 3D - Large en haut, étroit en bas */
        .funnel-3d {
            position: relative;
            width: 100%;
            max-width: 380px;
            height: 180px;
            transform-style: preserve-3d;
            animation: funnel-float 4s ease-in-out infinite;
        }

        @keyframes funnel-float {
            0%, 100% { transform: rotateX(2deg) rotateY(0deg) translateY(0); }
            50% { transform: rotateX(4deg) rotateY(3deg) translateY(-6px); }
        }

        /* Corps de l'entonnoir - Trapèze 3D (large haut, étroit bas) */
        .funnel-body {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        /* Le haut est large (entrée de l'entonnoir) */
        .funnel-body .funnel-top {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 6px;
            background: var(--allbound-pink);
            border-radius: 6px 6px 0 0;
            box-shadow: 0 -4px 30px var(--allbound-pink-glow);
            animation: funnel-pulse-top 2.5s ease-in-out infinite;
        }

        @keyframes funnel-pulse-top {
            0%, 100% { box-shadow: 0 -4px 30px var(--allbound-pink-glow); }
            50% { box-shadow: 0 -4px 60px var(--allbound-pink-glow); }
        }

        /* Les côtés se resserrent vers le bas */
        .funnel-body .funnel-sides {
            position: absolute;
            top: 16px;
            left: 0;
            width: 100%;
            height: 100px;
            background: transparent;
            border-left: 3px solid var(--allbound-pink);
            border-right: 3px solid var(--allbound-pink);
            border-bottom: 3px solid var(--allbound-pink);
            border-radius: 0 0 10px 10px;
            opacity: 0.3;
            clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 7% 100%);
            transition: opacity 0.4s ease;
        }

        .split-card.inbound-card:hover .funnel-body .funnel-sides {
            opacity: 0.6;
        }

        /* Dégradé de fond de l'entonnoir */
        .funnel-body .funnel-gradient {
            position: absolute;
            top: 16px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(180deg, 
                rgba(218, 28, 92, 0.05) 0%, 
                rgba(218, 28, 92, 0.15) 30%,
                rgba(218, 28, 92, 0.25) 60%,
                rgba(218, 28, 92, 0.35) 100%);
            clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 7% 100%);
            animation: funnel-glow 3s ease-in-out infinite;
        }

        @keyframes funnel-glow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* La base est étroite (sortie de l'entonnoir) */
        .funnel-body .funnel-bottom {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 30%;
            height: 6px;
            background: var(--allbound-pink);
            border-radius: 0 0 50% 50%;
            box-shadow: 0 4px 30px var(--allbound-pink-glow);
            animation: funnel-pulse-bottom 2s ease-in-out infinite;
        }

        @keyframes funnel-pulse-bottom {
            0%, 100% { box-shadow: 0 4px 30px var(--allbound-pink-glow); width: 15%; }
            50% { box-shadow: 0 4px 60px var(--allbound-pink-glow); width: 18%; }
        }

        /* Particules qui tombent dans l'entonnoir - du haut vers le bas */
        .funnel-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
        }

        .funnel-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--allbound-pink);
            opacity: 0;
            animation: particle-fall 3s ease-in infinite;
            box-shadow: 0 0 15px var(--allbound-pink-glow);
        }

        /* Particules réparties sur toute la largeur en haut, se resserrant en bas */
        .funnel-particle:nth-child(1) { left: 10%; animation-delay: 0s; width: 12px; height: 12px; }
        .funnel-particle:nth-child(2) { left: 30%; animation-delay: 0.5s; width: 9px; height: 9px; }
        .funnel-particle:nth-child(3) { left: 50%; animation-delay: 1s; width: 14px; height: 14px; }
        .funnel-particle:nth-child(4) { left: 70%; animation-delay: 0.3s; width: 10px; height: 10px; }
        .funnel-particle:nth-child(5) { left: 88%; animation-delay: 0.8s; width: 11px; height: 11px; }
        .funnel-particle:nth-child(6) { left: 45%; animation-delay: 1.5s; width: 7px; height: 7px; }

        @keyframes particle-fall {
            0% {
                opacity: 0;
                transform: translateY(-30px) scale(0.3);
            }
            10% {
                opacity: 1;
                transform: translateY(10px) scale(1);
            }
            80% {
                opacity: 1;
                transform: translateY(130px) scale(0.8);
            }
            100% {
                opacity: 0;
                transform: translateY(170px) scale(0.3);
            }
        }

        /* Étiquettes AIDA de l'entonnoir */
        .funnel-labels {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .funnel-label {
            position: absolute;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--allbound-pink);
            opacity: 0.7;
            animation: label-float 3s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .funnel-label:nth-child(1) {
            top: 5%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 15px;
            opacity: 0.9;
            animation-delay: 0s;
        }

        .funnel-label:nth-child(2) {
            top: 30%;
            left: 8%;
            transform: rotate(-8deg);
            animation-delay: 0.5s;
        }

        .funnel-label:nth-child(3) {
            top: 30%;
            right: 8%;
            transform: rotate(8deg);
            animation-delay: 0.7s;
        }

        .funnel-label:nth-child(4) {
            bottom: 25%;
            left: 12%;
            transform: rotate(-5deg);
            animation-delay: 1s;
            font-size: 10px;
        }

        .funnel-label:nth-child(5) {
            bottom: 25%;
            right: 12%;
            transform: rotate(5deg);
            animation-delay: 1.2s;
            font-size: 10px;
        }

        .funnel-label:nth-child(6) {
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 15px;
            opacity: 0.9;
            color: var(--allbound-pink);
            animation-delay: 0.3s;
            text-shadow: 0 0 20px var(--allbound-pink-glow);
        }

        @keyframes label-float {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
            50% { transform: translateY(-4px) scale(1.05); opacity: 1; }
        }

        .funnel-label:nth-child(1) { animation-name: label-float-big; }
        .funnel-label:nth-child(6) { animation-name: label-float-big; }

        @keyframes label-float-big {
            0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.8; }
            50% { transform: translateX(-50%) translateY(-6px) scale(1.08); opacity: 1; }
        }

        /* Flèches directionnelles */
        .funnel-arrows {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .funnel-arrow {
            position: absolute;
            color: var(--allbound-pink);
            opacity: 0.15;
            font-size: 20px;
            animation: arrow-pulse 2s ease-in-out infinite;
        }

        .funnel-arrow:nth-child(1) { top: 12%; left: 3%; transform: rotate(-15deg); animation-delay: 0s; }
        .funnel-arrow:nth-child(2) { top: 12%; right: 3%; transform: rotate(15deg); animation-delay: 0.4s; }
        .funnel-arrow:nth-child(3) { top: 45%; left: 2%; transform: rotate(-10deg); animation-delay: 0.8s; font-size: 16px; }
        .funnel-arrow:nth-child(4) { top: 45%; right: 2%; transform: rotate(10deg); animation-delay: 1.2s; font-size: 16px; }

        @keyframes arrow-pulse {
            0%, 100% { opacity: 0.08; transform: scale(0.9); }
            50% { opacity: 0.25; transform: scale(1.1); }
        }

        /* ============================================
           ACTION VISUELLE OUTBOUND - AIMAINT 3D
           ============================================ */
        .split-card.outbound-card .action-visual {
            position: relative;
            padding: 20px 10px 30px 10px;
            margin-bottom: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 200px;
            perspective: 800px;
        }

        .magnet-3d {
            position: relative;
            width: 100%;
            max-width: 380px;
            height: 180px;
            transform-style: preserve-3d;
            animation: magnet-float 3.5s ease-in-out infinite;
        }

        @keyframes magnet-float {
            0%, 100% { transform: rotateX(2deg) rotateY(0deg) translateY(0); }
            50% { transform: rotateX(-2deg) rotateY(4deg) translateY(-6px); }
        }

        /* Champ magnétique */
        .magnet-field {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
        }

        .magnet-field .field-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 2px dashed rgba(64, 140, 181, 0.15);
            animation: field-ring 3.5s ease-in-out infinite;
        }

        .magnet-field .field-ring:nth-child(1) { width: 50px; height: 50px; animation-delay: 0s; }
        .magnet-field .field-ring:nth-child(2) { width: 90px; height: 90px; animation-delay: 0.6s; }
        .magnet-field .field-ring:nth-child(3) { width: 130px; height: 130px; animation-delay: 1.2s; }
        .magnet-field .field-ring:nth-child(4) { width: 170px; height: 170px; animation-delay: 1.8s; }

        @keyframes field-ring {
            0%, 100% {
                border-color: rgba(64, 140, 181, 0.06);
                transform: translate(-50%, -50%) scale(0.7);
                opacity: 0;
            }
            25% {
                border-color: rgba(64, 140, 181, 0.3);
                opacity: 1;
            }
            75% {
                border-color: rgba(64, 140, 181, 0.12);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0;
            }
        }

        /* Aimant central */
        .magnet-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            border-radius: 14px;
            background: var(--allbound-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #fff;
            box-shadow: 0 0 50px var(--allbound-blue-glow);
            z-index: 2;
            animation: magnet-pulse 2.5s ease-in-out infinite;
        }

        @keyframes magnet-pulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 50px var(--allbound-blue-glow);
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.08);
                box-shadow: 0 0 80px var(--allbound-blue-glow);
            }
        }

        .magnet-center .magnet-icon {
            font-size: 32px;
            transform: rotate(-45deg);
        }

        /* Lignes de force magnétiques */
        .magnet-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .magnet-line {
            position: absolute;
            width: 2px;
            background: linear-gradient(180deg, 
                transparent 0%,
                var(--allbound-blue) 30%,
                var(--allbound-blue) 70%,
                transparent 100%);
            opacity: 0.1;
            animation: line-wave 3s ease-in-out infinite;
            transform-origin: center center;
        }

        .magnet-line:nth-child(1) { 
            top: 10%; 
            left: 30%; 
            height: 80%;
            animation-delay: 0s;
            transform: rotate(-15deg);
        }
        .magnet-line:nth-child(2) { 
            top: 10%; 
            right: 30%; 
            height: 80%;
            animation-delay: 0.5s;
            transform: rotate(15deg);
        }
        .magnet-line:nth-child(3) { 
            top: 15%; 
            left: 50%; 
            height: 70%;
            animation-delay: 1s;
        }
        .magnet-line:nth-child(4) { 
            bottom: 15%; 
            left: 20%; 
            height: 50%;
            animation-delay: 1.5s;
            transform: rotate(-25deg);
        }
        .magnet-line:nth-child(5) { 
            bottom: 15%; 
            right: 20%; 
            height: 50%;
            animation-delay: 2s;
            transform: rotate(25deg);
        }

        @keyframes line-wave {
            0%, 100% { 
                opacity: 0.05;
                transform-origin: center center;
            }
            50% { 
                opacity: 0.2;
            }
        }

        /* Particules attirées par l'aimant */
        .magnet-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .magnet-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--allbound-blue);
            box-shadow: 0 0 20px var(--allbound-blue-glow);
            animation: particle-attract 3s ease-in-out infinite;
            opacity: 0;
        }

        .magnet-particle:nth-child(1) { 
            top: 8%; 
            left: 8%; 
            animation-delay: 0.2s;
            width: 12px;
            height: 12px;
        }
        .magnet-particle:nth-child(2) { 
            top: 5%; 
            right: 15%; 
            animation-delay: 0.8s;
            width: 8px;
            height: 8px;
        }
        .magnet-particle:nth-child(3) { 
            bottom: 20%; 
            left: 5%; 
            animation-delay: 1.4s;
            width: 14px;
            height: 14px;
        }
        .magnet-particle:nth-child(4) { 
            bottom: 15%; 
            right: 8%; 
            animation-delay: 2s;
            width: 9px;
            height: 9px;
        }
        .magnet-particle:nth-child(5) { 
            top: 45%; 
            left: 3%; 
            animation-delay: 0.5s;
            width: 16px;
            height: 16px;
            background: var(--allbound-pink);
            box-shadow: 0 0 30px var(--allbound-pink-glow);
        }
        .magnet-particle:nth-child(6) { 
            top: 40%; 
            right: 3%; 
            animation-delay: 1.1s;
            width: 13px;
            height: 13px;
            background: var(--allbound-pink);
            box-shadow: 0 0 30px var(--allbound-pink-glow);
        }

        @keyframes particle-attract {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0.3) rotate(0deg);
            }
            15% {
                opacity: 1;
                transform: translate(20px, -10px) scale(1.2) rotate(45deg);
            }
            40% {
                transform: translate(50px, -20px) scale(1) rotate(90deg);
            }
            70% {
                transform: translate(80px, -30px) scale(0.8) rotate(135deg);
            }
            100% {
                opacity: 0;
                transform: translate(120px, -40px) scale(0.3) rotate(180deg);
            }
        }

        .magnet-particle:nth-child(2) {
            animation-name: particle-attract-2;
        }
        .magnet-particle:nth-child(3) {
            animation-name: particle-attract-3;
        }
        .magnet-particle:nth-child(4) {
            animation-name: particle-attract-4;
        }
        .magnet-particle:nth-child(5) {
            animation-name: particle-attract-5;
        }
        .magnet-particle:nth-child(6) {
            animation-name: particle-attract-6;
        }

        @keyframes particle-attract-2 {
            0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
            15% { opacity: 1; transform: translate(-15px, -15px) scale(1.2); }
            40% { transform: translate(-40px, -30px) scale(1); }
            70% { transform: translate(-70px, -45px) scale(0.8); }
            100% { opacity: 0; transform: translate(-100px, -60px) scale(0.3); }
        }

        @keyframes particle-attract-3 {
            0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
            15% { opacity: 1; transform: translate(10px, 15px) scale(1.2); }
            40% { transform: translate(30px, 35px) scale(1); }
            70% { transform: translate(50px, 55px) scale(0.8); }
            100% { opacity: 0; transform: translate(80px, 80px) scale(0.3); }
        }

        @keyframes particle-attract-4 {
            0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
            15% { opacity: 1; transform: translate(-10px, 15px) scale(1.2); }
            40% { transform: translate(-30px, 35px) scale(1); }
            70% { transform: translate(-50px, 55px) scale(0.8); }
            100% { opacity: 0; transform: translate(-80px, 80px) scale(0.3); }
        }

        @keyframes particle-attract-5 {
            0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
            15% { opacity: 1; transform: translate(25px, -5px) scale(1.3); }
            40% { transform: translate(60px, -10px) scale(1.1); }
            70% { transform: translate(100px, -15px) scale(0.9); }
            100% { opacity: 0; transform: translate(140px, -20px) scale(0.3); }
        }

        @keyframes particle-attract-6 {
            0% { opacity: 0; transform: translate(0, 0) scale(0.3); }
            15% { opacity: 1; transform: translate(-25px, -5px) scale(1.3); }
            40% { transform: translate(-60px, -10px) scale(1.1); }
            70% { transform: translate(-100px, -15px) scale(0.9); }
            100% { opacity: 0; transform: translate(-140px, -20px) scale(0.3); }
        }

        /* Étiquettes de prospection */
        .magnet-labels {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 30px;
            font-size: 10px;
            font-weight: 600;
            color: var(--allbound-blue);
            opacity: 0.6;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .magnet-labels span {
            animation: label-pulse 2s ease-in-out infinite;
        }

        .magnet-labels span:nth-child(2) { animation-delay: 0.7s; }

        @keyframes label-pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.9; }
        }

        /* ============================================
           MÉTRIQUES
           ============================================ */
        .split-card .card-metrics {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .split-card .metric-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--text-muted);
            background: var(--bg-sub);
            padding: 3px 12px;
            border-radius: 30px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .split-card.inbound-card:hover .metric-item {
            border-color: var(--allbound-pink);
            transform: translateY(-2px);
        }

        .split-card.outbound-card:hover .metric-item {
            border-color: var(--allbound-blue);
            transform: translateY(-2px);
        }

        .split-card .metric-item .metric-value {
            font-weight: 700;
            color: var(--text-title);
            font-size: 15px;
        }

        .split-card .metric-item .metric-change {
            font-size: 9px;
            font-weight: 600;
        }

        .split-card .metric-item .metric-change.positive {
            color: #10b981;
        }

        /* Liste bénéfices */
        .split-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .split-card ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
            font-size: 15px;
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .split-card ul li:hover {
            transform: translateX(4px);
            color: var(--text-title);
        }

        .split-card.inbound-card ul li i {
            color: var(--allbound-pink);
            font-size: 15px;
            flex-shrink: 0;
        }

        .split-card.outbound-card ul li i {
            color: var(--allbound-blue);
            font-size: 15px;
            flex-shrink: 0;
        }

        /* ============================================
           LES 3 PILIERS
           ============================================ */
        .allbound-pillars {
            margin: 40px 0;
        }

        .allbound-pillars .section-title {
            text-align: center;
            margin-top: 80px;
            margin-bottom: 32px;
        }

        .allbound-pillars .section-title h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .allbound-pillars .section-title h2 {
            color: #ffffff;
        }


        .allbound-pillars .section-title p {
            color: var(--text-muted);
            font-size: 15px;
        }

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

        .pillar-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(30px) rotateX(5deg);
            animation: fadeIn3D 0.8s ease forwards;
            position: relative;
            overflow: hidden;
        }

        .pillar-card:nth-child(1) { animation-delay: 0.10s; }
        .pillar-card:nth-child(2) { animation-delay: 0.20s; }
        .pillar-card:nth-child(3) { animation-delay: 0.30s; }

        .pillar-card:hover {
            transform: translateY(-8px) rotateX(2deg);
            border-color: var(--allbound-blue);
            box-shadow: 0 30px 80px var(--shadow-hover);
        }

        .pillar-card .pillar-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 22px;
            color: #fff;
            background: var(--allbound-blue);
            box-shadow: 0 8px 30px var(--allbound-blue-glow);
            transition: all 0.4s ease;
        }

        .pillar-card:nth-child(2) .pillar-icon {
            background: var(--allbound-blue);
            opacity: 0.85;
        }

        .pillar-card:nth-child(3) .pillar-icon {
            background: var(--allbound-blue);
            opacity: 0.7;
        }

        .pillar-card:hover .pillar-icon {
            transform: scale(0.95) rotateY(-8deg);
        }

        .pillar-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 6px;
        }

        [data-theme="dark"] .pillar-card h4 {
            color: #ffffff;
        }

        .pillar-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .pillar-card .roi-badge {
            display: inline-block;
            padding: 3px 14px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 600;
            color: var(--allbound-blue);
            background: var(--allbound-blue-light);
            border: 1px solid rgba(64, 140, 181, 0.2);
        }

        /* Processus */
        .allbound-process {
            margin: 40px 0;
        }

        .allbound-process .process-header {
            text-align: center;
            max-width: 700px;
            margin: 80px auto 32px auto;
        }

        .allbound-process .process-header h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .allbound-process .process-header h3 {
            color: #ffffff;
        }


        .allbound-process .process-header p {
            color: var(--text-muted);
            font-size: 15px;
        }

        .process-timeline {
            max-width: 800px;
            margin: 0 auto;
            padding-left: 24px;
        }

        .process-step {
            position: relative;
            padding-bottom: 24px;
            padding-left: 24px;
            border-left: 2px dashed var(--border);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .process-step:nth-child(1) { animation-delay: 0.10s; }
        .process-step:nth-child(2) { animation-delay: 0.20s; }
        .process-step:nth-child(3) { animation-delay: 0.30s; }
        .process-step:nth-child(4) { animation-delay: 0.40s; }

        [data-theme="dark"] .process-step {
            border-left-color: var(--border-dark);
        }

        .process-step:last-child {
            border-left-color: transparent;
            padding-bottom: 0;
        }

        .step-marker {
            position: absolute;
            left: -12px;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--bg-card);
            border: 2px solid var(--allbound-blue);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .process-step:nth-child(1) .step-marker { border-color: var(--allbound-pink); }
        .process-step:nth-child(2) .step-marker { border-color: var(--allbound-blue); }
        .process-step:nth-child(3) .step-marker { border-color: var(--allbound-pink); }
        .process-step:nth-child(4) .step-marker { border-color: var(--allbound-blue); }

        .process-step:hover .step-marker {
            background: var(--allbound-blue);
            transform: scale(1.2);
        }

        .process-step:nth-child(1):hover .step-marker { background: var(--allbound-pink); }
        .process-step:nth-child(3):hover .step-marker { background: var(--allbound-pink); }

        .step-title {
            font-weight: 700;
            font-size: 20px;
            color: var(--text-title);
            margin-bottom: 4px;
        }

        [data-theme="dark"] .step-title {
            color: #ffffff;
        }

        .process-step p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Témoignages */
        .allbound-testimonials {
            margin: 40px 0;
        }

        .allbound-testimonials .section-title {
            text-align: center;
            margin-top: 80px;
            margin-bottom: 32px;
        }

        .allbound-testimonials .section-title h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 2px;
        }

        [data-theme="dark"] .allbound-testimonials .section-title h2 {
            color: #ffffff;
        }

        .allbound-testimonials .section-title p {
            color: var(--text-muted);
            font-size: 15px;
        }


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

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 18px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0;
            transform: translateY(30px) rotateX(5deg);
            animation: fadeIn3D 0.8s ease forwards;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.10s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.20s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.30s; }

        .testimonial-card:hover {
            transform: translateY(-6px) rotateX(2deg);
            border-color: var(--allbound-blue);
            box-shadow: 0 30px 80px var(--shadow-hover);
        }

        .testimonial-card .user-info {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 10px;
        }

        .testimonial-card .user-info .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--allbound-blue-light);
            border: 2px solid var(--allbound-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--allbound-blue);
        }

        .testimonial-card:nth-child(2) .user-info .avatar {
            background: var(--allbound-pink-light);
            border-color: var(--allbound-pink);
            color: var(--allbound-pink);
        }

        .testimonial-card .user-info .name {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-title);
        }

        [data-theme="dark"] .testimonial-card .user-info .name {
            color: #ffffff;
        }

        .testimonial-card .user-info .role {
            font-size: 12px;
            color: var(--text-muted);
        }

        .testimonial-card .testimonial-text {
            font-style: italic;
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .testimonial-card .stars {
            color: #f59e0b;
            font-size: 15px;
            letter-spacing: 2px;
        }

        /* Statistiques */
        .allbound-stats {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 40px 32px;
            margin: 40px 0;
            transition: all var(--transition-speed) ease;
        }

        .allbound-stats:hover {
            border-color: var(--allbound-blue);
        }

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

        .stat-card {
            text-align: center;
            padding: 14px;
            border-radius: 12px;
            background: var(--bg-sub);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--allbound-blue);
        }

        .stat-card:nth-child(2):hover { border-color: var(--allbound-pink); }
        .stat-card:nth-child(4):hover { border-color: var(--allbound-pink); }

        .stat-card .stat-number {
            font-size: 32px;
            font-weight: 800;
            color: var(--allbound-blue);
            line-height: 1.2;
        }

        .stat-card:nth-child(2) .stat-number { color: var(--allbound-pink); }
        .stat-card:nth-child(4) .stat-number { color: var(--allbound-pink); }

        .stat-card .stat-label {
            font-size: 15px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 968px) {
            .allbound-hero h1 {
                font-size: 32px;
            }

            .allbound-split {
                grid-template-columns: 1fr;
            }

            .pillars-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .funnel-3d {
                max-width: 320px;
                height: 150px;
            }

            .magnet-3d {
                max-width: 320px;
                height: 150px;
            }

            .magnet-field {
                width: 160px;
                height: 160px;
            }
        }

        @media (max-width: 600px) {
            .allbound-hero h1 {
                font-size: 26px;
            }

            .allbound-hero .lead {
                font-size: 15px;
            }

            .allbound-split {
                gap: 16px;
            }

            .split-card {
                padding: 18px 16px;
            }

            .split-card-header .card-title-group .card-main {
                font-size: 17px;
            }

            .split-card-header .card-title-group .card-sub {
                font-size: 12px;
            }

            .split-card-header .icon-circle {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .split-card .action-visual {
                min-height: 160px;
                padding: 10px;
            }

            .funnel-3d {
                height: 130px;
                max-width: 260px;
            }

            .funnel-body .funnel-top {
                height: 12px;
                width: 80%;
            }

            .funnel-body .funnel-sides {
                height: 75px;
            }

            .funnel-body .funnel-gradient {
                height: 75px;
            }

            .funnel-body .funnel-bottom {
                height: 10px;
                width: 12%;
            }

            .funnel-label {
                font-size: 8px !important;
            }

            .funnel-label:nth-child(1) { font-size: 10px !important; }
            .funnel-label:nth-child(6) { font-size: 11px !important; }

            .magnet-3d {
                height: 130px;
                max-width: 260px;
            }

            .magnet-field {
                width: 140px;
                height: 140px;
            }

            .magnet-field .field-ring:nth-child(1) { width: 35px; height: 35px; }
            .magnet-field .field-ring:nth-child(2) { width: 60px; height: 60px; }
            .magnet-field .field-ring:nth-child(3) { width: 90px; height: 90px; }
            .magnet-field .field-ring:nth-child(4) { width: 120px; height: 120px; }

            .magnet-center {
                width: 48px;
                height: 48px;
                font-size: 24px;
            }

            .magnet-center .magnet-icon {
                font-size: 26px;
            }

            .magnet-labels {
                font-size: 8px;
                gap: 16px;
            }

            .split-card .card-metrics {
                gap: 6px;
            }

            .split-card .metric-item {
                font-size: 10px;
                padding: 2px 10px;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .stat-card .stat-number {
                font-size: 26px;
            }

            .process-timeline {
                padding-left: 16px;
            }

            .process-step {
                padding-left: 16px;
                padding-bottom: 18px;
            }

            .step-marker {
                left: -10px;
                width: 16px;
                height: 16px;
            }

            .step-title {
                font-size: 15px;
            }

            .allbound-stats {
                padding: 24px 16px;
            }
        }

        @media (max-width: 400px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat-card .stat-number {
                font-size: 22px;
            }

            .split-card .card-metrics {
                flex-direction: column;
                align-items: stretch;
            }

            .split-card .metric-item {
                justify-content: center;
            }

            .funnel-3d {
                max-width: 200px;
                height: 110px;
            }

            .funnel-body .funnel-sides {
                height: 60px;
            }

            .funnel-body .funnel-gradient {
                height: 60px;
            }

            .funnel-label {
                font-size: 6px !important;
            }

            .funnel-label:nth-child(1) { font-size: 8px !important; }
            .funnel-label:nth-child(6) { font-size: 9px !important; }

            .magnet-3d {
                max-width: 200px;
                height: 110px;
            }

            .magnet-field {
                width: 120px;
                height: 120px;
            }

            .magnet-field .field-ring:nth-child(1) { width: 30px; height: 30px; }
            .magnet-field .field-ring:nth-child(2) { width: 50px; height: 50px; }
            .magnet-field .field-ring:nth-child(3) { width: 70px; height: 70px; }
            .magnet-field .field-ring:nth-child(4) { width: 90px; height: 90px; }

            .magnet-center {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .magnet-center .magnet-icon {
                font-size: 22px;
            }

            .magnet-labels {
                font-size: 6px;
                gap: 10px;
            }
        }