/* ============================================
   PRESENTATION / LANDING PAGE STYLES
   Tous les sélecteurs sont scopés sous .landing-page
   pour éviter tout conflit avec base.css
   ============================================ */

/* Variables spécifiques à la landing page */
.landing-page {
    --lp-primary: #4f46e5;
    --lp-primary-dark: #4338ca;
    --lp-primary-light: #818cf8;
    --lp-secondary: #0ea5e9;
    --lp-accent: #8b5cf6;
    --lp-success: #10b981;
    --lp-warning: #f59e0b;
    --lp-danger: #ef4444;
    --lp-dark: #1e293b;
    --lp-gray-900: #0f172a;
    --lp-gray-800: #1e293b;
    --lp-gray-700: #334155;
    --lp-gray-600: #475569;
    --lp-gray-500: #64748b;
    --lp-gray-400: #94a3b8;
    --lp-gray-300: #cbd5e1;
    --lp-gray-200: #e2e8f0;
    --lp-gray-100: #f1f5f9;
    --lp-gray-50: #f8fafc;
    --lp-white: #ffffff;
    --lp-gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --lp-gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    --lp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --lp-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --lp-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --lp-shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --lp-shadow-glow: 0 0 40px rgba(79, 70, 229, 0.3);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

/* ============================================
   BUTTONS (scopés landing page)
   ============================================ */
.landing-page .lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.landing-page .lp-btn-primary {
    background: var(--lp-gradient-primary);
    color: var(--lp-white);
    box-shadow: var(--lp-shadow-md), var(--lp-shadow-glow);
}

.landing-page .lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg), 0 0 60px rgba(79, 70, 229, 0.4);
}

.landing-page .lp-btn-secondary {
    background: var(--lp-white);
    color: var(--lp-primary);
    box-shadow: var(--lp-shadow-md);
}

.landing-page .lp-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg);
}

.landing-page .lp-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.landing-page .lp-btn-white {
    background: var(--lp-white);
    color: var(--lp-primary);
    font-weight: 700;
}

.landing-page .lp-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-lg);
}

.landing-page .lp-btn-outline-white {
    background: transparent;
    color: var(--lp-white);
    border: 2px solid var(--lp-white);
}

.landing-page .lp-btn-outline-white:hover {
    background: var(--lp-white);
    color: var(--lp-primary);
}

/* ============================================
   CONTAINER
   ============================================ */
.landing-page .lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.landing-page .lp-hero {
    min-height: 80vh;
    background: var(--lp-gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 0;
}

.landing-page .lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.landing-page .lp-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: lpPulse 8s ease-in-out infinite;
}

.landing-page .lp-hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: lpPulse 10s ease-in-out infinite reverse;
}

@keyframes lpPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.landing-page .lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 80px 20px;
}

.landing-page .lp-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1.1;
    margin-bottom: 25px;
    animation: lpFadeInUp 0.8s ease 0.1s both;
}

.landing-page .lp-hero-content h1 span {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .lp-hero-subtitle {
    font-size: 1.25rem;
    color: var(--lp-gray-300);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: lpFadeInUp 0.8s ease 0.2s both;
}

.landing-page .lp-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: lpFadeInUp 0.8s ease 0.3s both;
}

.landing-page .lp-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: lpFadeInUp 0.8s ease 0.4s both;
}

.landing-page .lp-hero-stat {
    text-align: center;
}

.landing-page .lp-hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-white);
    display: block;
}

.landing-page .lp-hero-stat-label {
    font-size: 0.9rem;
    color: var(--lp-gray-400);
}

@keyframes lpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.landing-page .lp-section {
    padding: 100px 0;
}

.landing-page .lp-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.landing-page .lp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-primary);
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: var(--lp-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.landing-page .lp-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 20px;
    line-height: 1.2;
}

.landing-page .lp-section-description {
    font-size: 1.15rem;
    color: var(--lp-gray-600);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.landing-page .lp-features {
    background: var(--lp-gray-50);
    border-radius: 16px;
}

.landing-page .lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.landing-page .lp-feature-card {
    background: var(--lp-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--lp-shadow);
    border: 1px solid var(--lp-gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.landing-page .lp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lp-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.landing-page .lp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow-lg);
}

.landing-page .lp-feature-card:hover::before {
    transform: scaleX(1);
}

.landing-page .lp-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.landing-page .lp-feature-icon.blue { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.landing-page .lp-feature-icon.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.landing-page .lp-feature-icon.green { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.landing-page .lp-feature-icon.orange { background: linear-gradient(135deg, #fed7aa, #fdba74); }
.landing-page .lp-feature-icon.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.landing-page .lp-feature-icon.cyan { background: linear-gradient(135deg, #cffafe, #a5f3fc); }
.landing-page .lp-feature-icon.red { background: linear-gradient(135deg, #fee2e2, #fecaca); }

.landing-page .lp-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 15px;
}

.landing-page .lp-feature-card p {
    color: var(--lp-gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.landing-page .lp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-page .lp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--lp-gray-700);
}

.landing-page .lp-feature-list li::before {
    content: '\2713';
    color: var(--lp-success);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   BENTO GRID — Features (Light Mode)
   ============================================ */

/* Gradient text helper */
.landing-page .lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Counter */
.landing-page .lp-bento-counter {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}

.landing-page .lp-bento-counter-item {
    text-align: center;
    animation: lpFadeInUp 0.6s ease both;
}
.landing-page .lp-bento-counter-item:nth-child(1) { animation-delay: 0.2s; }
.landing-page .lp-bento-counter-item:nth-child(2) { animation-delay: 0.4s; }
.landing-page .lp-bento-counter-item:nth-child(3) { animation-delay: 0.6s; }

.landing-page .lp-bento-counter-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    line-height: 1;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}

.landing-page .lp-bento-counter-label {
    font-size: 0.8rem;
    color: var(--lp-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento rows */
.landing-page .lp-bento-row {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.landing-page .lp-bento-row-1 { grid-template-columns: 7fr 5fr; }
.landing-page .lp-bento-row-2 { grid-template-columns: 5fr 7fr; }
.landing-page .lp-bento-row-3 { grid-template-columns: 7fr 5fr; }
.landing-page .lp-bento-row-4 { grid-template-columns: 5fr 7fr; }
.landing-page .lp-bento-row-5 { grid-template-columns: 1fr 1fr; }

/* Bento tile */
.landing-page .lp-bento-tile {
    background: var(--lp-white);
    border: 1px solid var(--lp-gray-200);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--lp-shadow);
}

.landing-page .lp-bento-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-lg);
    border-color: var(--lp-gray-300);
}

.landing-page .lp-bento-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.landing-page .lp-bento-tile:hover::before { transform: scaleX(1); }

.landing-page .lp-bento-tile h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lp-gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.landing-page .lp-bento-tile > p {
    font-size: 0.92rem;
    color: var(--lp-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Bento labels */
.landing-page .lp-bento-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 6px;
}

.landing-page .lp-bento-label.indigo  { color: #4f46e5; background: #eef2ff; }
.landing-page .lp-bento-label.emerald { color: #059669; background: #ecfdf5; }
.landing-page .lp-bento-label.amber   { color: #d97706; background: #fffbeb; }
.landing-page .lp-bento-label.sky     { color: #0284c7; background: #f0f9ff; }
.landing-page .lp-bento-label.rose    { color: #e11d48; background: #fff1f2; }

/* Bento list */
.landing-page .lp-bento-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-page .lp-bento-list li {
    position: relative;
    padding: 5px 0 5px 22px;
    font-size: 0.88rem;
    color: var(--lp-gray-700);
}

.landing-page .lp-bento-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--lp-success);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Bento visual block */
.landing-page .lp-bento-visual { margin-top: 24px; }

/* --- Standards badges --- */
.landing-page .lp-std-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-page .lp-std-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--lp-gray-800);
    transition: all 0.2s ease;
}

.landing-page .lp-std-chip:hover {
    background: var(--lp-white);
    border-color: var(--lp-primary-light);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.1);
}

.landing-page .lp-std-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .lp-std-num {
    color: var(--lp-gray-400);
    font-size: 0.7rem;
    margin-left: 2px;
}

.landing-page .lp-std-chip-dashed {
    border-style: dashed;
    color: var(--lp-gray-500);
    background: transparent;
}

/* --- Audit mockup --- */
.landing-page .lp-mock {
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: 14px;
    overflow: hidden;
    max-width: 380px;
}

.landing-page .lp-mock-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--lp-white);
    border-bottom: 1px solid var(--lp-gray-200);
}

.landing-page .lp-mock-dot {
    width: 7px; height: 7px; border-radius: 50%;
}

.landing-page .lp-mock-title {
    height: 7px;
    background: var(--lp-gray-200);
    border-radius: 4px;
    flex: 1;
    margin-left: 8px;
}

.landing-page .lp-mock-body { padding: 14px; }

.landing-page .lp-mock-q {
    padding: 12px;
    border: 1px solid var(--lp-gray-200);
    border-radius: 10px;
    margin-bottom: 10px;
    background: var(--lp-white);
}

.landing-page .lp-mock-line {
    height: 5px;
    background: var(--lp-gray-200);
    border-radius: 3px;
    margin-bottom: 6px;
}
.landing-page .lp-mock-line:nth-child(2) { width: 75%; }
.landing-page .lp-mock-line:nth-child(3) { width: 55%; margin-bottom: 0; }

.landing-page .lp-mock-btns {
    display: flex; gap: 6px; margin-top: 10px;
}
.landing-page .lp-mock-btn {
    flex: 1; padding: 5px 0; border-radius: 6px;
    text-align: center; font-size: 0.6rem; font-weight: 600; color: #fff;
}
.landing-page .lp-mock-btn-g { background: var(--lp-success); }
.landing-page .lp-mock-btn-y { background: var(--lp-warning); }
.landing-page .lp-mock-btn-r { background: var(--lp-danger); }

.landing-page .lp-mock-livrable {
    display: flex; align-items: center; gap: 6px;
    padding: 7px 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    font-size: 0.6rem; color: #059669; font-weight: 600;
}

.landing-page .lp-mock-livrable-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--lp-success);
}

/* --- Dashboard score ring + bars --- */
.landing-page .lp-dash {
    display: flex;
    gap: 24px;
    align-items: center;
}

.landing-page .lp-dash-ring {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--lp-success) 0% 76%, var(--lp-gray-100) 76% 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.landing-page .lp-dash-ring-inner {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--lp-white);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    box-shadow: inset 0 0 0 1px var(--lp-gray-100);
}

.landing-page .lp-dash-ring-value {
    font-size: 1.5rem; font-weight: 700; color: var(--lp-gray-900); line-height: 1;
}

.landing-page .lp-dash-ring-label {
    font-size: 0.55rem; color: var(--lp-gray-500); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px;
}

.landing-page .lp-dash-bars {
    flex: 1; display: flex; flex-direction: column; gap: 10px;
}

.landing-page .lp-dash-bar-row {
    display: flex; align-items: center; gap: 10px;
}

.landing-page .lp-dash-bar-name {
    width: 40px; text-align: right;
    font-size: 0.7rem; color: var(--lp-gray-500); font-weight: 500;
}

.landing-page .lp-dash-bar-track {
    flex: 1; height: 6px;
    background: var(--lp-gray-100);
    border-radius: 3px; overflow: hidden;
}

.landing-page .lp-dash-bar-fill {
    height: 100%; border-radius: 3px;
}

.landing-page .lp-dash-bar-pct {
    width: 30px; font-size: 0.7rem; color: var(--lp-gray-600); font-weight: 600;
}

/* --- Proof stack --- */
.landing-page .lp-proof-stack {
    display: flex; flex-direction: column; gap: 8px;
}

.landing-page .lp-proof-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: 10px;
    transition: all 0.2s ease;
}
.landing-page .lp-proof-row:hover {
    background: var(--lp-white);
    box-shadow: var(--lp-shadow-sm);
}

.landing-page .lp-proof-badge {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: #fff; flex-shrink: 0;
}

.landing-page .lp-proof-info { flex: 1; }
.landing-page .lp-proof-name { font-size: 0.8rem; font-weight: 500; color: var(--lp-gray-800); }
.landing-page .lp-proof-meta { font-size: 0.65rem; color: var(--lp-gray-500); }

.landing-page .lp-proof-ok {
    width: 18px; height: 18px; border-radius: 50%;
    background: #ecfdf5;
    color: var(--lp-success); font-size: 0.6rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* --- Report cards --- */
.landing-page .lp-reports { display: flex; gap: 12px; }

.landing-page .lp-report-card {
    flex: 1;
    padding: 18px;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}
.landing-page .lp-report-card:hover {
    background: var(--lp-white);
    box-shadow: var(--lp-shadow-sm);
}

.landing-page .lp-report-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
}
.landing-page .lp-report-initial::after { background: var(--lp-primary); }
.landing-page .lp-report-suivi::after   { background: var(--lp-success); }

.landing-page .lp-report-tag {
    font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px;
}
.landing-page .lp-report-initial .lp-report-tag { color: var(--lp-primary); }
.landing-page .lp-report-suivi .lp-report-tag   { color: var(--lp-success); }

.landing-page .lp-report-title {
    font-size: 0.85rem; font-weight: 600; color: var(--lp-gray-900); margin-bottom: 10px;
}

.landing-page .lp-report-lines { display: flex; flex-direction: column; gap: 4px; }
.landing-page .lp-report-line {
    height: 3px; background: var(--lp-gray-200); border-radius: 2px;
}
.landing-page .lp-report-line:nth-child(2) { width: 70%; }
.landing-page .lp-report-line:nth-child(3) { width: 45%; }

/* --- Admin chips --- */
.landing-page .lp-admin-chips {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}

.landing-page .lp-admin-chip {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem; font-weight: 500;
    background: var(--lp-gray-50);
    border: 1px solid var(--lp-gray-200);
    color: var(--lp-gray-700);
    transition: all 0.2s ease;
}
.landing-page .lp-admin-chip:hover {
    background: var(--lp-white);
    border-color: var(--lp-primary-light);
    color: var(--lp-primary);
}

/* ============================================
   FUSION SECTION — Audience + Transformation (marquee)
   ============================================ */
.landing-page .lp-fusion {
    background: var(--lp-gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px;
    border-radius: 16px;
}

.landing-page .lp-fusion::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Header */
.landing-page .lp-fusion-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.landing-page .lp-fusion-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(129, 140, 248, 0.3);
    background: rgba(79, 70, 229, 0.1);
    color: var(--lp-primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.landing-page .lp-fusion-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--lp-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.landing-page .lp-fusion-title span {
    background: linear-gradient(135deg, var(--lp-primary-light), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .lp-fusion-desc {
    font-size: 1.15rem;
    color: var(--lp-gray-400);
}

/* Marquee — Double bandeau infini */
.landing-page .lp-marquee-wrapper {
    position: relative;
    z-index: 1;
}

/* Masques de fondu sur les bords */
.landing-page .lp-marquee-wrapper::before,
.landing-page .lp-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.landing-page .lp-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #0f172a 0%, transparent 100%);
}
.landing-page .lp-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #1a1f3a 0%, transparent 100%);
}

.landing-page .lp-marquee-track {
    display: flex;
    width: max-content;
    animation: lpMarqueeScroll 45s linear infinite;
}

.landing-page .lp-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes lpMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.landing-page .lp-marquee-set {
    display: flex;
    gap: 24px;
    padding: 0 12px;
    flex-shrink: 0;
}

/* Second row — sens inverse */
.landing-page .lp-marquee-row-2 {
    margin-top: 24px;
}

.landing-page .lp-marquee-row-2 .lp-marquee-track {
    animation: lpMarqueeScrollReverse 50s linear infinite;
}

@keyframes lpMarqueeScrollReverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Carte — Base */
.landing-page .lp-fusion-card {
    width: 340px;
    flex-shrink: 0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.landing-page .lp-fusion-card:hover {
    transform: translateY(-4px);
}

/* Carte — Profil (glassmorphism) */
.landing-page .lp-fusion-profile {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
}
.landing-page .lp-fusion-profile:hover {
    border-color: rgba(129,140,248,0.25);
    background: rgba(255,255,255,0.07);
}

/* Glow top profil */
.landing-page .lp-fusion-profile::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(129,140,248,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.landing-page .lp-fusion-profile:hover::before { opacity: 1; }

.landing-page .lp-fusion-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--lp-white);
}

.landing-page .lp-icon-rssi    { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.landing-page .lp-icon-audit   { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.landing-page .lp-icon-consult { background: linear-gradient(135deg, #10b981, #34d399); }
.landing-page .lp-icon-dsi     { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.landing-page .lp-fusion-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--lp-white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.landing-page .lp-fusion-card > p {
    font-size: 0.88rem;
    color: var(--lp-gray-400);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Points forts du profil */
.landing-page .lp-fusion-features {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.landing-page .lp-fusion-features li {
    position: relative;
    padding: 4px 0 4px 18px;
    font-size: 0.82rem;
    color: var(--lp-gray-300);
}

.landing-page .lp-fusion-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-primary-light);
}

/* Carte — Transformation Avant / Après */
.landing-page .lp-fusion-transform {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
}
.landing-page .lp-fusion-transform:hover {
    border-color: rgba(16,185,129,0.3);
    background: rgba(255,255,255,0.07);
}

/* Glow top vert */
.landing-page .lp-fusion-transform::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.landing-page .lp-fusion-transform:hover::before { opacity: 1; }

/* Zone Avant */
.landing-page .lp-transform-before {
    background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid rgba(239, 68, 68, 0.5);
    border-radius: 10px;
    padding: 14px 16px;
}
.landing-page .lp-transform-before p {
    color: var(--lp-gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.4);
}

/* Zone Après */
.landing-page .lp-transform-after {
    background: rgba(16, 185, 129, 0.06);
    border-left: 3px solid rgba(16, 185, 129, 0.5);
    border-radius: 10px;
    padding: 14px 16px;
}
.landing-page .lp-transform-after p {
    color: var(--lp-white);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Labels Avant / Après */
.landing-page .lp-transform-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 2px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.landing-page .lp-before-label {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
}
.landing-page .lp-after-label {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
}

/* Flèche entre les 2 zones */
.landing-page .lp-transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    color: var(--lp-primary-light);
    font-size: 1.1rem;
    opacity: 0.7;
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.landing-page .lp-security {
    background: var(--lp-white);
    border-radius: 16px;
}

.landing-page .lp-security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.landing-page .lp-security-badge {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--lp-gradient-hero);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--lp-shadow-lg), var(--lp-shadow-glow);
}

.landing-page .lp-security-badge-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.landing-page .lp-security-badge h3 {
    color: var(--lp-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.landing-page .lp-security-badge p {
    color: var(--lp-gray-300);
}

.landing-page .lp-security-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-page .lp-security-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--lp-gray-200);
}

.landing-page .lp-security-features li:last-child {
    border-bottom: none;
}

.landing-page .lp-security-features .lp-icon {
    width: 50px;
    height: 50px;
    background: var(--lp-gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-page .lp-security-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lp-gray-900);
    margin-bottom: 5px;
}

.landing-page .lp-security-features p {
    color: var(--lp-gray-600);
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.landing-page .lp-cta {
    background: var(--lp-gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.landing-page .lp-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: lpRotate 30s linear infinite;
}

@keyframes lpRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.landing-page .lp-cta-content {
    position: relative;
    z-index: 1;
}

.landing-page .lp-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--lp-white);
    margin-bottom: 20px;
}

.landing-page .lp-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.landing-page .lp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER (landing page)
   ============================================ */
.landing-page .lp-footer {
    background: var(--lp-gray-900);
    padding: 60px 0 30px;
    border-radius: 16px;
}

.landing-page .lp-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--lp-gray-700);
}

.landing-page .lp-footer .lp-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--lp-white);
    font-weight: 700;
    font-size: 1.5rem;
}

.landing-page .lp-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--lp-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--lp-shadow-glow);
}

.landing-page .lp-footer-links {
    display: flex;
    gap: 30px;
}

.landing-page .lp-footer-links a {
    color: var(--lp-gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.landing-page .lp-footer-links a:hover {
    color: var(--lp-white);
}

.landing-page .lp-footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: var(--lp-gray-500);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .landing-page .lp-security-content {
        grid-template-columns: 1fr;
    }

    .landing-page .lp-security-visual {
        order: -1;
    }

    .landing-page .lp-fusion-card {
        width: 290px;
        padding: 24px;
    }

    .landing-page .lp-marquee-wrapper::before,
    .landing-page .lp-marquee-wrapper::after {
        width: 60px;
    }

    .landing-page .lp-hero-stats {
        gap: 30px;
    }

    /* Bento grid — tablette */
    .landing-page .lp-bento-row {
        grid-template-columns: 1fr !important;
    }

    .landing-page .lp-bento-counter {
        gap: 30px;
    }

    .landing-page .lp-dash {
        flex-direction: column;
    }

    .landing-page .lp-reports {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .landing-page .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .lp-bento-tile {
        padding: 28px;
    }

    .landing-page .lp-bento-counter {
        flex-direction: column;
        gap: 20px;
    }

    .landing-page .lp-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .landing-page .lp-btn-large {
        width: 100%;
    }

    .landing-page .lp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .landing-page .lp-hero-buttons .lp-btn {
        width: 100%;
        max-width: 300px;
    }

    .landing-page .lp-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .landing-page .lp-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .landing-page .lp-fusion {
        padding: 80px 0 90px;
    }

    .landing-page .lp-fusion-card {
        width: 280px;
        padding: 22px;
    }

    .landing-page .lp-marquee-wrapper::before,
    .landing-page .lp-marquee-wrapper::after {
        width: 40px;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.landing-page .lp-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.landing-page .lp-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
