.home-new {
    color: #343434;
    overflow-x: hidden;
}

/* Hero Section */
.hero-slider-section {
    position: relative;
    height: calc(100vh - 159px);
    min-height: 600px;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.btn-bolt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #4c5ca4;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-bolt-blue {
    background: #4c5ca4;
    color: white;
}

.btn-bolt-yellow {
    background: #fde663;
    color: #000;
}

.btn-bolt-white {
    background: white;
    color: #4c5ca4;
}

.hero-inner-content {
    position: relative;
    z-index: 10;
    max-width: 1536px;
    min-height: 400px;
}

.hero-inner-content-custom {
    background: linear-gradient(
        180deg,
        rgba(48, 45, 99, 0.85) 0%,
        rgba(32, 30, 71, 0.85) 100%
    );
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 120px;
}
.hero-inner-content-custom h2 {
    font-size: 30px;
}
.hero-inner-content-custom a {
    background: #f9fafb;
    color: #111827;
    margin: 20px 0;
    font-size: 16px;
}

/* Gestion des contenus multiples du slider */
.hero-content-slide {
    opacity: 0;
    transition:
        opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.08);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Video MP4 en fond du 1er slide (effet "cover", derriere l'overlay/texte).
   L'image de fond du slide reste en repli le temps que la video charge. */
.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    pointer-events: none;
}

/* Overlays pour chaque slide */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(48, 45, 99, 0.35) 0%,
        rgba(32, 30, 71, 0.35) 100%
    );
    z-index: 1;
}

.hero-slide-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjA1IiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=");
}

/* Overlay léger pour les slides 2 et 3 (produits) */
.hero-slide-overlay-light {
    background: linear-gradient(
        180deg,
        rgba(48, 45, 99, 0.3) 0%,
        rgba(32, 30, 71, 0.4) 100%
    );
}

.hero-slide-overlay-light::after {
    opacity: 0.1;
}

.hero-inner-content .p {
    font-size: 1.25rem;
    color: #dbeafe;
    max-width: 40rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.hero-inner-content strong {
    margin-top: 0.5rem;
    color: white;
}
.text-left {
    text-align: left !important;
    margin: 0 !important;
    margin-bottom: 30px !important;
}
.hero-container-custom {
    width: 1536px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 50px;
    font-weight: 600;
    color: #dbeafe;
}

.hero-main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    width: 80%;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(to right, #93c5fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.875rem;
    color: #dbeafe;
}

/* Sections Global */
.section-padding {
    padding: 5rem 0;
}
.section-padding-large {
    padding: 6rem 0;
}
.bg-light {
    background-color: #f9fafb;
}
.bg-white {
    background-color: #ffffff;
}

/* Category & Product Cards */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    max-width: 1200px;
    max-width: 1536px;
    margin: 0 auto;
}

.card-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 19%;
    box-sizing: border-box;
}

.btn-all-categories {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background-color: #4c5ca4;
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-all-categories:hover {
    background-color: #302d63;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-all-categories .arrow-icon {
    transition: transform 0.3s ease;
    opacity: 100;
}

.btn-all-categories:hover .arrow-icon {
    transform: translateX(4px);
}

.mb-5 {
    margin-bottom: 3rem;
}
.cards-grid h3 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.card-item:hover {
    border-color: #4c5ca4;
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: #4c5ca4;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
}

/* CTA Card Styles */
.card-item-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-item-cta h3 {
    color: #4c5ca4;
    margin-bottom: 0.5rem;
}
.card-item-cta p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.card-item-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 30px -5px rgba(76, 92, 164, 0.2);
}

.card-icon-cta {
    background: linear-gradient(135deg, #4c5ca4 0%, #302d63 100%);
    transition: all 0.3s ease;
}

.card-item-cta:hover .card-icon-cta {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 10px 20px rgba(76, 92, 164, 0.3);
}

.card-item-cta:hover .arrow-cta {
    transform: translateX(5px);
}

.arrow-cta {
    transition: transform 0.3s ease;
}

.card-item-cta h3 {
    text-transform: none !important;
    font-size: 1.1rem !important;
}

.card-img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.block-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Advantages Section */
.advantage-card {
    background: linear-gradient(to bottom right, #f9fafb, #ffffff);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: 0.3s;
}

.advantage-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.advantage-card p {
    color: #4b5563;
    line-height: 1.6;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1536px;
    margin: 0 auto;
    text-align: left;
}

.advantage-icon-bolt {
    width: 4rem;
    height: 4rem;
    background: #4c5ca4;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.advantage-icon-bolt.alt {
    background: #343434;
}

/* Stats Bolt Section */
.section-stats-bolt {
    position: relative;
    background: linear-gradient(180deg, #302d63 0%, #201e47 100%);
    color: white;
}

.stats-bolt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;

    max-width: 1536px;
    margin: 0 auto;
}

.stat-bolt-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}
.stat-bolt-card div {
    font-weight: 700;
    font-size: 1.25rem;
}
.stat-bolt-card p {
    color: #dbeafe;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.stat-bolt-number {
    font-size: 4.5rem !important;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #93c5fd, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Final CTA Section */
.cta-final-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 2.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #302d63 0%, #201e47 100%);
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .cta-final-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .cards-grid h3 {
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.7rem;
    }
}

.cta-final-content {
    padding: 4rem;
    color: white;
}
.cta-final-media {
    background-color: #111827;
    position: relative;
    background-image: url("https://images.pexels.com/photos/1797428/pexels-photo-1797428.jpeg");
    background-size: cover;
    background-position: center;
}

.cta-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(48, 45, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-contact-info {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}
.mt-30 {
    margin-top: 30px;
}
.cta-final-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.cta-final-content p {
    font-size: 1.125rem;
    color: #dbeafe;
    line-height: 1.6;
}

/* Slider Indicators */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.slider-dot {
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    width: 3rem; /* Effet pilule allongée pour le slide actif */
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Flèches de navigation du slider */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-slider-prev {
    left: 1rem;
}

.hero-slider-next {
    right: 1rem;
}

/* Dots de navigation : en bas a gauche pour ne pas chevaucher le bouton "Decouvrir" centre */
.hero-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Bouton rond "Découvrir notre stock" : invite au scroll + CTA */
.hero-scroll-discover {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    margin-left: -59px; /* moitié de la largeur pour centrer sans transform */
    z-index: 25;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    text-decoration: none;
    color: #4c5ca4;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, box-shadow 0.3s,
        opacity 0.4s, visibility 0.4s;
    animation: heroDiscoverIn 0.6s ease both;
}

.hero-scroll-discover:hover {
    transform: translateY(-4px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.hero-scroll-discover-text {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.hero-scroll-discover-arrow {
    animation: heroDiscoverBounce 1.6s ease-in-out infinite;
}

/* Masqué dès que l'utilisateur a commencé à scroller */
.hero-scroll-discover.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}

@keyframes heroDiscoverBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

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

@media (max-width: 768px) {
    .hero-slider-arrow {
        width: 2rem;
        height: 2rem;
    }

    .hero-slider-prev {
        left: 0.5rem;
    }

    .hero-slider-next {
        right: 0.5rem;
    }

    .hero-slider-dots {
        bottom: 1rem;
        left: 1.5rem;
    }

    /* Spécificité renforcée : le bloc @media (max-width:1024px) situé plus bas
       dans le fichier réappliquerait sinon padding:30px 60px (titre coupé sur mobile). */
    .hero-slider-section .hero-inner-content-custom {
        padding: 20px 24px;
    }

    .hero-inner-content-custom h2 {
        font-size: 18px;
    }
    .hero-inner-content-custom a {
        margin: 15px 0 10px 0;
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Le bouton rond "Découvrir" (indicateur de scroll) chevauche les CTA des
       slides sur mobile : on le masque, l'invite au scroll est inutile en tactile. */
    .hero-scroll-discover {
        display: none;
    }
}

.pt-0 {
    padding-top: 0 !important;
}
/* Optionnel : Ajout d'un dégradé au bas pour améliorer la lisibilité des dots */
.hero-slider-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.2), transparent);
    pointer-events: none;
}

.home-products-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1536px;
    margin: 0 auto;
    gap: 1rem;
}

.home-products-grid .product-card-bolt {
    width: 25%;
}

.content-center {
    text-align: center;
    margin-bottom: 4rem;
}
.content-center span {
    color: #4c5ca4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.25rem;
}
.content-center h2 {
    font-size: 35px;
    font-weight: 800;
    margin-top: 0rem;
}

/* ========================================
   RESPONSIVE — Tablette (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {

    .hero-inner-content-custom {
        padding: 30px 60px;
    }

    .hero-inner-content-custom h2 {
        font-size: 18px;
    }
    .hero-inner-content-custom a {
        margin: 20px 0 10px 0;
        font-size: 12px;
        padding: 8px 12px;
    }

    .hero-container-custom {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    .container-custom {
        padding: 0 10px;
    }
    .home-products-grid {
        width: 100%;
        flex-wrap: wrap;
    }
    .home-products-grid .product-card-bolt {
        width: 48%;
    }
    .card-item {
        width: 45%;
    }
    .hero-slider-section {
        min-height: 450px;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .content-center {
        margin-bottom: 2.5rem;
    }
    .advantages-grid,
    .stats-bolt-grid {
        gap: 2rem;
    }
}

/* ========================================
   RESPONSIVE — Mobile (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .hero-slider-section {
        min-height: 350px;
        height: auto;
    }
    .hero-content-slide{
        padding: 0;
    }
    .hero-main-title {
        font-size: 20px;
        margin-bottom: 1.5rem;
    }
    .hero-status-badge {
        display: none;
        margin-bottom: 1rem;
    }
    .hero-buttons-group {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    .hero-features-list {
        flex-direction: column;
        gap: 1rem;
    }
    .section-padding {
        padding: 2.5rem 0;
    }
    .hero-inner-content {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .hero-inner-content p{
        font-size: 16px;
        text-align: center;
    }
    .content-center {
        margin-bottom: 2rem;
    }
    .content-center h2 {
        font-size: 1.5rem;
        line-height: 28px;
    }
    .cards-grid {
        gap: 1rem;
    }
    .card-item {
        width: 47%;
    }
    .home-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .home-products-grid .product-card-bolt {
        width: 100%;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .advantage-card {
        padding: 1.5rem;
    }
    .advantage-card h3 {
        font-size: 1.25rem;
    }
    .stats-bolt-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-bolt-number {
        font-size: 3rem !important;
    }
    .cta-final-content {
        padding: 2rem;
    }
    .cta-final-content h2 {
        font-size: 18px;
        line-height: 16px;
    }
    .cta-final-content p {
        font-size: 1rem;
    }
    .cta-final-media {
        min-height: 200px;
    }
    .block-cta {
        margin-top: 2rem;
    }
}

/* ========================================
   RESPONSIVE — Petit mobile (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .hero-status-badge {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }
    .cta-final-container {
        border-radius: 1.5rem;
    }
    .section-padding {
        padding: 2rem 0;
    }
    .hero-container-custom {
        padding: 0;
    }
    .card-item {
        padding: 1rem;
    }
    .card-icon-wrapper {
        width: 3rem;
        height: 3rem;
        margin-bottom: 0.75rem;
    }
    .card-icon-wrapper img {
        width: 28px !important;
    }
    .card-img {
        height: 160px;
    }
}

/* ========================================
   HERO — Layout SPLIT (image gauche, texte droite)
   ======================================== */
.hero-content-slide.layout-split {
    background: #fff;
    padding: 0;
    display: block;
}
.hero-split-wrapper {
    display: grid;
    grid-template-columns: 70% 30%;
    width: 100%;
    height: 100%;
}
.hero-split-image {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}
.hero-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-split-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2.5rem;
    background: linear-gradient(180deg, #4c5ca4 0%, #3a4682 100%);
    color: #fff;
    overflow: hidden;
}
.hero-split-content-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
}
/* Pattern decoratif : nom de la societe en vertical (PNG blanc) sur le bord droit */
.hero-split-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.hero-split-pattern-banner {
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    background: url('/template/images/site/banner-name.png') no-repeat right center;
    background-size: auto 80%;
    opacity: 0.18;
}
.hero-split-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin-bottom: 1.25rem;
    background: #fde663;
    color: #1f2937;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-split-title {
    font-size: clamp(1.25rem, 1.9vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.25rem 0;
    color: #fff;
}
.hero-split-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: #dbe0f0;
    margin-bottom: 1.75rem;
}
.hero-split-subtitle p {
    margin: 0 0 0.5rem 0;
}
.hero-split-subtitle strong,
.hero-split-subtitle b {
    color: #fde663 !important;
    font-weight: 700 !important;
}
.hero-split-cta {
    margin-top: 0.5rem;
}
.hero-split-cta .btn-bolt {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    background: #fff;
    color: #4c5ca4;
    font-weight: 700;
}

/* Tablette : repasser en 50/50 (30% serait trop etroit) + paddings reduits */
@media (max-width: 1200px) {
    .hero-split-wrapper {
        grid-template-columns: 60% 40%;
    }
}
@media (max-width: 1024px) {
    .hero-split-wrapper {
        grid-template-columns: 50% 50%;
    }
    .hero-split-content {
        padding: 3rem 2rem;
    }
    .hero-split-content-inner {
        max-width: none;
    }
}

/* Mobile : stack vertical (image en haut, texte en dessous)
   Sur mobile on sort du slider en position absolute pour que chaque slide actif
   prenne sa hauteur naturelle. Les slides non actifs sont caches (display:none),
   on perd le fade mais on gagne un rendu propre adapte au contenu. */
@media (max-width: 768px) {
    .hero-slider-section {
        height: auto;
        min-height: 0;
        overflow: visible;
    }
    .hero-content-slide {
        position: relative;
        opacity: 1;
        transform: none;
        height: auto;
        min-height: 350px;
    }
    .hero-content-slide.layout-split {
        min-height: 0;
    }
    .hero-content-slide:not(.active) {
        display: none;
    }
    .hero-split-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .hero-split-image {
        aspect-ratio: 4 / 3;
    }
    .hero-split-image img {
        width: 100%;
        height: 100%;
    }
    .hero-split-content {
        padding: 2rem 1.75rem 2.5rem;
        text-align: left;
        align-items: stretch;
    }
    .hero-split-content-inner {
        max-width: none;
    }
    .hero-split-pattern {
        display: none;
    }
    .hero-split-badge {
        margin-bottom: 1rem;
        padding: 0.35rem 0.85rem;
        font-size: 0.75rem;
    }
    .hero-split-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .hero-split-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}
