

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: #1B3B5F;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 60px 80px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(184, 120, 84, 0.05), transparent 70%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 30px;
            color: #1B3B5F;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-highlight {
            color: #B87854;
            position: relative;
            display: inline-block;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(184, 120, 84, 0.15);
            z-index: -1;
        }

        .hero p {
            font-size: 20px;
            line-height: 1.7;
            color: #4A5568;
            margin-bottom: 50px;
            max-width: 650px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .hero-cta {
            display: inline-block;
            background: #1B3B5F;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.8s forwards;
            opacity: 0;
            margin-right: 15px;
        }

        .hero-cta:hover {
            background: #2d5280;
            transform: translateX(5px);
        }

        /* Section */
        .section {
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            color: #B87854;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .section-label.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 25px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.1s;
        }

        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-intro {
            font-size: 19px;
            color: #4A5568;
            max-width: 700px;
            margin-bottom: 70px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease 0.2s;
        }

        .section-intro.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Grid Layout */
        .grid-m {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 50px;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        /* Specialty Card */
        .specialty-card {
            background: white;
            padding: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 30px rgba(27, 59, 95, 0.03);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .specialty-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .specialty-card:nth-child(1) {
            transition-delay: 0.1s;
        }

        .specialty-card:nth-child(2) {
            transition-delay: 0.2s;
        }

        .specialty-card:nth-child(3) {
            transition-delay: 0.3s;
        }

        .specialty-card:nth-child(4) {
            transition-delay: 0.4s;
        }

        .specialty-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(27, 59, 95, 0.08);
        }

        .specialty-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #B87854;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .specialty-card:hover::before {
            transform: scaleY(1);
        }

        .specialty-icon-modern {
            width: 64px;
            height: 64px;
            background: rgba(184, 120, 84, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #B87854;
            transition: all 0.3s ease;
        }

        .specialty-card:hover .specialty-icon-modern {
            background: #B87854;
            color: white;
            transform: scale(1.05);
        }

        .specialty-title {
            font-size: 28px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 15px;
        }

        .specialty-description {
            font-size: 16px;
            color: #4A5568;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .specialty-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .specialty-tag {
            background: #f8f9fa;
            color: #1B3B5F;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .specialty-card:hover .specialty-tag {
            background: rgba(184, 120, 84, 0.1);
            color: #B87854;
        }

        .specialty-cta {
            display: inline-flex;
            align-items: center;
            color: #B87854;
            font-weight: 600;
            font-size: 15px;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .specialty-cta::after {
            content: '→';
            margin-left: 8px;
            transition: margin-left 0.3s ease;
        }

        .specialty-card:hover .specialty-cta::after {
            margin-left: 12px;
        }

        /* Standard Card */
        .standard-card {
            background: white;
            padding: 40px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(27, 59, 95, 0.03);
            border-left: 3px solid transparent;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .standard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(27, 59, 95, 0.08);
            border-left-color: #B87854;
        }

        .standard-icon-modern {
            width: 56px;
            height: 56px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #1B3B5F;
            transition: all 0.3s ease;
        }

        .standard-card:hover .standard-icon-modern {
            background: rgba(184, 120, 84, 0.1);
            color: #B87854;
            transform: scale(1.05);
        }

        .standard-title {
            font-size: 22px;
            font-weight: 700;
            color: #1B3B5F;
            margin-bottom: 15px;
        }

        .standard-description {
            font-size: 15px;
            color: #4A5568;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .standard-feature {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #B87854;
            font-weight: 500;
        }

        .standard-feature::before {
            content: '→';
            margin-right: 8px;
            font-weight: 700;
        }

        /* Accent Section */
        .accent-section {
            background: linear-gradient(135deg, #1B3B5F 0%, #2d5280 100%);
            color: white;
            padding: 100px 60px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .accent-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

        .accent-section p {
            font-size: 19px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

        .accent-cta {
            display: inline-block;
            background: #B87854;
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            margin: 0 10px;
        }

        .accent-cta:hover {
            background: #a36848;
            transform: translateY(-2px);
        }

        .accent-cta.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .accent-cta.secondary:hover {
            background: white;
            color: #1B3B5F;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 60px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 36px;
            }

            .grid,
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        /* ========== RESPONSIVE MOBILE TOUS MÉTIERS ========== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    /* Hero */
    .hero {
        padding: 100px 40px 60px;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 15px;
        margin-right: 10px;
    }

    /* Sections */
    .section {
        padding: 80px 40px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-intro {
        font-size: 17px;
        margin-bottom: 50px;
    }

    /* Grid - 1 colonne */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* Grid métiers */
    .grid-m {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Specialty Cards */
    .specialty-card {
        padding: 40px;
    }

    .specialty-title {
        font-size: 26px;
    }

    /* Standard Cards */
    .standard-card {
        padding: 35px;
    }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
    /* Hero */
    .hero {
        padding: 80px 24px 50px;
        min-height: auto;
        padding-top: 140px; /* Compenser le header mobile */
    }

    .hero::before {
        width: 100%;
        opacity: 0.5;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .hero-highlight::after {
        height: 6px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 14px;
        margin-right: 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Sections */
    .section {
        padding: 60px 24px;
    }

    .section[style*="padding-left: 60px"] {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-intro {
        font-size: 16px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    /* Grid - 1 colonne */
    .grid-2,
    .grid-m {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Specialty Cards */
    .specialty-card {
        padding: 35px 24px;
    }

    .specialty-icon-modern {
        width: 56px;
        height: 56px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .specialty-icon-modern svg {
        width: 40px;
        height: 40px;
    }

    .specialty-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .specialty-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .specialty-tags {
        gap: 8px;
        flex-wrap: wrap;
    }

    .specialty-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .specialty-cta {
        font-size: 14px;
        margin-top: 18px;
    }

    /* Standard Cards */
    .standard-card {
        padding: 30px 24px;
    }

    .standard-icon-modern {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        margin-bottom: 18px;
    }

    .standard-icon-modern svg {
        width: 36px;
        height: 36px;
    }

    .standard-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .standard-description {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .standard-feature {
        font-size: 13px;
    }

    /* Standard Card avec gradient */
    .standard-card[style*="background: linear-gradient"] {
        padding: 30px 24px !important;
    }

    .standard-card[style*="background: linear-gradient"] .standard-title {
        font-size: 20px !important;
    }

    .standard-card[style*="background: linear-gradient"] .standard-description {
        font-size: 14px !important;
    }

    /* Accent Section */
    .accent-section {
        padding: 60px 24px;
        margin: 60px 0;
    }

    .accent-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .accent-section p {
        font-size: 16px;
        margin-bottom: 35px;
        max-width: 100%;
    }

    .accent-cta {
        padding: 14px 28px;
        font-size: 14px;
        margin: 5px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Petits mobiles (320px - 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding: 70px 20px 40px;
        padding-top: 120px;
    }

    .hero-label {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-highlight::after {
        height: 5px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Sections */
    .section {
        padding: 50px 20px;
    }

    .section[style*="padding-left: 60px"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .section-label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 18px;
        line-height: 1.25;
    }

    .section-intro {
        font-size: 15px;
        margin-bottom: 35px;
    }

    /* Grid */
    .grid-2,
    .grid-m {
        gap: 20px;
    }

    /* Specialty Cards */
    .specialty-card {
        padding: 30px 20px;
    }

    .specialty-icon-modern {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .specialty-icon-modern svg {
        width: 36px;
        height: 36px;
    }

    .specialty-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .specialty-description {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .specialty-tags {
        gap: 6px;
    }

    .specialty-tag {
        padding: 5px 10px;
        font-size: 11px;
    }

    .specialty-cta {
        font-size: 13px;
        margin-top: 16px;
    }

    /* Standard Cards */
    .standard-card {
        padding: 25px 20px;
    }

    .standard-icon-modern {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
    }

    .standard-icon-modern svg {
        width: 32px;
        height: 32px;
    }

    .standard-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .standard-description {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .standard-feature {
        font-size: 12px;
    }

    .standard-feature::before {
        margin-right: 6px;
    }

    /* Standard Card gradient */
    .standard-card[style*="background: linear-gradient"] {
        padding: 25px 20px !important;
    }

    /* Accent Section */
    .accent-section {
        padding: 50px 20px;
        margin: 50px 0;
    }

    .accent-section h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .accent-section p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .accent-cta {
        padding: 12px 24px;
        font-size: 13px;
        margin: 5px 0;
    }
}

/* Correction débordement horizontal */
@media (max-width: 767px) {
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100%;
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Désactiver le parallax sur mobile */
@media (max-width: 767px) {
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* Animations mobiles optimisées */
@media (max-width: 767px) {
    .specialty-card:hover,
    .standard-card:hover {
        transform: translateY(-4px);
    }

    /* Réduire les délais d'animation */
    .specialty-card,
    .standard-card {
        transition-delay: 0s !important;
    }

    /* Animation de la barre de gauche */
    .specialty-card::before {
        width: 3px;
    }
}

/* Mode paysage mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 24px 40px;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-cta {
        display: inline-block;
        width: auto;
        padding: 12px 24px;
    }

    .section {
        padding: 50px 24px;
    }

    /* Grid en 2 colonnes sur paysage */
    .grid-m {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .accent-cta {
        display: inline-block;
        width: auto;
        margin: 0 5px;
    }
}

/* Amélioration des cards sur très petits écrans */
@media (max-width: 360px) {
    .specialty-card,
    .standard-card {
        padding: 25px 16px;
    }

    .specialty-icon-modern,
    .standard-icon-modern {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Gestion des marges pour éviter le collage */
@media (max-width: 767px) {
    .section:first-of-type {
        padding-top: 40px;
    }

    .section:last-of-type {
        padding-bottom: 40px;
    }
}

/* Optimisation hover sur tactile */
@media (hover: none) and (pointer: coarse) {
    .specialty-card:hover,
    .standard-card:hover {
        transform: translateY(0);
    }

    .specialty-card:active {
        transform: translateY(-2px);
    }

    .standard-card:active {
        transform: translateY(-2px);
    }
}

/* Amélioration accessibilité boutons */
@media (max-width: 767px) {
    .hero-cta,
    .accent-cta {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .specialty-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Fix pour les tags qui wrap */
@media (max-width: 480px) {
    .specialty-tags {
        margin-bottom: 5px;
    }

    .specialty-tag {
        white-space: nowrap;
    }
}

/* Optimisation SVG icons sur mobile */
@media (max-width: 767px) {
    .specialty-icon-modern,
    .standard-icon-modern {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .specialty-icon-modern svg,
    .standard-icon-modern svg {
        display: block;
    }
}

/* Fix margin top pour éviter chevauchement header */
@media (max-width: 767px) {
    main.mt-10 {
        margin-top: 0 !important;
    }
}

/* Amélioration lisibilité sur petits écrans */
@media (max-width: 360px) {
    .specialty-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .standard-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 26px;
    }
}

/* Optimisation des CTA dans accent section */
@media (max-width: 767px) {
    .accent-section > div[style*="max-width"] {
        max-width: 100% !important;
    }
}

/* Fix pour le border-left des standard cards sur mobile */
@media (max-width: 480px) {
    .standard-card {
        border-left-width: 2px;
    }

    .standard-card:hover {
        border-left-width: 3px;
    }
}

.float-animation {
            animation: float 8s ease-in-out infinite;
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }
        
        .card-hover:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }
        
        .specialty-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }
        
        .slide-in {
            animation: slideInUp 0.8s ease forwards;
        }
        
        .fade-scale {
            animation: fadeInScale 1s ease forwards;
        }
        
        .bg-pattern {
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(178, 173, 140, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(211, 206, 182, 0.1) 0%, transparent 50%);
            background-size: 400px 400px;
        }
        
        .specialty-badge {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            animation: float 4s ease-in-out infinite;
        }

        .icon-rotate {
            transition: transform 0.3s ease;
        }

        .card-hover:hover .icon-rotate {
            transform: rotate(360deg);
        }

        .stats-counter {
            background: linear-gradient(45deg, rgba(178, 173, 140, 0.9), rgba(211, 206, 182, 0.9));
        }
        