/* --- Variables & Reset --- */
:root {
    --primary-blue: #0052cc; --light-blue: #e7f0ff; --dark-blue: #0747a6;
    --text-dark: #172b4d; --text-light: #505f79;
    --background-light: #ffffff; --background-grey: #f4f5f7;
    --border-color: #dfe1e6; --highlight-color: #FFAB00;
    --success-color: #00875A; --error-color: #DE350B;
    --heading-font: 'Poppins', sans-serif; --body-font: 'Poppins', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body-font); font-size: 16px; line-height: 1.7;
    color: var(--text-dark); background-color: var(--background-light);
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.popup-open { overflow: hidden; /* Empêche le scroll derrière le pop-up/menu mobile */ }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
main { display: block; }
h1, h2, h3 { font-family: var(--heading-font); font-weight: 700; color: var(--text-dark); }
h1 { font-size: 3.2rem; line-height: 1.2; margin-bottom: 1.5rem; /* Marge ajustée */ }
h2 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; position: relative;}
h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: var(--primary-blue); }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--primary-blue); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--dark-blue); }
button { cursor: pointer; font-family: inherit; } /* Hérite police et curseur */

/* --- Header --- */
.main-header {
    background-color: var(--background-light); padding: 10px 0;
    border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: inline-block; }
.logo-image { height: 50px; width: auto; vertical-align: middle; }
.main-nav ul { list-style: none; display: flex; align-items: center; margin: 0; padding: 0; }
.main-nav li { margin-left: 25px; }
/* Style pour les liens ET les boutons dans la nav */
.main-nav a, .main-nav button.nav-cta { color: var(--text-light); font-weight: 600; font-size: 1rem; display: inline-block; padding: 8px 0; /* Ajustement padding pour alignement vertical */ }
.main-nav a:hover, .main-nav a.active { color: var(--primary-blue); }
/* Style spécifique pour le bouton/lien CTA dans la nav */
.main-nav a.nav-cta, .main-nav button.nav-cta {
    background-color: var(--primary-blue); color: white !important; padding: 8px 18px; /* Padding horizontal spécifique */
    border-radius: 5px; transition: background-color 0.3s ease; border: none; line-height: normal; /* Assure bon affichage */
}
.main-nav a.nav-cta:hover, .main-nav button.nav-cta:hover { background-color: var(--dark-blue); color: white !important; }

/* --- Dropdown Menu Styles (Desktop) --- */
.main-nav .nav-item {
    position: relative; /* Nécessaire pour positionner le sous-menu */
}
.main-nav .submenu {
    display: none; /* Caché par défaut */
    position: absolute;
    top: 100%; /* Aligné sous l'élément parent */
    left: 0;
    background-color: var(--background-light);
    list-style: none;
    padding: 10px 0; /* Espace intérieur vertical */
    margin: 0; /* Reset marge */
    min-width: 220px; /* Largeur minimale du déroulant */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* Ombre portée */
    border: 1px solid var(--border-color);
    border-top: none; /* Évite double bordure avec le header */
    border-radius: 0 0 5px 5px; /* Coins arrondis en bas */
    z-index: 1001; /* Au-dessus du contenu principal */
    opacity: 0; /* Pour transition douce */
    visibility: hidden;
    transform: translateY(10px); /* Léger décalage pour animation */
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
/* Affichage au survol de l'élément parent .dropdown */
.main-nav .dropdown:hover .submenu,
.main-nav .dropdown:focus-within .submenu { /* Amélioration accessibilité */
    display: block; /* Rend visible */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .submenu li {
    margin-left: 0; /* Annule la marge des li principaux */
}
.main-nav .submenu-link {
    display: block; /* Prend toute la largeur du li */
    padding: 10px 20px; /* Espace intérieur liens sous-menu */
    color: var(--text-light);
    font-weight: 400; /* Police plus légère que nav principale */
    white-space: nowrap; /* Empêche le retour à la ligne */
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.main-nav .submenu-link:hover {
    background-color: var(--light-blue); /* Fond léger au survol */
    color: var(--primary-blue); /* Texte en couleur primaire */
}
/* Indicateur flèche optionnel pour le lien déroulant */
.main-nav .dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.65em; /* Taille réduite */
    display: inline-block;
    margin-left: 4px;
    vertical-align: middle; /* Alignement vertical */
}

/* --- Burger Menu (Mobile) --- */
.burger-menu {
    display: none; flex-direction: column; justify-content: space-around;
    width: 30px; height: 25px; background: transparent; border: none;
    cursor: pointer; padding: 0; z-index: 1011;
}
.burger-line { width: 30px; height: 3px; background-color: var(--text-dark); border-radius: 10px; transition: all 0.3s linear; }
.burger-menu.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu.active .burger-line:nth-child(2) { opacity: 0; }
.burger-menu.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Mobile Menu Panel --- */
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(23, 43, 77, 0.95); z-index: 1010;
    flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.active { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu nav ul { list-style: none; padding: 0; text-align: center; }
.mobile-menu nav li { margin-bottom: 2rem; }
.mobile-menu nav a, .mobile-menu nav button.nav-cta { color: white; font-size: 1.5rem; font-weight: 600; text-decoration: none; }
.mobile-menu nav a.nav-cta, .mobile-menu nav button.nav-cta {
    background-color: var(--primary-blue); padding: 10px 25px; border-radius: 5px;
    border: none; margin-top: 1rem; display: inline-block;
}
.mobile-menu nav a.nav-cta:hover, .mobile-menu nav button.nav-cta:hover { background-color: var(--dark-blue); }

/* --- Mobile Menu Dropdown Styles (Option 1 simple) --- */
.mobile-menu-category {
    color: var(--text-light); /* Couleur un peu moins forte */
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    padding: 0 1rem; /* Alignement avec les autres liens */
    font-weight: 600;
}
.mobile-submenu-item a {
    padding-left: 2rem !important; /* Indentation pour les sous-items */
    font-size: 1.3rem !important; /* Taille légèrement réduite si besoin */
    font-weight: 400 !important;
}
.mobile-menu-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

/* --- Hero Section --- */
.hero-section { padding: 80px 0; background-color: var(--background-light); }
/* --- Hero Section Layout Adjustment (Titre au-dessus) --- */
.hero-container {
    display: flex; /* Garde flex pour alignement facile */
    flex-direction: column; /* Force l'empilement vertical */
    align-items: center;    /* Centre les éléments horizontalement */
    text-align: center;     /* Centre le texte du contenu */
    gap: 50px;              /* Espace entre texte et image */
}
.hero-content {
    order: 1; /* Place le contenu (texte) en premier */
    max-width: 800px; /* Limite la largeur du texte pour la lisibilité */
}
.hero-image-wrapper {
    order: 2; /* Place l'image en second */
    max-width: 700px; /* Ajuste si besoin la taille max de l'image */
    width: 100%; /* Assure que le wrapper prend la largeur dispo */
}
.hero-image-wrapper img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 82, 204, 0.15); display: block; margin: 0 auto; /* Assure centrage image si wrapper plus large */ }
/* --- Fin Ajustement Layout Hero --- */
.hero-content .subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2rem; }

/* --- CTA Buttons --- */
/* Style commun pour les liens stylés comme des boutons CTA */
a.cta-button, button.cta-button {
    display: inline-block; background-color: var(--primary-blue); color: white !important; /* !important pour surcharger couleur lien */
    padding: 15px 35px; font-size: 1.1rem; font-weight: 600; border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2); text-align: center; margin-top: 1rem;
    border: none; /* Assure pas de bordure */
}
a.cta-button:hover, button.cta-button:hover { background-color: var(--dark-blue); transform: translateY(-2px); color: white !important; }

a.cta-button-outline, button.cta-button-outline {
    display: inline-block; background-color: transparent; color: var(--primary-blue);
    border: 2px solid var(--primary-blue); padding: 13px 33px; font-size: 1.1rem;
    font-weight: 600; border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem; margin-left: 10px; /* Espace si à côté d'un autre bouton */
}
a.cta-button-outline:hover, button.cta-button-outline:hover { background-color: var(--primary-blue); color: white; transform: translateY(-2px); }

/* --- Text Section Common --- */
.text-section { padding: 70px 0; background-color: var(--background-grey); text-align: center; }
.text-section .container { max-width: 800px; }
.text-section h2::after { content: ''; display: block; width: 50px; height: 3px; background-color: var(--primary-blue); margin: 15px auto 30px auto; }

/* --- Section Subtitle (Common Style) --- */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem; /* Marge positive au lieu de négative */
    margin-bottom: 3rem;
    color: var(--text-light);
}
/* Cas spécifique pour le sous-titre du Hero de la page "Qui sommes-nous" */
#about-hero .section-subtitle {
    margin-top: 0.5rem; /* Espace après le H1 */
    margin-bottom: 2rem; /* Espace avant la section suivante */
    max-width: 800px; /* Peut-être un peu plus large ici */
}

/* --- Video Placeholder Section --- */
.video-placeholder-section { padding: 70px 0; background-color: var(--background-light); }
.video-placeholder-section h2 { color: var(--text-dark); }
.video-placeholder-section h2::after { background-color: var(--primary-blue); margin-bottom: 30px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: var(--background-grey); border-radius: 8px; margin: 0 auto; max-width: 800px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.video-wrapper .placeholder-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--text-light); text-align: center; }
.video-wrapper .placeholder-content p { margin-bottom: 0.5rem; }
.video-wrapper iframe, .video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* --- Solution Section (Benefits Grid) --- */
.solution-section { padding: 80px 0; background-color: var(--background-light); }
/* .section-subtitle a déjà été défini plus haut */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.benefit-item { background-color: var(--background-grey); padding: 30px; border-radius: 8px; border: 1px solid var(--border-color); transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: center; }
.benefit-item:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 82, 204, 0.12); }
.benefit-icon { margin-bottom: 1.5rem; color: var(--primary-blue); transition: transform 0.3s ease; }
.benefit-icon svg { width: 48px; height: 48px; }
.benefit-item:hover .benefit-icon { transform: scale(1.1); }
.benefit-item h3 { text-align: center; }
.benefit-item p { text-align: center; }

/* --- Schema Section --- */
.schema-section { padding-bottom: 50px; }
.schema-image-wrapper { margin-bottom: 2rem; text-align: center; }
.schema-image-wrapper svg { max-width: 100%; height: auto; }

/* --- Sur Mesure Section (Teaser sur cette page) --- */
.custom-automation-section { padding: 70px 0; background-color: var(--background-grey); }
.custom-automation-section .container { max-width: 900px; }
.sur-mesure-content { display: flex; align-items: center; gap: 40px; text-align: left; margin-bottom: 2rem; }
.sur-mesure-text { flex: 1; }
.sur-mesure-illustration { flex: 1; max-width: 40%; text-align: center; }
.sur-mesure-illustration img { max-width: 100%; height: auto; opacity: 0.8; }
.custom-automation-section ul:not(.checklist) { list-style: none; padding-left: 0; margin: 1.5rem 0; } /* Ne pas affecter .checklist */
.custom-automation-section li:not(.checklist li) { position: relative; padding-left: 25px; margin-bottom: 0.8rem; color: var(--text-light); } /* Ne pas affecter .checklist */
.custom-automation-section li:not(.checklist li)::before { content: '✓'; position: absolute; left: 0; top: 0px; color: var(--primary-blue); font-weight: bold; font-size: 1.2rem; } /* Ne pas affecter .checklist */
.sur-mesure-conclusion { text-align: center; font-style: italic; margin-top: 1.5rem; }

/* --- Dark Section (Offer, Contact Placeholder, CTA) --- */
.dark-section { background-color: var(--text-dark); color: #ffffff; padding: 70px 0; text-align: center; }
.dark-section h2 { color: #ffffff; }
.dark-section p { color: #b3bac5; }
.dark-section h2::after { content: ''; display: block; width: 50px; height: 3px; background-color: var(--primary-blue); margin: 15px auto 30px auto; }
.dark-section a.cta-button { background-color: var(--primary-blue); } /* Cible les liens CTA */
.dark-section a.cta-button:hover { background-color: #0065ff; }
.contact-placeholder-section { padding: 40px 0; } /* Peut être fusionné avec dark-section si toujours ensemble */

/* --- Offer Section Specific Styles --- */
.offer-section .offer-subtitle { font-size: 1.1rem; margin-top: -1rem; margin-bottom: 2rem; color: #d9e2ff; }
.offer-section .pricing { margin: 1.5rem 0; font-size: 1.2rem; }
.offer-section .pricing p { margin-bottom: 0.5rem; }
.offer-section .old-price { text-decoration: line-through; opacity: 0.7; margin-left: 10px; font-size: 1.1rem; }
.offer-section .new-price { font-weight: 700; color: #ffffff; font-size: 1.6rem; }
.offer-section .highlight-price { color: var(--highlight-color); font-weight: 700; font-size: 1.8rem; }
.offer-section .standard-price, .offer-section .standard-monthly { font-weight: 700; color: #ffffff; font-size: 1.6rem; }
.offer-section .offer-condition { font-size: 1rem; margin-top: 1.5rem; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.offer-section strong { color: #ffffff; }
.offer-section .toggle-offer { margin-top: 2rem; font-size: 0.9rem; }
.offer-section .toggle-offer a { color: #b3bac5; text-decoration: underline; transition: color 0.3s ease; cursor: pointer; }
.offer-section .toggle-offer a:hover { color: #ffffff; }

/* --- FAQ Section --- */
.faq-section { padding: 80px 0; background-color: var(--background-light); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-color); margin-bottom: 15px; }
.faq-item:last-child { border-bottom: none; }
.faq-question { background: none; border: none; width: 100%; text-align: left; padding: 20px 0; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question span:first-child { padding-right: 15px; }
.faq-question .arrow { border: solid var(--text-light); border-width: 0 2px 2px 0; display: inline-block; padding: 4px; transform: rotate(45deg); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding: 0 10px 20px 10px; color: var(--text-light); }
.faq-item.active .faq-question .arrow { transform: rotate(-135deg); }
.faq-item.active .faq-answer { max-height: 400px; }

/* --- Footer --- */
.main-footer { background-color: var(--background-grey); color: var(--text-light); padding: 30px 0; text-align: center; font-size: 0.9rem; border-top: 1px solid var(--border-color); }
.main-footer .legal-links { margin-top: 10px; font-size: 0.85rem; }
.main-footer .legal-links a { color: var(--text-light); margin: 0 5px; }
.main-footer .legal-links a:hover { color: var(--primary-blue); }
.main-footer .legal-links span { opacity: 0.7; }

/* --- Contact Form Styles (Utilisé sur contact.html et potentiellement pop-up) --- */
.form-group { margin-bottom: 1.5rem; text-align: left; } /* Assure alignement gauche par défaut */
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text-dark); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%; padding: 12px; border: 1px solid var(--border-color);
    border-radius: 4px; font-size: 1rem; color: var(--text-dark);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-blue); outline: none; box-shadow: 0 0 0 2px rgba(0, 82, 204, 0.2); }
fieldset.form-group { border: none; padding: 0; }
fieldset legend { font-weight: 600; margin-bottom: 0.8rem; padding: 0; font-size: 1rem; color: var(--text-dark); }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 0.5rem; }
.checkbox-group label { display: flex; align-items: center; font-weight: normal; margin-bottom: 0; color: var(--text-light); cursor: pointer; }
.checkbox-group input[type="checkbox"] { margin-right: 8px; cursor: pointer; width: 16px; height: 16px; }
fieldset small { display: block; font-size: 0.85rem; color: var(--text-light); margin-top: 0.5rem; }
.form-actions { text-align: center; margin-top: 2rem; } /* Centrer bouton envoyer */
.form-status { margin-top: 1.5rem; text-align: center; font-weight: 600; } /* Marge ajoutée */
.form-status.success { color: var(--success-color); }
.form-status.error { color: var(--error-color); }
#submit-button:disabled { background-color: var(--text-light); cursor: not-allowed; }

/* --- Contact Pop-up (Styles conservés au cas où) --- */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(23, 43, 77, 0.7); z-index: 1020;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0s 0.3s linear;
}
.popup-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.3s ease, visibility 0s linear; }
.popup-content {
    background-color: white; padding: 30px 40px; border-radius: 8px;
    max-width: 550px; width: 90%; max-height: 90vh; overflow-y: auto;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.9); transition: transform 0.3s ease;
}
.popup-overlay.active .popup-content { transform: scale(1); }
.close-popup-button {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none; font-size: 2rem; line-height: 1;
    color: var(--text-light); cursor: pointer; padding: 0;
}
.close-popup-button:hover { color: var(--text-dark); }
.popup-content h2 { text-align: left; margin-bottom: 1rem; }
.popup-content p { margin-bottom: 1.5rem; font-size: 0.95rem; }
/* Le formulaire dans le pop-up utilisera les styles .form-group etc. définis plus haut */

/* --- Animations --- */
.animate-on-scroll { opacity: 0; transition: opacity 0.7s ease-out, transform 0.7s ease-out; transition-delay: var(--delay, 0s); }
.slide-in-from-left { transform: translateX(-40px); }
.slide-in-from-right { transform: translateX(40px); }
.slide-in-from-bottom { transform: translateY(40px); }
.zoom-in { transform: scale(0.9); }
.fade-in {}
.is-visible { opacity: 1; transform: translate(0, 0) scale(1); }

/* --- NOUVEAUX STYLES AJOUTÉS/MODIFIÉS --- */

/* Style pour le titre H2 recomposé (ProcessPilot : L'automatisation...) */
.composed-title {
    text-align: center;
    margin-bottom: 1.5rem; /* Espace sous le titre complet */
    /* Pas de ligne bleue par défaut */
}
.composed-title .title-main {
    display: block;
    font-size: 1.4em; /* Relatif à la taille du H2 parent */
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2em;
    line-height: 1.2;
}
.composed-title .title-subtitle {
    display: block;
    font-size: 1em; /* Relatif à la taille du H2 parent */
    font-weight: 400; /* Ou 600 si préféré */
    color: var(--text-dark); /* Couleur standard H2 */
    line-height: 1.4;
    margin-top: 0.3em; /* Léger espace après le titre principal */
}
/* Masquer la ligne bleue standard sous les titres composés */
.composed-title::after {
    display: none;
}

/* Style pour les boîtes de solution (#solutions-overview sur index.html) */
#solutions-overview .solution-box {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
}
#solutions-overview .solution-box-content {
    flex-grow: 1; /* Prend l'espace vertical */
}
#solutions-overview .box-button-wrapper {
    margin-top: auto;     /* Pousse vers le bas */
    padding-top: 1.5rem;  /* Espace au-dessus du bouton */
    text-align: center;   /* Centre le bouton */
}
#solutions-overview .solution-box h3 {
    text-align: center;
    margin-bottom: 1rem;
}
#solutions-overview .solution-box ul {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 20px;
}
#solutions-overview .solution-box p {
    margin-bottom: 1rem;
}
/* Éviter double marge avant bouton */
#solutions-overview .solution-box p:last-of-type,
#solutions-overview .solution-box ul:last-of-type {
   margin-bottom: 0;
}

/* Style pour la liste à puces personnalisée (ex: #commitment sur qui-sommes-nous.html) */
ul.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
ul.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}
ul.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.6; /* Match li line-height */
}

/* --- Responsive --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; } h2 { font-size: 2.2rem; }
    /* Ajustement Hero pour mobile (ordre déjà géré plus haut) */
    .hero-content { margin-bottom: 30px; }
    .main-nav { display: none; }
    .burger-menu { display: flex; }
    .header-container { justify-content: space-between; width: 100%; }
    .logo-link { margin: 0; }
    .sur-mesure-content { flex-direction: column; gap: 20px; }
    .sur-mesure-illustration { max-width: 60%; margin-top: 1rem; }
    .schema-image-wrapper svg { width: 90%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    /* Ajustement padding boutons CTA pour mobile */
    a.cta-button, button.cta-button,
    a.cta-button-outline, button.cta-button-outline { padding: 12px 25px; font-size: 1rem; }
    .main-header .container { padding: 0 15px; }
    .logo-image { height: 40px; }
    .hero-section, .solution-section, .offer-section, .faq-section, .contact-placeholder-section, .text-section, .video-placeholder-section, .schema-section, .dark-section { padding: 60px 0; } /* Harmonisation padding sections */
    .faq-question { font-size: 1.1rem; }
    .offer-section .highlight-price { font-size: 1.6rem; }
    .offer-section .standard-price, .offer-section .standard-monthly { font-size: 1.4rem; }
    .sur-mesure-illustration { max-width: 80%; }
    /* Styles pop-up mobile (conservés au cas où) */
    .popup-content { padding: 20px; width: 95%; }
    .checkbox-group { flex-direction: column; gap: 10px; align-items: flex-start; }
    /* Ajustement taille titre composé mobile */
    .composed-title .title-main { font-size: 1.3em; }
    .composed-title .title-subtitle { font-size: 0.95em; }
}
/* --- Effet Vitesse Combiné sur le 'S' de Speed Lead --- */

/* Style pour le 'S' lui-même (inclinaison) */
.speed-s {
    display: inline-block;    /* Pour transform et position relative */
    position: relative;       /* Point de référence pour les lignes ::after */
    z-index: 1;               /* Assure que le 'S' est au-dessus des lignes */
    font-style: italic;       /* Garder l'italique pour renforcer l'effet */
    transform: skewX(-12deg); /* Inclinaison dynamique */
    /* Optionnel: Ajuster marge si besoin */
    /* margin-right: -2px; */
}

/* Style pour les lignes de vitesse (pseudo-élément) - CORRIGÉ */
.speed-s::after {
    content: '';              /* Obligatoire */
    position: absolute;       /* Positionné par rapport au .speed-s */
    z-index: -1;              /* Placé DERRIÈRE le caractère 'S' */

    /* --- AJUSTEMENTS PLACEMENT --- */
    /* Descendre les lignes et les rapprocher du 'S' */
    top: 45%;                 /* Augmenté (plus bas). Ajuster entre 25% et 40% si besoin */
    left: -22px;               /* Augmenté (plus à droite). Ajuster entre -8px et 0px si besoin */
    height: 30%;              /* Réduit légèrement. Ajuster entre 50% et 70% si besoin */
    width: 25px;              /* Augmenté un peu la longueur. Ajuster si besoin */

    /* --- CORRECTION DÉGRADÉ (Inversé : solide à droite, fondu à gauche) --- */
    background-image:
        linear-gradient(to left, currentColor 60%, transparent 100%), /* Ligne 1 (plus longue près du S) */
        linear-gradient(to left, currentColor 80%, transparent 100%), /* Ligne 2 */
        linear-gradient(to left, currentColor 50%, transparent 100%); /* Ligne 3 (plus courte près du S) */

    /* Taille de chaque "ligne" (inchangé) */
    background-size:
        80% 1px,
        95% 1px,
        65% 1px;

    background-repeat: no-repeat;

    /* Position verticale de chaque ligne (inchangé, mais relatif au nouveau 'height') */
    background-position:
        0 100%,      /* Ligne 1 en haut */
        0 50%,    /* Ligne 2 au milieu */
        0 0;   /* Ligne 3 en bas */

    color: var(--primary-blue); /* Couleur des lignes */
    opacity: 0.8;             /* Légèrement plus opaque ? Ajuster si besoin */
}    /* Optionnel: Ajouter un léger flou ? */
    /* filter: blur(0.5px); */
}

/* --- Assurer que le reste du titre n'est pas affecté --- */
.composed-title .title-main {
   font-style: normal; /* Le reste du titre n'est pas en italique */
   /* Styles de base du titre principal */
   display: block; /* Ou inline-flex si utilisé avant */
   font-size: 1.4em;
   font-weight: 700;
   color: var(--primary-blue);
   margin-bottom: 0.2em;
   line-height: 1.2;
}
/* --- Styles pour la grille d'exemples spécifiques (#notre-approche-sur-mesure) --- */

/* Appliquer les styles de base .benefit-item mais permettre des ajustements */
#notre-approche-sur-mesure .examples-grid .benefit-item {
    /* background-color: #f8f9fa; /* Peut être hérité de .benefit-item ou défini ici */
    padding: 1.5rem; /* Padding spécifique pour cette grille */
    /* border-radius: 8px; /* Hérité */
    /* border: 1px solid var(--border-color); /* Hérité */
    /* text-align: center; /* Hérité */
}

#notre-approche-sur-mesure .examples-grid .benefit-icon {
    /* background: var(--light-blue); /* Fond bleu clair pour l'icône */
    /* border-radius: 50%; /* Icône dans un cercle */
    /* width: 50px; /* Taille du cercle */
    /* height: 50px; */
    /* display: inline-flex; /* Pour centrer l'icône SVG */
    /* justify-content: center; */
    /* align-items: center; */
    margin-bottom: 1rem; /* Espace sous l'icône */
}

#notre-approche-sur-mesure .examples-grid .benefit-icon svg {
    width: 36px; /* Taille SVG spécifique */
    height: 36px;
    /* color: var(--primary-blue); /* Hérité */
}

#notre-approche-sur-mesure .examples-grid h4 {
    font-size: 1.2rem; /* Taille H4 */
    font-weight: 600; /* Moins gras que H3 */
    color: var(--primary-blue); /* Couleur H3 standard */
    margin-bottom: 0.5rem;
    text-align: center; /* Assurer centrage */
}

#notre-approche-sur-mesure .examples-grid p {
    font-size: 0.9rem; /* Texte plus petit */
    color: var(--text-light); /* Couleur standard */
    text-align: center; /* Assurer centrage */
    line-height: 1.6;
}

/* --- Styles pour la liste ordonnée du processus (#notre-processus-collaboratif) --- */
ol.process-steps {
    list-style: none; /* Enlève les numéros par défaut */
    counter-reset: process-counter; /* Initialise un compteur */
    padding-left: 0;
    max-width: 650px; /* Largeur max pour lisibilité */
    margin: 0 auto;   /* Centrer la liste */
    text-align: left; /* Aligner le texte à gauche */
}

ol.process-steps li {
    counter-increment: process-counter; /* Incrémente le compteur pour chaque li */
    margin-bottom: 2rem; /* Espace entre les étapes */
    position: relative; /* Pour positionner le numéro */
    padding-left: 55px; /* Espace pour le numéro */
    padding-top: 5px;   /* Petit espace en haut pour alignement */
    min-height: 40px;   /* Hauteur minimale pour alignement */
}

ol.process-steps li::before {
    content: counter(process-counter); /* Affiche le numéro du compteur */
    position: absolute;
    left: 0;
    top: 0;
    width: 40px; /* Largeur du cercle */
    height: 40px; /* Hauteur du cercle */
    background-color: var(--light-blue); /* Fond du cercle */
    color: var(--primary-blue); /* Couleur du numéro */
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%; /* Forme de cercle */
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1; /* Assure centrage vertical du numéro */
}

ol.process-steps li strong {
    display: block; /* Met le titre de l'étape sur sa propre ligne */
    font-weight: 600;
    color: var(--text-dark); /* Couleur plus foncée pour le titre */
    margin-bottom: 0.3rem; /* Espace après le titre */
}

/* Optionnel: Ajouter des lignes entre les étapes */
/* ol.process-steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px; /* Align with center of the circle */
    /* top: 45px; /* Start below the circle */
    /* bottom: -1.5rem; /* Extend down towards the next item's top padding */
    /* width: 2px; */
    /* background-color: var(--border-color); */
/* } */
/* --- Ajustement Largeur Hero Sur Mesure --- */
#hero-sur-mesure .hero-content {
    max-width: none; /* Option 1: Aucune limite (prendra la largeur du .container) */
    /* OU */
    /* max-width: 900px; */ /* Option 2: Une valeur plus grande que 800px mais limitée */
}