﻿/* ====================================================================================
   CAPPS - ULTRA PREMIUM SHOWCASE SECTION STYLING (PURE CSS, NO VARIABLES)
   ================================================================================ */

.section.showcase {
    position: relative;
    padding: 140px 0;
    background: radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 40%), radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%), #f8fafc;
    overflow: hidden;
}

    .section.showcase::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
        background-size: 36px 36px;
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }

    .section.showcase .container {
        position: relative;
        z-index: 1;
    }

/* Section Heading Enhancements */
.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 90px;
}

    .section-heading .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: #4f46e5;
        background: rgba(79, 70, 229, 0.08);
        border: 1px solid rgba(79, 70, 229, 0.18);
        border-radius: 50px;
        margin-bottom: 20px;
        box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1);
    }

    .section-heading h2 {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.03em;
        line-height: 1.15;
    }

/* Showcase List & Alternating Layout */
.showcase-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Reverse Layout Alternation */
.showcase-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

@media (max-width: 1024px) {
    .showcase-item.reverse {
        grid-template-columns: 1fr;
    }
}

.showcase-item.reverse .browser-frame {
    order: 2;
}

@media (max-width: 1024px) {
    .showcase-item.reverse .browser-frame {
        order: unset;
    }
}

/* Showcase Browser Frame Card Styling */
.showcase-item .browser-frame {
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 35px 80px -20px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(79, 70, 229, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

    .showcase-item .browser-frame:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 45px 100px -25px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(79, 70, 229, 0.25);
    }

.showcase-item .browser-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

    .showcase-item .browser-top span {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        display: inline-block;
    }

        .showcase-item .browser-top span:nth-child(1) {
            background-color: #ef4444;
        }

        .showcase-item .browser-top span:nth-child(2) {
            background-color: #f59e0b;
        }

        .showcase-item .browser-top span:nth-child(3) {
            background-color: #10b981;
        }

.media-frame--showcase {
    position: relative;
    width: 100%;
    min-height: 380px;
    max-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .media-frame--showcase {
        min-height: 260px;
    }
}

.media-frame--showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-item .browser-frame:hover .media-frame--showcase img {
    transform: scale(1.03);
}

/* Showcase Content Text Block */
.showcase-text {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .showcase-text::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #4f46e5, #06b6d4);
    }

    .showcase-text:hover {
        border-color: rgba(79, 70, 229, 0.3);
        box-shadow: 0 30px 60px -15px rgba(79, 70, 229, 0.1);
    }

    .showcase-text h3 {
        font-size: 1.65rem;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .showcase-text p {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #475569;
        margin: 0;
    }


/*****/



/* ==========================================================================
   ULTRA-PREMIUM CAPPS HERO TABS (BULLETPROOF OVERRIDE)
   ========================================================================== */

div.hero-preview-tabs[role="tablist"] {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(126, 200, 227, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px -10px rgba(58, 155, 220, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.8) inset !important;
    max-width: 1050px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* --- Base Button Styles --- */
div.hero-preview-tabs button.hero-tab {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    font-family: inherit !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #334155 !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    overflow: hidden !important;
    user-select: none !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

    /* --- Premium Hover Micro-interaction --- */
    div.hero-preview-tabs button.hero-tab:hover {
        color: #1a56db !important;
        border-color: #7ec8e3 !important;
        background: #f8fafc !important;
        transform: translateY(-3px) scale(1.02) !important;
        box-shadow: 0 10px 25px -5px rgba(126, 200, 227, 0.4), 0 0 0 2px rgba(126, 200, 227, 0.2) !important;
    }

    /* --- Active State (Your Exact SaaS Gradient) --- */
    div.hero-preview-tabs button.hero-tab.is-active {
        color: #ffffff !important;
        background: linear-gradient(135deg, #7ec8e3 0%, #3a9bdc 100%) !important;
        border-color: transparent !important;
        box-shadow: 0 8px 25px -4px rgba(58, 155, 220, 0.6), 0 0 15px rgba(126, 200, 227, 0.5) inset !important;
        font-weight: 600 !important;
        transform: translateY(-2px) !important;
    }

        /* Luxury Glossy Highlight Layer */
        div.hero-preview-tabs button.hero-tab.is-active::after {
            content: '' !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            height: 50% !important;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) !important;
            border-top-left-radius: 50px !important;
            border-top-right-radius: 50px !important;
            pointer-events: none !important;
        }

    /* --- Icon Adjustments --- */
    div.hero-preview-tabs button.hero-tab i {
        font-size: 1.15rem !important;
        transition: transform 0.3s ease !important;
    }

    div.hero-preview-tabs button.hero-tab:hover i {
        transform: scale(1.15) rotate(-5deg) !important;
    }

    /* --- Special Video Tab Styling --- */
    div.hero-preview-tabs button.hero-tab[data-tab-id="video-demo"] {
        border: 1px solid rgba(58, 155, 220, 0.4) !important;
        background: rgba(58, 155, 220, 0.03) !important;
    }

        div.hero-preview-tabs button.hero-tab[data-tab-id="video-demo"] i {
            color: #3a9bdc !important;
        }

        div.hero-preview-tabs button.hero-tab[data-tab-id="video-demo"].is-active i {
            color: #ffffff !important;
        }

    /* --- Special PDF Tabs Styling --- */
    div.hero-preview-tabs button.hero-tab[data-tab-id^="pdf-"] {
        background: rgba(239, 68, 68, 0.02) !important;
        border: 1px dashed #cbd5e1 !important;
    }

        div.hero-preview-tabs button.hero-tab[data-tab-id^="pdf-"] i {
            color: #ef4444 !important; /* Elegant PDF Red Accent */
        }

        div.hero-preview-tabs button.hero-tab[data-tab-id^="pdf-"]:hover {
            border-style: solid !important;
            border-color: #7ec8e3 !important;
            background: rgba(239, 68, 68, 0.05) !important;
        }

        div.hero-preview-tabs button.hero-tab[data-tab-id^="pdf-"].is-active {
            border-style: solid !important;
            background: linear-gradient(135deg, #7ec8e3 0%, #3a9bdc 100%) !important;
            border-color: transparent !important;
        }

            div.hero-preview-tabs button.hero-tab[data-tab-id^="pdf-"].is-active i {
                color: #ffffff !important;
            }

    /* --- Accessibility Focus States --- */
    div.hero-preview-tabs button.hero-tab:focus-visible {
        outline: none !important;
        box-shadow: 0 0 0 4px rgba(126, 200, 227, 0.7) !important;
    }


    /******/

/* =========================================================
   CAPPS LAUNCH BAND — top hero strip
   ========================================================= */

.capps-launch-band {
    position: relative;
    overflow: hidden;
    padding: 96px 24px 48px;
    background: radial-gradient(120% 120% at 50% 0%, #0f1b3d 0%, #0a1229 55%, #070c1c 100%);
    text-align: center;
    isolation: isolate;
}

.capps-launch-glow {
    position: absolute;
    top: -180px;
    left: 50%;
    width: 900px;
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(94, 124, 255, 0.35) 0%, rgba(94, 124, 255, 0) 70%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.capps-launch-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.capps-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(94, 124, 255, 0.12);
    border: 1px solid rgba(94, 124, 255, 0.35);
    color: #b9c6ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 24px;
}

    .capps-launch-badge i {
        font-size: 15px;
        color: #7c93ff;
    }

/* Title */
.capps-launch-title {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}

.capps-launch-title__accent {
    background: linear-gradient(90deg, #7c93ff 0%, #a78bff 50%, #6ee7ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Subtitle */
.capps-launch-subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: #aab3d1;
    max-width: 640px;
    margin: 0 0 36px;
}

/* CTAs */
.capps-launch-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}

.capps-launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.capps-launch-btn--primary {
    background: linear-gradient(90deg, #5e7cff, #7c5cff);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(94, 124, 255, 0.35);
}

    .capps-launch-btn--primary i {
        font-size: 18px;
        transition: transform 0.2s ease;
    }

    .capps-launch-btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(94, 124, 255, 0.45);
    }

        .capps-launch-btn--primary:hover i {
            transform: translateX(3px);
        }

.capps-launch-btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #e7ebff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

    .capps-launch-btn--secondary:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }

/* Trust row */
.capps-launch-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0 0 56px;
    padding: 0;
}

.capps-launch-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #c7cee8;
}

    .capps-launch-trust__item i {
        font-size: 17px;
        color: #6ee7ff;
    }

/* =========================================================
   Marquee (infinite scrolling feature pills)
   ========================================================= */

.capps-launch-marquee {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.capps-launch-marquee__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.capps-launch-marquee__fade--left {
    left: 0;
    background: linear-gradient(90deg, #0a1229 0%, transparent 100%);
}

.capps-launch-marquee__fade--right {
    right: 0;
    background: linear-gradient(270deg, #0a1229 0%, transparent 100%);
}

.capps-launch-marquee__track {
    display: flex;
    width: max-content;
    gap: 14px;
    animation: capps-launch-scroll 32s linear infinite;
}

.capps-launch-marquee:hover .capps-launch-marquee__track {
    animation-play-state: paused;
}

@keyframes capps-launch-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.capps-launch-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d7dcf5;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
}

    .capps-launch-pill i {
        font-size: 16px;
        color: #7c93ff;
    }

.capps-launch-pill--ai {
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.18), rgba(110, 231, 255, 0.18));
    border-color: rgba(124, 92, 255, 0.4);
    color: #ffffff;
}

    .capps-launch-pill--ai i {
        color: #a78bff;
    }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 768px) {
    .capps-launch-band {
        padding: 72px 16px 36px;
    }

    .capps-launch-ctas {
        flex-direction: column;
        width: 100%;
    }

    .capps-launch-btn {
        justify-content: center;
        width: 100%;
    }

    .capps-launch-trust {
        gap: 16px;
        row-gap: 10px;
    }

    .capps-launch-marquee__track {
        animation-duration: 22s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .capps-launch-marquee__track {
        animation: none;
    }
}

/****/

/* ===== CAPPS HERO SaaS - ULTRA PREMIUM STYLING ===== */

.capps-hero-wrapper {
    position: relative;
    background-color: #07090e;
    background-image: radial-gradient(at 50% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.08) 0px, transparent 40%);
    color: #f8fafc;
    padding: 7rem 1.5rem 4rem;
    overflow: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    /* Grille de fond subtil type texture technique */
    .capps-hero-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 40px 40px;
        z-index: 1;
        pointer-events: none;
    }

/* Lueur d'ambiance centrale dynamique */
.capps-hero-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(7, 9, 14, 0) 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(80px);
}

.capps-hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Badge de positionnement --- */
.capps-hero-badge-wrapper {
    margin-bottom: 2rem;
}

.capps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 0.45rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a5b4fc;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

    .capps-hero-badge i {
        font-size: 1.1rem;
        color: #818cf8;
        animation: pulseIcon 2s infinite ease-in-out;
    }

/* --- Titre Principal --- */
.capps-hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.capps-hero-title__highlight {
    background: linear-gradient(135deg, #ffffff 20%, #a5b4fc 60%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Sous-titre --- */
.capps-hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    line-height: 1.65;
    color: #94a3b8;
    max-width: 760px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* --- Actions & Boutons (CTAs) --- */
.capps-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.capps-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.capps-hero-cta--main {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .capps-hero-cta--main:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .capps-hero-cta--main i {
        transition: transform 0.2s ease;
    }

    .capps-hero-cta--main:hover i {
        transform: translateX(4px);
    }

.capps-hero-cta--alt {
    background: rgba(255, 255, 255, 0.03);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

    .capps-hero-cta--alt:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

/* --- Éléments de Réassurance --- */
.capps-hero-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.25rem;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.capps-hero-perk__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .capps-hero-perk__item i {
        font-size: 1.25rem;
        color: #10b981; /* Vert émeraude éclatant */
    }

/* --- Bandeau Défilant (Marquee) --- */
.capps-features-marquee {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 5rem;
    overflow: hidden;
    display: flex;
    padding: 0.5rem 0;
}

/* Masques de fondu gauche et droite */
.capps-features-marquee__mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 4;
    pointer-events: none;
}

.capps-features-marquee__mask--left {
    left: 0;
    background: linear-gradient(to right, #07090e, transparent);
}

.capps-features-marquee__mask--right {
    right: 0;
    background: linear-gradient(to left, #07090e, transparent);
}

.capps-features-marquee__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: infiniteScrollMarquee 35s linear infinite;
}

    .capps-features-marquee__track:hover {
        animation-play-state: paused;
    }

/* Chips / Pules de fonctionnalités */
.capps-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

    .capps-feature-chip:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .capps-feature-chip i {
        color: #818cf8;
        font-size: 1.1rem;
    }

/* Style exclusif pour la puce Assistant IA */
.capps-feature-chip--highlight {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(99, 102, 241, 0.08));
    border-color: rgba(168, 85, 247, 0.25);
    color: #f3e8ff;
}

    .capps-feature-chip--highlight i {
        color: #c084fc;
    }

/* --- Animations --- */
@keyframes infiniteScrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseIcon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

/* Responsive mobile ajustements fins */
@media (max-width: 768px) {
    .capps-hero-wrapper {
        padding: 5rem 1rem 3rem;
    }

    .capps-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .capps-hero-cta {
        width: 100%;
    }

    .capps-hero-perks {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-left: 1rem;
    }
}

/*****/

/* ===== CAPPS HERO SaaS - ULTRA PREMIUM STYLING (HARDENED) ===== */

.capps-hero-wrapper,
.capps-hero-wrapper * {
    box-sizing: border-box !important;
}

.capps-hero-wrapper {
    position: relative !important;
    background-color: #05070d !important;
    background-image: radial-gradient(at 20% 0%, rgba(99, 102, 241, 0.16) 0px, transparent 55%), radial-gradient(at 80% 10%, rgba(168, 85, 247, 0.14) 0px, transparent 50%), radial-gradient(at 50% 100%, rgba(6, 182, 212, 0.08) 0px, transparent 45%) !important;
    color: #f8fafc !important;
    padding: 7.5rem 1.5rem 4rem !important;
    overflow: hidden !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    isolation: isolate !important;
}

    /* Grille de fond technique */
    .capps-hero-wrapper::before {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px) !important;
        background-size: 42px 42px !important;
        -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 100%) !important;
        mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 100%) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    /* Bruit subtil (texture premium) */
    .capps-hero-wrapper::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) !important;
        background-size: 3px 3px !important;
        opacity: 0.4 !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

/* Lueur d'ambiance animée */
.capps-hero-bg-glow {
    position: absolute !important;
    top: 5% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 640px !important;
    height: 360px !important;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(7, 9, 14, 0) 70%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    filter: blur(90px) !important;
    animation: capps-glow-breathe 6s ease-in-out infinite !important;
}

@keyframes capps-glow-breathe {
    0%, 100% {
        opacity: 0.85;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.08);
    }
}

.capps-hero-container {
    position: relative !important;
    z-index: 3 !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* --- Badge --- */
.capps-hero-badge-wrapper {
    margin-bottom: 2rem !important;
}

.capps-hero-badge {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(168, 85, 247, 0.14)) !important;
    border: 1px solid rgba(148, 163, 253, 0.3) !important;
    padding: 0.5rem 1.35rem !important;
    border-radius: 100px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #c7d2fe !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    overflow: hidden !important;
}

    .capps-hero-badge span {
        color: #c7d2fe !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .capps-hero-badge i {
        font-size: 1.1rem !important;
        color: #a5b4fc !important;
        animation: pulseIcon 2s infinite ease-in-out !important;
        position: relative !important;
        z-index: 1 !important;
    }

    /* Effet shimmer discret sur le badge */
    .capps-hero-badge::after {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: -60% !important;
        width: 50% !important;
        height: 100% !important;
        background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.25), transparent) !important;
        animation: capps-badge-shimmer 4.5s ease-in-out infinite !important;
    }

@keyframes capps-badge-shimmer {
    0% {
        left: -60%;
    }

    50% {
        left: 130%;
    }

    100% {
        left: 130%;
    }
}

/* --- Titre Principal --- */
.capps-hero-title {
    font-size: clamp(2.4rem, 5vw, 4.1rem) !important;
    font-weight: 800 !important;
    line-height: 1.14 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    margin: 0 0 1.5rem !important;
    text-shadow: 0 2px 40px rgba(99, 102, 241, 0.25) !important;
}

    .capps-hero-title__highlight,
    .capps-hero-title span.capps-hero-title__highlight {
        display: inline-block !important;
        background: linear-gradient(135deg, #ffffff 15%, #a5b4fc 55%, #c084fc 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
    }

/* --- Sous-titre --- */
.capps-hero-subtitle {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem) !important;
    line-height: 1.68 !important;
    color: #a3adc7 !important;
    max-width: 760px !important;
    margin: 0 0 2.5rem !important;
    font-weight: 400 !important;
}

/* --- CTAs --- */
.capps-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin: 0 0 3.5rem !important;
}

.capps-hero-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 0.9rem 2.1rem !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

    .capps-hero-cta span {
        position: relative !important;
        z-index: 1 !important;
    }

.capps-hero-cta--main {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 55%, #4f46e5 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}

    .capps-hero-cta--main::before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: -75% !important;
        width: 50% !important;
        height: 100% !important;
        background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent) !important;
        transition: left 0.6s ease !important;
    }

    .capps-hero-cta--main:hover::before {
        left: 130% !important;
    }

    .capps-hero-cta--main:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 34px rgba(99, 102, 241, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    }

    .capps-hero-cta--main i {
        color: #ffffff !important;
        transition: transform 0.2s ease !important;
    }

    .capps-hero-cta--main:hover i {
        transform: translateX(4px) !important;
    }

.capps-hero-cta--alt {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #f1f5f9 !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

    .capps-hero-cta--alt i {
        color: #f1f5f9 !important;
    }

    .capps-hero-cta--alt:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.26) !important;
        transform: translateY(-3px) !important;
    }

/* --- Réassurance --- */
.capps-hero-perks {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2.25rem !important;
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.capps-hero-perk__item {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    color: #a8b1c9 !important;
}

    .capps-hero-perk__item span {
        color: #a8b1c9 !important;
    }

    .capps-hero-perk__item i {
        font-size: 1.25rem !important;
        color: #34d399 !important;
        filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.45)) !important;
    }

/* --- Bandeau Défilant (Marquee) --- */
.capps-features-marquee {
    position: relative !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-top: 5rem !important;
    overflow: hidden !important;
    display: flex !important;
    padding: 0.5rem 0 !important;
}

.capps-features-marquee__mask {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 160px !important;
    z-index: 4 !important;
    pointer-events: none !important;
}

.capps-features-marquee__mask--left {
    left: 0 !important;
    background: linear-gradient(to right, #05070d, transparent) !important;
}

.capps-features-marquee__mask--right {
    right: 0 !important;
    background: linear-gradient(to left, #05070d, transparent) !important;
}

.capps-features-marquee__track {
    display: flex !important;
    gap: 1.25rem !important;
    width: max-content !important;
    animation: infiniteScrollMarquee 35s linear infinite !important;
}

    .capps-features-marquee__track:hover {
        animation-play-state: paused !important;
    }

/* Chips */
.capps-feature-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.7rem !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    padding: 0.7rem 1.4rem !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #d5dbee !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    transition: all 0.25s ease !important;
}

    .capps-feature-chip:hover {
        background: rgba(255, 255, 255, 0.07) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35) !important;
    }

    .capps-feature-chip i {
        color: #a5b4fc !important;
        font-size: 1.1rem !important;
    }

.capps-feature-chip--highlight {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(99, 102, 241, 0.14)) !important;
    border-color: rgba(192, 132, 252, 0.35) !important;
    color: #f3e8ff !important;
}

    .capps-feature-chip--highlight i {
        color: #d8b4fe !important;
    }

/* --- Animations --- */
@keyframes infiniteScrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulseIcon {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .capps-hero-wrapper {
        padding: 5rem 1rem 3rem !important;
    }

    .capps-hero-actions {
        flex-direction: column !important;
        width: 100% !important;
    }

    .capps-hero-cta {
        width: 100% !important;
    }

    .capps-hero-perks {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: flex-start !important;
        padding-left: 1rem !important;
    }
}

/*****/

/* =========================================================
   CAPPS METRICS — Section preuve sociale (stats animées)
   ========================================================= */

.capps-metrics-section {
    position: relative;
    overflow: hidden;
    padding: 110px 24px;
    background: #05070d;
    isolation: isolate;
}

    .capps-metrics-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
        background-size: 42px 42px;
        -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 40%, transparent 100%);
        mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 40%, transparent 100%);
        z-index: 0;
        pointer-events: none;
    }

.capps-metrics-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(5, 7, 13, 0) 70%);
    filter: blur(90px);
    z-index: 0;
    pointer-events: none;
}

.capps-metrics-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

/* Header */
.capps-metrics-header {
    text-align: center;
    margin-bottom: 64px;
}

.capps-metrics-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(168, 85, 247, 0.14));
    border: 1px solid rgba(148, 163, 253, 0.3);
    color: #c7d2fe;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

    .capps-metrics-eyebrow i {
        font-size: 1rem;
        color: #a5b4fc;
    }

.capps-metrics-title {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

/* Grid */
.capps-metrics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1100px) {
    .capps-metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .capps-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 460px) {
    .capps-metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.capps-metric-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

    .capps-metric-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .capps-metric-card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(165, 180, 252, 0.35);
        box-shadow: 0 24px 48px -16px rgba(99, 102, 241, 0.35);
    }

        .capps-metric-card:hover::before {
            opacity: 1;
        }

.capps-metric-card--highlight {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.14), rgba(168, 85, 247, 0.1));
    border-color: rgba(165, 180, 252, 0.3);
}

    .capps-metric-card--highlight:hover {
        box-shadow: 0 24px 56px -14px rgba(139, 92, 246, 0.5);
    }

/* Icon */
.capps-metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.18));
    border: 1px solid rgba(165, 180, 252, 0.3);
}

    .capps-metric-icon i {
        font-size: 24px;
        color: #c4b5fd;
    }

/* Value */
.capps-metric-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.capps-metric-prefix {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: #a5b4fc;
}

.capps-metric-counter {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 20%, #a5b4fc 65%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

.capps-metric-suffix {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: #a5b4fc;
}

/* Label */
.capps-metric-label {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .capps-metric-card {
        transition: none;
    }
}


/*****/

/* ===== CAPPS METRICS — STYLES SAAS PREMIUM ===== */

.capps-metrics-section {
    position: relative;
    background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.12), rgba(15, 23, 42, 0) 70%), #090d16;
    padding: 100px 20px;
    overflow: hidden;
    color: #f8fafc;
    font-family: inherit;
}

/* Effet de lueur d'arrière-plan centralisé et sophistiqué */
.capps-metrics-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.18) 0%, rgba(147, 51, 234, 0.08) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.capps-metrics-container {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    z-index: 2;
}

/* En-tête de section */
.capps-metrics-header {
    text-align: center;
    margin-bottom: 64px;
}

.capps-metrics-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #818cf8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

    .capps-metrics-eyebrow i {
        font-size: 1.1rem;
    }

.capps-metrics-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grille des cartes */
.capps-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 24px;
}

/* Carte individuelle (Style Glassmorphism & Border Gradient) */
.capps-metric-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    .capps-metric-card:hover {
        transform: translateY(-6px);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: 0 20px 40px -15px rgba(99, 102, 241, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    }

/* Carte mise en avant (Highlight) */
.capps-metric-card--highlight {
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 15px 35px -10px rgba(79, 70, 229, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

    .capps-metric-card--highlight:hover {
        border-color: rgba(129, 140, 248, 0.6);
        box-shadow: 0 25px 50px -15px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

/* Icône de la métrique */
.capps-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    color: #818cf8;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.capps-metric-card:hover .capps-metric-icon {
    background: rgba(99, 102, 241, 0.2);
    color: #ffffff;
    transform: scale(1.08) rotate(3deg);
}

/* Valeurs et compteurs */
.capps-metric-value {
    font-size: clamp(2.25rem, 2.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capps-metric-prefix,
.capps-metric-suffix {
    color: #818cf8;
    font-weight: 700;
}

/* Étiquette (Label) */
.capps-metric-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94a3b8;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Responsive design pour petits écrans */
@media (max-width: 768px) {
    .capps-metrics-section {
        padding: 60px 16px;
    }

    .capps-metrics-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}


/*****/

/* ===== CAPPS METRICS — ULTRA-PREMIUM SAAS STYLES ===== */

.capps-metrics-section {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
    color: #f8fafc;
    font-family: inherit;
}

/* Lueur d'arrière-plan animée */
.capps-metrics-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.22) 0%, rgba(168, 85, 247, 0.1) 50%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
    animation: cappsPulseGlow 8s ease-in-out infinite alternate;
}

@keyframes cappsPulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.capps-metrics-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
}

/* En-tête de section */
.capps-metrics-header {
    text-align: center;
    margin-bottom: 72px;
}

.capps-metrics-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 8px 20px -6px rgba(99, 102, 241, 0.2);
}

    .capps-metrics-eyebrow i {
        font-size: 1.15rem;
        color: #818cf8;
    }

.capps-metrics-title {
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 20%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Grille des cartes */
.capps-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

/* Carte individuelle avec effet Shine & Glassmorphism avancé */
.capps-metric-card {
    position: relative;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.65) 0%, rgba(15, 23, 42, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

    /* Effet de reflet lumineux (Shine) au survol */
    .capps-metric-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 150%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
        transform: skewX(-20deg);
        transition: none;
    }

    .capps-metric-card:hover::after {
        left: 150%;
        transition: 0.8s ease-in-out;
    }

    .capps-metric-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: rgba(129, 140, 248, 0.5);
        box-shadow: 0 30px 60px -20px rgba(99, 102, 241, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    }

/* Carte mise en avant (Highlight) ultra-lumineuse */
.capps-metric-card--highlight {
    background: linear-gradient(145deg, rgba(79, 70, 229, 0.2) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 25px 50px -15px rgba(79, 70, 229, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

    .capps-metric-card--highlight:hover {
        border-color: rgba(168, 85, 247, 0.7);
        box-shadow: 0 35px 70px -20px rgba(99, 102, 241, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

/* Icône avec effet de lueur et rotation sophistiquée */
.capps-metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(79, 70, 229, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    color: #a5b4fc;
    font-size: 1.65rem;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1), 0 8px 20px -8px rgba(99, 102, 241, 0.3);
}

.capps-metric-card:hover .capps-metric-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.2));
    border-color: rgba(129, 140, 248, 0.6);
    color: #ffffff;
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 12px 25px -8px rgba(99, 102, 241, 0.5);
}

/* Valeurs et compteurs */
.capps-metric-value {
    font-size: clamp(2.5rem, 3vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.capps-metric-prefix,
.capps-metric-suffix {
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Étiquette (Label) */
.capps-metric-label {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8 !important;
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.capps-metric-card:hover .capps-metric-label {
    color: #cbd5e1;
}

/* Responsive design */
@media (max-width: 768px) {
    .capps-metrics-section {
        padding: 70px 16px;
    }

    .capps-metrics-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
}


/*****/



/* ===== CAPPS HERO — MISE EN PAGE 70% / 30% & TICKER VERTICAL ===== */

.capps-hero-wrapper {
    position: relative;
    background: radial-gradient(circle at 75% 20%, rgba(99, 102, 241, 0.16) 0%, rgba(15, 23, 42, 0.96) 60%, #060911 100%);
    padding: 90px 24px;
    overflow: hidden;
    color: #f8fafc;
    font-family: inherit;
}

.capps-hero-bg-glow {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

/* Grille principale : 70% pour la gauche, 30% pour la droite */
.capps-hero-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 40px;
    align-items: center;
}

/* Conteneur gauche (70%) */
.capps-hero-content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styles des éléments textuels et boutons */
.capps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.capps-hero-title {
    font-size: clamp(2.1rem, 2.7vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #ffffff;
    line-height: 1.15;
    margin: 0;
}

.capps-hero-title__highlight {
    background: linear-gradient(135deg, #818cf8 20%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.capps-hero-subtitle {
    font-size: 1.02rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    max-width: 95%;
}

.capps-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.capps-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capps-hero-cta--main {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .capps-hero-cta--main:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.7);
    }

.capps-hero-cta--alt {
    background: rgba(30, 41, 59, 0.7);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

    .capps-hero-cta--alt:hover {
        background: rgba(30, 41, 59, 0.9);
        color: #ffffff;
        border-color: rgba(99, 102, 241, 0.4);
    }

.capps-hero-perks {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.capps-hero-perk__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 500;
}

    .capps-hero-perk__item i {
        color: #34d399;
        font-size: 1.1rem;
    }

/* ===== TICKER VERTICAL À DROITE (30%) ===== */
.capps-features-marquee {
    position: relative;
    height: 440px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 14px;
}

/* Masques de fondu vertical haut et bas */
.capps-features-marquee__mask--left,
.capps-features-marquee__mask--right {
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 3;
    pointer-events: none;
}

.capps-features-marquee__mask--left {
    top: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), transparent);
}

.capps-features-marquee__mask--right {
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

/* Animation du défilement vertical infini */
.capps-features-marquee__track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: verticalMarquee 24s linear infinite;
}

.capps-features-marquee:hover .capps-features-marquee__track {
    animation-play-state: paused;
}

@keyframes verticalMarquee {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Chips du ticker vertical */
.capps-feature-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

    .capps-feature-chip i {
        font-size: 1.25rem;
        color: #818cf8;
        background: rgba(99, 102, 241, 0.15);
        padding: 8px;
        border-radius: 10px;
    }

    .capps-feature-chip:hover {
        border-color: rgba(99, 102, 241, 0.5);
        background: rgba(30, 41, 59, 0.9);
        transform: translateX(4px);
        color: #ffffff;
    }

.capps-feature-chip--highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(168, 85, 247, 0.18));
    border-color: rgba(99, 102, 241, 0.4);
}

    .capps-feature-chip--highlight i {
        background: rgba(168, 85, 247, 0.25);
        color: #c084fc;
    }

/* Adaptation responsive pour tablettes et mobiles (pile les blocs verticalement) */
@media (max-width: 1024px) {
    .capps-hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .capps-hero-subtitle {
        max-width: 100%;
    }

    .capps-features-marquee {
        height: 280px;
    }
}

/****/

/* ===== CAPPS HERO — MISE EN PAGE 70% / 30% & TICKER VERTICAL ALIGNÉ ===== */

.capps-hero-wrapper {
    position: relative;
    background: radial-gradient(circle at 75% 20%, rgba(99, 102, 241, 0.16) 0%, rgba(15, 23, 42, 0.96) 60%, #060911 100%);
    padding: 90px 24px;
    overflow: hidden;
    color: #f8fafc;
    font-family: inherit;
}

.capps-hero-bg-glow {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

/* Grille principale : 70% pour le texte à gauche, 30% pour le ticker à droite en face */
.capps-hero-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px; /* Colonne gauche fluide, Colonne droite fixe de 340px (~30%) */
    gap: 40px;
    align-items: stretch; /* Force les deux colonnes à s'aligner sur la même hauteur */
}

    /* Style de la colonne de gauche (contient tous vos éléments de texte, CTAs et perks) */
    .capps-hero-container > *:not(.capps-features-marquee) {
        grid-column: 1;
    }

/* Styles des éléments textuels internes */
.capps-hero-badge-wrapper {
    margin-bottom: 4px;
}

.capps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #a5b4fc;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.capps-hero-title {
    font-size: clamp(2.1rem, 2.7vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #ffffff;
    line-height: 1.15;
    margin: 16px 0;
    display: block;
}

.capps-hero-title__highlight {
    background: linear-gradient(135deg, #818cf8 20%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.capps-hero-subtitle {
    font-size: 1.02rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.capps-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.capps-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.capps-hero-cta--main {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

    .capps-hero-cta--main:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.7);
    }

.capps-hero-cta--alt {
    background: rgba(30, 41, 59, 0.7);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

    .capps-hero-cta--alt:hover {
        background: rgba(30, 41, 59, 0.9);
        color: #ffffff;
        border-color: rgba(99, 102, 241, 0.4);
    }

.capps-hero-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.capps-hero-perk__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 500;
}

    .capps-hero-perk__item i {
        color: #34d399;
        font-size: 1.1rem;
    }

/* ===== TICKER VERTICAL POSITIONNÉ À DROITE EN FACE DU TEXTE ===== */
.capps-features-marquee {
    grid-column: 2; /* Force le positionnement sur la 2e colonne (droite) */
    grid-row: 1 / span 6; /* S'étale verticalement sur toute la hauteur des blocs de gauche */
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Masques de fondu vertical haut et bas */
.capps-features-marquee__mask--left,
.capps-features-marquee__mask--right {
    position: absolute;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 3;
    pointer-events: none;
}

.capps-features-marquee__mask--left {
    top: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), transparent);
}

.capps-features-marquee__mask--right {
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

/* Animation du défilement vertical infini */
.capps-features-marquee__track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: verticalMarquee 24s linear infinite;
}

.capps-features-marquee:hover .capps-features-marquee__track {
    animation-play-state: paused;
}

@keyframes verticalMarquee {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Chips du ticker vertical */
.capps-feature-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

    .capps-feature-chip i {
        font-size: 1.25rem;
        color: #818cf8;
        background: rgba(99, 102, 241, 0.15);
        padding: 8px;
        border-radius: 10px;
    }

    .capps-feature-chip:hover {
        border-color: rgba(99, 102, 241, 0.5);
        background: rgba(30, 41, 59, 0.9);
        transform: translateX(4px);
        color: #ffffff;
    }

.capps-feature-chip--highlight {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(168, 85, 247, 0.18));
    border-color: rgba(99, 102, 241, 0.4);
}

    .capps-feature-chip--highlight i {
        background: rgba(168, 85, 247, 0.25);
        color: #c084fc;
    }

/* Adaptation responsive pour tablettes et mobiles */
@media (max-width: 1024px) {
    .capps-hero-container {
        grid-template-columns: 1fr;
    }

    .capps-features-marquee {
        grid-column: 1;
        grid-row: auto;
        height: 280px;
        margin-top: 20px;
    }
}

/****/



/* =========================================================================
   CAPPS HERO — FIX FINAL : 70% Texte (gauche) / 30% Défilement vertical (droite)
   À COLLER TOUT À LA FIN DE capps.css (après tous les autres blocs .capps-hero-*)
   Ce bloc utilise !important pour neutraliser l'ancien bloc qui forçait le
   ticker en pleine largeur (100vw, horizontal) et qui gagnait la cascade
   à cause de son propre !important, peu importe l'ordre des règles suivantes.
   ========================================================================= */

.capps-hero-container {
    display: grid !important;
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr) !important;
    gap: 40px !important;
    align-items: stretch !important;
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* --- Colonne gauche (70%) : texte, CTAs, réassurance --- */
.capps-hero-content-left {
    grid-column: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: start !important;
    gap: 20px !important;
    min-width: 0 !important;
    text-align: left !important;
}

    .capps-hero-content-left .capps-hero-badge-wrapper,
    .capps-hero-content-left .capps-hero-title,
    .capps-hero-content-left .capps-hero-subtitle {
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    .capps-hero-content-left .capps-hero-actions {
        justify-content: flex-start !important;
    }

    .capps-hero-content-left .capps-hero-perks {
        justify-content: flex-start !important;
        padding-left: 0 !important;
    }

/* --- Colonne droite (30%) : ticker vertical défilant --- */
.capps-features-marquee {
    grid-column: 2 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    height: auto !important;
    min-height: 420px !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(165deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    max-height:750px;
}

/* Masques de fondu HAUT / BAS (et non plus gauche/droite) */
.capps-features-marquee__mask--left,
.capps-features-marquee__mask--right {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    height: 70px !important;
}

.capps-features-marquee__mask--left {
    top: 0 !important;
    bottom: auto !important;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), transparent) !important;
}

.capps-features-marquee__mask--right {
    bottom: 0 !important;
    top: auto !important;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent) !important;
}

/* Défilement VERTICAL infini (au lieu d'horizontal) */
.capps-features-marquee__track {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
    animation: cappsVerticalMarqueeFix 24s linear infinite !important;
}

.capps-features-marquee:hover .capps-features-marquee__track {
    animation-play-state: paused !important;
}

@keyframes cappsVerticalMarqueeFix {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.capps-feature-chip {
    width: 100% !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

/* --- Responsive : on repasse en pile verticale simple --- */
@media (max-width: 1024px) {
    .capps-hero-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .capps-hero-content-left,
    .capps-features-marquee {
        grid-column: 1 !important;
    }

    .capps-features-marquee {
        min-height: 280px !important;
        margin-top: 0 !important;
    }
}