        /* Correction responsive - éviter le débordement horizontal */
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        
        * {
            box-sizing: border-box;
        }
        
        /* Ne pas forcer le padding sur tous les containers - Bootstrap gère déjà ça */
        /* .sitename / navbar : dans navbar-welcome.css (composant header) */
        
        /* Styles spécifiques pour le footer */
        .copyright .sitename {
            font-size: 1rem !important;
            font-weight: 500 !important;
        }
        
        .credits {
            font-size: 0.9rem !important;
        }
        
        @media (max-width: 768px) {
            .copyright .sitename {
                font-size: 0.9rem !important;
            }
            
            .credits {
                font-size: 0.8rem !important;
            }
        }
        
        :root {
            /* Core Brand Colors - Professional Security & Intelligence */
            --background: 0 0% 100%;
            --foreground: 215 25% 15%;

            --card: 0 0% 100%;
            --card-foreground: 215 25% 15%;

            --popover: 0 0% 100%;
            --popover-foreground: 215 25% 15%;

            /* Primary: Deep Navy Blue - Trust & Security */
            --primary: 215 45% 18%;
            --primary-foreground: 0 0% 98%;
            --primary-light: 215 40% 35%;
            --primary-dark: 215 50% 12%;

            /* Secondary: Slate Grey - Technology & Precision */
            --secondary: 215 20% 25%;
            --secondary-foreground: 0 0% 98%;
            
            /* Accent: Alert Orange - Urgency & Action */
            --accent: 25 95% 50%;
            --accent-foreground: 0 0% 100%;
            --accent-light: 25 90% 60%;

            /* Muted: Neutral tones */
            --muted: 215 20% 96%;
            --muted-foreground: 215 15% 45%;

            /* Intelligence Blue - Data & Analysis */
            --intelligence: 210 85% 45%;
            --intelligence-foreground: 0 0% 100%;

            --destructive: 0 84% 60%;
            --destructive-foreground: 0 0% 98%;

            --border: 215 20% 88%;
            --input: 215 20% 88%;
            --ring: 215 45% 18%;

            --radius: 0.5rem;

            /* Gradients for depth and technology feel */
            --gradient-primary: linear-gradient(135deg, hsl(215 45% 18%) 0%, hsl(215 50% 12%) 100%);
            --gradient-hero: linear-gradient(135deg, hsl(215 45% 18%) 0%, hsl(215 40% 25%) 50%, hsl(210 85% 45%) 100%);
            --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(215 20% 98%) 100%);
            --gradient-accent: linear-gradient(135deg, hsl(25 95% 50%) 0%, hsl(25 100% 45%) 100%);
            
            /* Shadows for professional depth */
            --shadow-sm: 0 1px 2px 0 hsl(215 25% 15% / 0.05);
            --shadow-md: 0 4px 6px -1px hsl(215 25% 15% / 0.1);
            --shadow-lg: 0 10px 15px -3px hsl(215 25% 15% / 0.1);
            --shadow-xl: 0 20px 25px -5px hsl(215 25% 15% / 0.1);
            --shadow-glow: 0 0 30px hsl(210 85% 45% / 0.3);

            /* Transitions */
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Navigation (navbar) : dans navbar-welcome.css + composant <x-welcome-header /> */
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-background {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        
        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, hsl(var(--primary) / 0.95) 0%, hsl(var(--primary) / 0.85) 50%, hsl(var(--primary) / 0.7) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 8rem 0;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: hsl(var(--accent) / 0.2);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            margin-bottom: 1.5rem;
        }
        
        .hero-badge p {
            color: hsl(var(--accent-foreground));
            font-size: 0.875rem;
            font-weight: 600;
            line-height: 1.5;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: hsl(var(--primary-foreground));
            margin-bottom: 1.5rem;
            line-height: 1.25;
        }
        
        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
                line-height: 1.25;
            }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: hsl(var(--primary-foreground) / 0.9);
            font-weight: 300;
            margin-bottom: 2rem;
            line-height: 1.5;
        }
        
        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.875rem;
                line-height: 1.5;
            }
        }
        
        .hero-description {
            font-size: 1.25rem;
            color: hsl(var(--primary-foreground) / 0.8);
            margin-bottom: 3rem;
            max-width: 48rem;
            line-height: 1.625;
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 4rem;
        }
        
        .btn-hero {
            background: #ebe1c5 !important;
            color: #13120f !important;
            border: none !important;
            border-color: #ebe1c5 !important;
            height: 2.75rem;
            padding: 0 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.5;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .btn-hero:hover {
            background: #d4c9a8 !important;
            color: #13120f !important;
        }
        
        
        .btn-outline-hero {
            background: hsl(var(--primary-foreground) / 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid hsl(var(--primary-foreground) / 0.5);
            color: hsl(var(--primary-foreground));
            height: 2.75rem;
            padding: 0 2rem;
            border-radius: 0.375rem;
            font-weight: 600;
            font-size: 0.875rem;
            line-height: 1.5;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            white-space: nowrap;
        }
        
        .btn-outline-hero:hover {
            background: hsl(var(--primary-foreground));
            color: hsl(var(--primary));
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .hero-features {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .hero-feature {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-feature-icon {
            width: 4.5rem;
            height: 4.5rem;
            font-size: 3rem;
            color: hsl(var(--accent));
            margin-bottom: 1rem;
        }
        
        .hero-feature h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: hsl(var(--primary-foreground));
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }
        
        .hero-feature p {
            color: hsl(var(--primary-foreground) / 0.7);
            font-size: 1.125rem;
            line-height: 1.5;
        }

        @media (max-width: 576px) {
            .hero-content {
                padding: 6rem 0 3rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons .btn-hero,
            .hero-buttons .btn-outline-hero {
                width: 100%;
            }

            .hero-feature {
                text-align: center;
            }
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background: var(--background);
        }
        .coverage-country-card {
            transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
            cursor: default;
        }

        .coverage-country-card:hover {
            background-color: #ebe1c5 !important;
            border-color: #a09c8c !important;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.25rem;
            color: rgba(15, 23, 42, 0.8);
            text-align: center;
            margin-bottom: 4rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            background: var(--gradient-card);
            border: none;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .service-media,
        .service-content {
            min-height: 420px;
        }

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

        .service-media {
            display: flex;
            align-items: stretch;
        }

        .service-content {
            overflow: hidden;
        }

        @media (max-width: 991.98px) {
            .services-section .row.gx-4 {
                gap: 2rem;
            }

            .service-content {
                padding-top: 1.5rem;
            }

            /* Hauteur fixe pour les images de service sur tablette */
            .service-media[style*="height: 500px"] {
                height: 400px !important;
                min-height: 400px !important;
            }
        }

        @media (max-width: 576px) {
            section.py-5 {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }

            /* Hauteur fixe pour les images de service sur mobile */
            .service-media[style*="height: 500px"] {
                height: 350px !important;
                min-height: 350px !important;
            }

            #couverture-regionale img {
                max-height: 320px !important;
            }

            #couverture-regionale .row.align-items-center {
                gap: 1.5rem;
            }
        }
        
        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .service-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .service-icon.intelligence {
            background: rgba(30, 64, 175, 0.1);
            color: var(--primary);
        }
        
        .service-icon.primary {
            background: rgba(30, 64, 175, 0.1);
            color: var(--primary);
        }
        
        .service-icon.accent {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent);
        }
        
        .service-info h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        
        .service-subtitle {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }
        
        .service-target {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }
        
        .service-description {
            color: rgba(15, 23, 42, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .service-cta {
            background: var(--muted);
            padding: 1rem;
            border-radius: 0.5rem;
            border-left: 4px solid var(--accent);
            margin-bottom: 1.5rem;
        }
        
        .service-cta p {
            font-size: 0.875rem;
            color: rgba(15, 23, 42, 0.9);
            font-style: italic;
            margin: 0;
        }
        
        .deliverables-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .deliverable-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
            margin-bottom: 0.75rem;
            transition: all 0.3s ease;
        }
        
        .deliverable-item:hover {
            border-color: rgba(30, 64, 175, 0.5);
        }
        
        .deliverable-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--primary);
            flex-shrink: 0;
        }
        
        .deliverable-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
            flex: 1;
        }
        
        .deliverable-time {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent);
            padding: 0.25rem 0.5rem;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 0.25rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
            }
            
            .hero-description {
                font-size: 1.125rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
        
        /* Section spacing */
        section {
            scroll-margin-top: 80px;
        }
        
        /* Pricing Section */
        .pricing-card {
            transition: all 0.3s ease;
            border-radius: 1rem;
        }
        
        .pricing-card:hover {
            transform: translateY(0);
            box-shadow: none !important;
        }
        
        .pricing-card.featured {
            transform: scale(1);
            border: 1px solid #e5e7eb !important;
        }
        
        .pricing-card.featured:hover {
            transform: scale(1) translateY(0);
        }
        
        .max-w-4xl {
            max-width: 56rem;
        }
        
        .max-w-7xl {
            max-width: 80rem;
        }
        
        /* Responsive corrections supplémentaires */
        @media (max-width: 576px) {
            .max-w-4xl, .max-w-5xl, .max-w-6xl, .max-w-7xl {
                max-width: 100% !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .row {
                margin-left: -10px;
                margin-right: -10px;
            }
            
            .row > * {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            /* Images responsive */
            img {
                max-width: 100%;
                height: auto;
            }
        }
