/* === index-pre.blade.php block 0 === */

        .card.image-full:before {
            z-index: 1;
        }

        .btn-primary {
            background-color: rgb(7, 63, 202);
        }

        .btn:hover {
            border-color: #FFD200;
        }

        .bg-base-100 {
            opacity: 1;
            background-color: whitesmoke;
        }

        .card.image-full {
            display: grid;
        }

        .card.image-full:before {
            position: relative;
            content: "";
            z-index: 10;
            --tw-bg-opacity: 0.5;
            background-color: hsl(var(--n) / var(--tw-bg-opacity));
            opacity: 0.75;
            border-radius: var(--rounded-box, 1rem
                    /* 16px */
                );
        }

        .card.image-full:before,
            .hero-slide-shell {
                position: relative;
                overflow: hidden;
                border-radius: 2rem;
                border: 1px solid rgba(255, 255, 255, 0.1);
                background: #081225;
                box-shadow: 0 30px 80px rgba(5, 12, 24, 0.35);
            }

            .hero-media {
                position: relative;
                width: 100%;
                line-height: 0;
            }

            .hero-media picture {
                display: block;
                width: 100%;
            }

            .hero-media img {
                display: block;
                width: 100%;
                height: auto;
                object-fit: contain;
                object-position: center center;
            }

            .hero-copy {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 2;
                display: flex;
                align-items: flex-end;
                padding: 1.5rem;
                color: #ffffff;
            }

            .hero-copy::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.58), rgba(2, 6, 23, 0.12));
                z-index: -1;
            }

            .hero-copy-inner {
                max-width: 42rem;
            }

            @media (min-width: 768px) {
                .hero-copy {
                    padding: 2.5rem;
                    align-items: flex-end;
                }

                .hero-copy::before {
                    background: linear-gradient(to top, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0) 80%);
                }
            }

            @media (min-width: 1280px) {
                .hero-copy {
                    padding: 4rem;
                }
            }
        .card.image-full :where(figure) {
            overflow: hidden;
            border-radius: inherit;
        }

        @keyframes enter-text {
            from {
                transform: translateX(-100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes enter-text-2 {
            from {
                transform: translateX(-100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Adding animation delays to each text element */
        .text-enter:nth-child(1) {
            animation-delay: 1s;
        }

        .text-enter:nth-child(2) {
            animation-delay: 1.5s;
        }

        .text-enter:nth-child(3) {
            animation-delay: 2s;
        }

        .text-enter:nth-child(4) {
            animation-delay: 2.5s;
        }

        .text-enter-2:nth-child(1) {
            animation-delay: 1s;
        }

        .text-enter-2:nth-child(2) {
            animation-delay: 1.5s;
        }

        .text-enter-2:nth-child(3) {
            animation-delay: 2s;
        }

        .image-with-transparent-background {
            background-color: transparent;
        }

        .h-96 {
            height: 21.9rem !important;
        }

        .md\:h-64 {
            height: 18rem !important;
        }

        .md\:h-60 {
            height: 11.5rem;
        }

        .logos-marquee {
            position: relative;
            overflow: hidden;
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
        }

        .logos-marquee-track {
            display: flex;
            width: max-content;
            animation: logosMarquee linear infinite;
        }

        .logos-marquee:hover .logos-marquee-track {
            animation-play-state: paused;
        }

        @keyframes logosMarquee {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }

        .carousel-focus:hover {
            transition: all 3s;
            transform: scale(1.1);
        }

        /* Manrope + Space Grotesk : self-hosted (voir public/fonts/inter.css equivalent) */

        .hero-shell {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top left, rgba(255, 210, 0, 0.18), transparent 30%),
                linear-gradient(135deg, #081225 0%, #0f274c 48%, #103968 100%);
        }

        /* Hauteur explicite mobile/desktop pour que le slide LCP soit
           dimensionné dès le 1er paint sans attendre le layout du parent.
           Réduit l'"element render delay" de ~1500ms à ~300ms. */
        .hero-stage {
            position: relative;
            aspect-ratio: 1920 / 860;
            min-height: 177px; /* mobile 412px / 2.23 */
        }
        @media (min-width: 768px) {
            .hero-stage { min-height: 320px; }
        }
        @media (min-width: 1024px) {
            .hero-stage { min-height: 400px; }
        }

        /* Default visible — pas de transition au 1er paint pour le LCP.
           Seuls les slides INACTIFS sont cachés. Évite le délai LCP de ~2s
           causé par opacity:0 → opacity:1 au démarrage. */
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            z-index: 1;
        }

        .hero-slide:not(.is-active) {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.6s ease;
            z-index: 0;
        }

        .hero-slide.is-active {
            transition: opacity 0.6s ease;
        }

        .hero-slide-shell {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: #081225;
            box-shadow: 0 18px 42px rgba(5, 12, 24, 0.24);
        }

        .hero-media {
            position: absolute;
            inset: 0;
            line-height: 0;
        }

        .hero-media picture {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .hero-copy {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
            color: #ffffff;
            font-family: 'Manrope', 'Segoe UI', sans-serif;
        }

        .hero-copy::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.08));
            z-index: -1;
        }

        .hero-copy-inner {
            max-width: 34rem;
        }

        .hero-eyebrow {
            font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
            letter-spacing: 0.22em;
        }

        .hero-title {
            font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
            font-weight: 700;
            letter-spacing: -0.04em;
            text-wrap: balance;
        }

        .hero-subtitle {
            max-width: 38rem;
        }

        .hero-dot.is-active {
            width: 3rem;
            background-color: #ffffff;
        }

        .home-index .site-product-card {
            gap: 0.8rem;
            padding: 0.85rem;
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
        }

        .home-index .site-product-title,
        .home-index .site-product-price,
        .home-index .site-product-badge,
        .home-index .site-action-caption {
            font-weight: 500;
        }

        .home-index .site-product-title {
            font-size: 0.78rem;
            line-height: 1.35;
        }

        .home-index .site-product-price {
            font-size: 0.9rem;
        }

        .home-index .site-product-media img {
            aspect-ratio: 4 / 2.9;
        }

        .home-category-card {
            border-radius: 14px;
            border: 1px solid var(--plv-border);
            box-shadow: var(--plv-shadow);
            transition: transform .4s var(--plv-easing), box-shadow .4s var(--plv-easing), border-color .3s ease;
        }
        .home-category-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--plv-shadow-hover);
            border-color: var(--plv-accent);
        }

        .home-category-card img {
            height: 11rem;
        }

        .home-category-name {
            font-size: 0.98rem;
            font-weight: 600;
            letter-spacing: -0.005em;
            line-height: 1.35;
        }

        /* === Cards categorie immersives (Option A) === */
        .hcc-card {
            position: relative;
            display: block;
            overflow: hidden;
            border-radius: 18px;
            aspect-ratio: 4 / 5;
            background: #0f172a;
            box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
            transition: transform .45s var(--plv-easing), box-shadow .45s var(--plv-easing);
            isolation: isolate;
        }
        .hcc-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(15, 23, 42, .25);
        }
        .hcc-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .8s cubic-bezier(.2,.7,.2,1);
            z-index: 1;
        }
        .hcc-card:hover img {
            transform: scale(1.08);
        }
        .hcc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(2,6,23,.86) 0%, rgba(2,6,23,.35) 45%, rgba(2,6,23,0) 75%);
            z-index: 2;
            transition: opacity .35s ease;
        }
        .hcc-card:hover::before {
            background: linear-gradient(to top, rgba(2,6,23,.92) 0%, rgba(2,6,23,.45) 50%, rgba(2,6,23,.05) 80%);
        }
        .hcc-pill {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 14px;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, .14);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            border: 1px solid rgba(255, 255, 255, .28);
            transition: all .35s ease;
        }
        .hcc-card:hover .hcc-pill {
            background: #ffffff;
            border-color: #ffffff;
            transform: translateY(-2px);
        }
        .hcc-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -.01em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color .35s ease;
        }
        .hcc-card:hover .hcc-name {
            color: #0f172a;
        }
        .hcc-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .25);
            color: #ffffff;
            flex-shrink: 0;
            transition: all .35s ease;
        }
        .hcc-card:hover .hcc-arrow {
            background: var(--plv-accent, #073FCA);
            transform: translateX(3px);
        }
        @media (min-width: 768px) {
            .hcc-card {
                aspect-ratio: 4 / 5;
            }
            .hcc-pill {
                left: 16px;
                right: 16px;
                bottom: 16px;
                padding: 14px 16px;
                border-radius: 16px;
            }
            .hcc-name {
                font-size: 1.02rem;
            }
            .hcc-arrow {
                width: 34px;
                height: 34px;
            }
        }

        .home-banner-card {
            border-radius: 0.8rem;
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
        }

        .home-process-grid {
            border-radius: 0.8rem;
        }

        .home-process-title {
            font-size: 0.96rem;
            font-weight: 500;
            color: #1f2937;
        }

        .home-process-copy {
            font-size: 0.8rem;
            line-height: 1.6;
        }

        .home-feature-card,
        .home-feature-media,
        .home-video-frame {
            border-radius: 0.8rem;
        }

        .home-feature-media {
            height: auto;
            object-fit: contain;
        }
        .home-video-frame {
            height: 9.4rem;
        }

        .home-feature-title {
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .home-about-title {
            font-size: 1.35rem;
            font-weight: 500;
            letter-spacing: -0.03em;
        }

        .home-about-copy,
        .home-about-copy p,
        .home-about-copy li {
            font-size: 0.9rem;
            line-height: 1.72;
            color: #6b7280;
        }

        .home-about-accent {
            font-weight: 500;
            color: #374151;
        }

        .home-client-card {
            width: 220px;
            margin: 1rem 0.75rem;
            padding: 0.9rem 1rem;
            border-radius: 0.45rem;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
        }

        @media (min-width: 768px) {
            .hero-copy {
                padding: 1.5rem;
                align-items: flex-end;
            }

            .hero-copy::before {
                background: linear-gradient(to top, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0) 80%);
            }
        }

        @media (min-width: 1280px) {
            .hero-copy {
                padding: 2rem 2.25rem;
            }

            .hero-title {
                font-size: 2.55rem;
                line-height: 0.98;
            }

            .home-category-card img {
                height: 11.5rem;
            }

            .home-feature-media {
                height: auto;
            }
            .home-video-frame {
                height: 10.2rem;
            }

            .home-about-title {
                font-size: 1.55rem;
            }
        }

        /* === Mobile fixes (≤640px) === */
        @media (max-width: 640px) {
            html, body { overflow-x: hidden; }

            /* Marquee logos clients : cartes plus petites pour ne pas déborder */
            .home-client-card { width: 150px !important; margin: 0.5rem 0.4rem !important; padding: 0.6rem 0.7rem !important; }
            .home-client-card img { max-height: 48px; width: auto; }

            /* Catégories : image moins haute pour respecter ratio mobile */
            .home-category-card img { height: 8.5rem !important; object-fit: cover; }

            /* Hero : titre plus grand + sous-titre lisible */
            .hero-eyebrow { font-size: 11px !important; }
            .hero-title { font-size: 1.5rem !important; line-height: 1.15 !important; }
            .hero-subtitle { font-size: 13px !important; line-height: 1.4 !important; }

            /* Hero CTA : tap-target ≥ 44px */
            .hero-copy a.inline-flex { padding: 12px 18px !important; font-size: 14px !important; min-height: 44px; }

            /* Hero dots : zone tactile élargie sans changer la taille visuelle */
            .hero-dot { position: relative; }
            .hero-dot::after { content: ''; position: absolute; inset: -10px; }

            /* Bannières aspect 16/3 illisibles sur mobile : forcer 16/9 */
            section img[style*="aspect-ratio: 16 / 3"],
            div[style*="aspect-ratio: 16 / 3"] { aspect-ratio: 16/9 !important; }

            /* Sections internes : px-6 par défaut + supprimer md:px-24 / md:px-32 desktop scaling sur mobile */
            section.px-6 { padding-left: 16px !important; padding-right: 16px !important; }

            /* Titres de section : éviter qu'ils explosent en hauteur */
            .plv-section-eyebrow { font-size: 11px !important; }

            /* Cartes services sur 1 colonne : éviter padding interne énorme */
            .home-feature-media { height: auto !important; object-fit: contain; }
            .home-video-frame { height: auto !important; aspect-ratio: 16/10; }

            /* Titre produits trop petit */
            .home-index .site-product-title { font-size: 13px !important; line-height: 1.3 !important; }

            /* Boutons produits : tap-target */
            .home-index .btn.btn-sm { min-height: 44px; padding: 10px 14px !important; }
        }

        @media (max-width: 360px) {
            .hero-title { font-size: 1.25rem !important; }
            .home-client-card { width: 130px !important; }
            .home-category-card img { height: 7.5rem !important; }
        }
    
/* === order.blade.php block 0 === */

        .card.image-full:before {
            z-index: 1;
        }

        /* Masquer les spinners natifs sur input quantity (garder uniquement les boutons +/-) */
        input.qtt::-webkit-outer-spin-button,
        input.qtt::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        input.qtt[type=number] { -moz-appearance: textfield; appearance: textfield; }

        .btn-primary {
            background-color: rgb(7, 63, 202);
        }

        .btn:hover {
            border-color: #FFD200;
        }

        .bg-base-100 {
            opacity: 1;
            background-color: whitesmoke;
        }

        .card.image-full {
            display: grid;
        }

        .card.image-full:before {
            position: relative;
            content: "";
            z-index: 10;
            --tw-bg-opacity: 0.5;
            background-color: hsl(var(--n) / var(--tw-bg-opacity));
            opacity: 0.75;
            border-radius: var(--rounded-box, 1rem
                    /* 16px */
                );
        }

        .card.image-full:before,
        .card.image-full>* {
            grid-column-start: 1;
            grid-row-start: 1;
        }

        .card.image-full:before,
        .card.image-full>* {
            grid-column-start: 1;
            grid-row-start: 1;
        }

        .card.image-full>figure img {
            height: 100%;
            object-fit: cover;
        }

        .card.image-full>.card-body {
            position: relative;
            z-index: 20;
            --tw-text-opacity: 0.5;
            color: hsl(var(--nc) / var(--tw-text-opacity));
        }

        .card.image-full :where(figure) {
            overflow: hidden;
            border-radius: inherit;
        }

        .text-enter {
            opacity: 0;
            animation: enter-text 0.5s ease-in-out forwards;
        }

        .text-enter-2 {
            opacity: 0;
            animation: enter-text-2 0.5s ease-in-out forwards;
        }

        @keyframes enter-text {
            from {
                transform: translateX(-100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes enter-text-2 {
            from {
                transform: translateX(-100%);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Adding animation delays to each text element */
        .text-enter:nth-child(1) {
            animation-delay: 1s;
        }

        .text-enter:nth-child(2) {
            animation-delay: 1.5s;
        }

        .text-enter:nth-child(3) {
            animation-delay: 2s;
        }

        .text-enter:nth-child(4) {
            animation-delay: 2.5s;
        }

        .text-enter-2:nth-child(1) {
            animation-delay: 1s;
        }

        .text-enter-2:nth-child(2) {
            animation-delay: 1.5s;
        }

        .text-enter-2:nth-child(3) {
            animation-delay: 2s;
        }

        .image-with-transparent-background {
            background-color: transparent;
        }

        /* Custom progress bar */
        #customProgressBar {
            width: 100%;
            height: 18px;
            background: #e5e7eb;
            border-radius: 6px;
            overflow: hidden;
        }

        #customProgressBarFill {
            height: 100%;
            width: 0%;
            background: #2563eb;
            color: #fff;
            font-size: 12px;
            line-height: 18px;
            text-align: center;
            transition: width 0.2s ease;
        }

        /* Style for the active tab */
        .inline-block[aria-selected="true"] {
            position: relative;
            background-color: white;
            color: #353535;
            border: 2px rgb(224, 224, 224) thin;
        }

        .inline-block[aria-selected="true"]::before {
            content: "";
            position: absolute;
            top: 50%;
            right: -6px;
            transform: translateY(-50%);
            border-top: 12px solid transparent;
            border-left: 12px solid #ffffff;
            border-bottom: 12px solid transparent;
        }

        .inline-block[aria-selected="false"] {
            background-color: rgb(209, 213, 219);
            color: #878585;
        }

        #choice-div .icon-wrapper {
            opacity: 0;
            transition: opacity 0.3s;
        }

        #choice-div:hover .icon-wrapper {
            opacity: 1;
        }


        #choice-div .icon-file {
            opacity: 0;
            transition: opacity 0.3s;
        }

        #choice-div:hover .icon-file {
            opacity: 1;
        }
    
/* === order.blade.php block 1 === */

/* === Single product page mobile fixes (≤640px) === */
@media (max-width: 640px) {
    html, body { overflow-x: hidden; }

    /* Sections : padding latéral réduit pour laisser plus de place au contenu */
    section.bg-gray-50.px-8 { padding-left: 16px !important; padding-right: 16px !important; }

    /* Onglets de description (Description / Caractéristiques / Avis) : padding lisible */
    .order-tabs button,
    button[data-tabs-target] { padding: 12px 10px !important; font-size: 13px !important; min-height: 44px; }

    /* Inputs dimensions (Hauteur + Largeur) : empiler en colonne au lieu de side-by-side */
    .custom-dimension-row,
    .order-custom-dim { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
    .order-custom-dim input { width: 100% !important; }

    /* Toute paire d'inputs adjacents avec space-x-6 dans la fiche produit : même chose */
    section.bg-gray-50 .flex.items-center.space-x-6 { flex-wrap: wrap; gap: 8px; }
    section.bg-gray-50 .flex.items-center.space-x-6 > * { margin-left: 0 !important; }

    /* Breadcrumb : autoriser le wrap, taille raisonnable */
    nav.flex.mb-8 { flex-wrap: wrap; row-gap: 4px; font-size: 12px; }
    nav.flex.mb-8 svg { flex-shrink: 0; }

    /* Titres produit : pas trop grand */
    .product-title { font-size: 20px !important; line-height: 1.25 !important; word-break: break-word; }

    /* Quantity selector mobile */
    .order-qty-controls { gap: 8px; }
    .order-qty-controls input[type="number"] { width: 60px !important; font-size: 16px; }

    /* Prix mobile : éviter écrasement */
    .order-mobile-price { font-size: 18px !important; }

    /* Boutons "Ajouter au panier" / "Commander" : pleine largeur + min-height */
    .order-cta-row .btn,
    .order-cta-row a,
    .order-cta-row button { width: 100%; min-height: 48px; padding: 12px 16px !important; font-size: 14px !important; }

    /* Image principale produit : éviter qu'elle dépasse */
    .order-product-image { max-height: 60vh; object-fit: contain; }

    /* Galerie thumbs : zone tactile */
    .order-thumb { min-width: 56px; min-height: 56px; }
}

@media (max-width: 360px) {
    section.bg-gray-50.px-8 { padding-left: 12px !important; padding-right: 12px !important; }
    .product-title { font-size: 17px !important; }
}

/* === order.blade.php block 2 === */

                    .order-type-btn.is-active { border-color: var(--plv-accent); background: var(--plv-accent-soft); }
                    .order-type-btn.is-active::after { content: "✓"; position: absolute; top: .75rem; right: .9rem; width: 22px; height: 22px; border-radius: 9999px; background: var(--plv-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
                
/* === category.blade.php block 0 === */

        .card.image-full:before{
            z-index:1;
        }
        .btn-primary {
            background-color: rgb(7, 63, 202);
        }
        .btn:hover {
            border-color: #FFD200;
        }
    
/* === products.blade.php block 0 === */

        .card.image-full:before{
            z-index:1;
        }
        .btn-primary {
            background-color: rgb(7, 63, 202);
        }
        .btn:hover {
            border-color: #FFD200;
        }
        .card-body {
            padding:1rem;
        }

        .w-card {
            width: 20rem;
        }
                /* SEO – internal links visible */
        .seo-description a {
            color: #1d4ed8;
            text-decoration: underline;
            font-weight: 500;
        }

        /* === Mobile fixes (≤640px) === */
        @media (max-width: 640px) {
            html, body { overflow-x: hidden; }

            /* Sections : padding latéral mobile réduit */
            section.px-4 { padding-left: 16px !important; padding-right: 16px !important; }
            section.px-4.pt-16 { padding-top: 24px !important; }

            /* Grille produits : passer à 2 colonnes sur mobile au lieu de 1 (densité acceptable) + gap réduit */
            .grid.grid-cols-1.md\:grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

            /* Cards : largeur auto, ne pas être bloquées par w-card 20rem */
            .w-card { width: 100% !important; }

            /* Card body : padding mobile réduit */
            .card-body { padding: 0.6rem !important; }
            .card-body h2,
            .card-body .card-title { font-size: 13px !important; line-height: 1.3 !important; }
            .card-body .btn { min-height: 40px; font-size: 12px !important; padding: 8px 10px !important; }

            /* Texte SEO : taille raisonnable */
            .site-richtext h2 { font-size: 22px !important; line-height: 1.25 !important; }
            .site-richtext h3 { font-size: 17px !important; }
            .site-richtext p, .site-richtext li { font-size: 14px !important; line-height: 1.55 !important; }
        }

        @media (max-width: 360px) {
            .grid.grid-cols-1.md\:grid-cols-4 { gap: 8px !important; }
            .card-body { padding: 0.5rem !important; }
        }

            
/* === contact.blade.php block 0 === */

    .contact-wrap { background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 40%); }
    .contact-field { position: relative; }
    .contact-field input,
    .contact-field textarea {
        width: 100%;
        background: #fff;
        border: 1.5px solid var(--plv-border);
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 15px;
        color: var(--plv-ink);
        transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
    }
    .contact-field input:focus,
    .contact-field textarea:focus {
        outline: none;
        border-color: var(--plv-accent);
        box-shadow: 0 0 0 4px rgba(7,63,202,.10);
        background: #fff;
    }
    .contact-field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--plv-ink);
        margin-bottom: 6px;
        letter-spacing: -.005em;
    }
    .contact-info-card {
        background: #fff;
        border: 1.5px solid var(--plv-border);
        border-radius: 16px;
        padding: 22px;
        display: flex;
        align-items: flex-start;
        gap: 16px;
        transition: transform .4s var(--plv-easing), box-shadow .4s var(--plv-easing), border-color .3s ease;
    }
    .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--plv-shadow-hover);
        border-color: var(--plv-accent);
    }
    .contact-info-icon {
        flex-shrink: 0;
        width: 48px; height: 48px;
        border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        background: var(--plv-accent-soft);
        color: var(--plv-accent);
        transition: background .3s ease, color .3s ease;
    }
    .contact-info-card:hover .contact-info-icon { background: var(--plv-accent); color: #fff; }
    .contact-form-card {
        background: #fff;
        border: 1.5px solid var(--plv-border);
        border-radius: 20px;
        padding: 32px;
        box-shadow: var(--plv-shadow);
    }
    @media (min-width: 768px) {
        .contact-form-card { padding: 40px; }
    }
    .contact-submit {
        display: inline-flex; align-items: center; gap: .5rem;
        background: var(--plv-ink);
        color: #fff;
        padding: 14px 28px;
        border-radius: 9999px;
        font-weight: 600; font-size: 14px;
        transition: background .3s ease, transform .3s var(--plv-easing), box-shadow .3s ease;
    }
    .contact-submit:hover { background: var(--plv-accent); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(7,63,202,.3); }

/* === about.blade.php block 0 === */

    .about-hero {
        background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 60%);
    }
    .about-title-hero {
        font-size: clamp(2rem, 5vw, 3.75rem);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.05;
        color: #0f172a;
    }
    .about-section-title {
        font-size: clamp(1.5rem, 3vw, 2.25rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        color: #0f172a;
        line-height: 1.15;
    }
    .about-subtle { color: #64748b; font-size: clamp(1rem, 1.1vw, 1.1rem); line-height: 1.75; }
    .about-card {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 1.75rem;
        box-shadow: 0 1px 2px rgba(15,23,42,.04);
        transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s cubic-bezier(.22,1,.36,1), border-color .3s ease;
    }
    .about-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(15,23,42,.10);
        border-color: #073FCA;
    }
    .about-icon {
        width: 48px; height: 48px;
        border-radius: 14px;
        display: inline-flex; align-items: center; justify-content: center;
        background: #e0e9ff;
        color: #073FCA;
        margin-bottom: 1rem;
    }
    .about-stat-number {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        background: linear-gradient(180deg, #0f172a 0%, #3a3a3c 100%);
        -webkit-background-clip: text; background-clip: text;
        -webkit-text-fill-color: transparent; color: transparent;
        line-height: 1;
    }
    .about-stat-label { color: #64748b; font-size: 0.95rem; margin-top: 0.5rem; }
    .about-divider {
        height: 1px; background: linear-gradient(90deg, transparent, #cbd5e1 50%, transparent);
        margin: 4rem 0;
    }

/* === realisation.blade.php block 0 === */

        .card.image-full:before {
            z-index: 1;
        }

        .btn-primary {
            background-color: rgb(7, 63, 202);
        }

        .btn:hover {
            border-color: #FFD200;
        }

        .card-body {
            padding: 1rem;
        }

        .w-card {
            width: 20rem;
        }
    
/* === realisationDisplay.blade.php block 0 === */

        .card.image-full:before{
            z-index:1;
        }
        .btn-primary {
            background-color: rgb(7, 63, 202);
        }
        .btn:hover {
            border-color: #FFD200;
        }
        .card-body {
            padding:1rem;
        }

        .w-card {
            width: 20rem;
        }
        .realisation-description h1 {
            line-height: normal;
            font-weight: 700;
            font-size: 38px;
        }
    