/*
Theme Name: Insight Consulting
Theme URI: https://insight-consultingrdc.com
Author: Patrick Wanet
Author URI: https://insight-consultingrdc.com
Description: Thème WordPress sur mesure pour Insight Consulting, cabinet de conseil stratégique basé à Kinshasa, République Démocratique du Congo. Spécialisé en conseil stratégique, gestion de projets, formation et capacitation, études et diagnostics, suivi-évaluation et transformation digitale.
Version: 2.0.4
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: insight-consulting
Tags: conseil, stratégie, business, custom-theme, one-page, kinshasa, rdc
*/

/* ==========================================================================
   @font-face — Polices de la charte graphique
   ========================================================================== */

/* Barlow chargée via Google Fonts (functions.php) — uniquement pour la navigation */

@font-face {
    font-family: 'Helvetica';
    src: url('assets/fonts/HV.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007E; /* ASCII de base uniquement */
}

@font-face {
    font-family: 'Helvetica';
    src: url('assets/fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007E; /* ASCII de base uniquement */
}

/* ==========================================================================
   Variables CSS
   ========================================================================== */

:root {
    /* Couleurs principales */
    --ic-dark: #293A44;
    --ic-orange: #E67843;
    --ic-navy: #1B2139;
    --ic-orange-bright: #F08A5A;
    --ic-purple-gray: #4A4C61;
    --ic-warm-brown: #98594A;
    --ic-warm-pink: #BB9892;
    --ic-peach: #F4DDCF;
    --ic-peach-soft: #E7936E;
    --ic-white: #FFFFFF;
    --ic-gray: #575A7B;
    --ic-light-gray: #DBDBDB;
    --ic-off-white: #F8F8F8;

    /* Typos — Helvetica pour les titres & body, Barlow pour la navigation */
    --ic-font-heading: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
    --ic-font-nav: 'Barlow', 'Segoe UI', system-ui, sans-serif;
    --ic-font-body: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;

    /* Espacements */
    --ic-section-padding: 120px 0;
    --ic-container-width: 1200px;
    --ic-gap: 30px;

    /* Transitions */
    --ic-transition: all 0.4s ease-in-out;

    /* Ombres — style Clavis */
    --ic-shadow: 0 3px 10px rgba(41, 45, 194, 0.08);
    --ic-shadow-hover: 0 10px 60px rgba(0, 0, 0, 0.05);

    /* Rayons — Clavis : 0.375rem = 6px */
    --ic-radius: 6px;
    --ic-radius-lg: 10px;
    --ic-radius-pill: 9999px;
}

/* ==========================================================================
   Preloader
   ========================================================================== */

#ic-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--ic-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#ic-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ic-preloader__logo img {
    height: 52px;
    width: auto;
    opacity: 0.9;
}

.ic-preloader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--ic-orange);
    border-radius: 50%;
    animation: ic-spin 0.75s linear infinite;
}

@keyframes ic-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Reset minimal
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--ic-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.5px;
    color: var(--ic-purple-gray);
    background-color: var(--ic-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reset global formulaires — empêche tout dépassement */
input,
textarea,
select,
button {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-family: inherit;
}

textarea {
    resize: vertical;
    overflow: auto;
}

a {
    color: var(--ic-orange);
    text-decoration: none;
    transition: var(--ic-transition);
}

a:hover {
    color: var(--ic-orange-bright);
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typographie
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ic-font-heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ic-navy);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.1rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--ic-gray);
}

/* ==========================================================================
   Classes utilitaires
   ========================================================================== */

.container {
    max-width: var(--ic-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--ic-section-padding);
}

.section--dark {
    background-color: var(--ic-dark);
    color: var(--ic-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
    color: var(--ic-white);
}

.section--navy {
    background-color: var(--ic-navy);
    color: var(--ic-white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p {
    color: var(--ic-white);
}

.section--light {
    background-color: var(--ic-off-white);
}

.section--peach {
    background-color: var(--ic-peach);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ic-orange);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--ic-font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--ic-navy);
    margin-top: 0;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    max-width: 640px;
}

.section--dark .section-desc,
.section--navy .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ic-font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    line-height: 1.4;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
    transform: skewX(-15deg);
    transition: left 0.45s ease;
    pointer-events: none;
}

.btn:hover::after {
    left: 160%;
}

.btn--orange {
    background-color: var(--ic-orange);
    color: var(--ic-white);
    border-color: var(--ic-orange);
}

.btn--orange:hover {
    background-color: var(--ic-navy);
    border-color: var(--ic-navy);
    color: var(--ic-white);
    box-shadow: 0 8px 30px rgba(27, 33, 57, 0.2);
}

.btn--navy {
    background-color: var(--ic-navy);
    color: var(--ic-white);
    border-color: var(--ic-navy);
}

.btn--navy:hover {
    background-color: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
    box-shadow: 0 8px 30px rgba(230, 120, 67, 0.2);
}

.btn--ghost {
    background-color: transparent;
    color: var(--ic-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--ic-white);
    color: var(--ic-white);
}

.btn--outline {
    background-color: transparent;
    color: var(--ic-orange);
    border-color: var(--ic-orange);
}

.btn--outline:hover {
    background-color: var(--ic-orange);
    color: var(--ic-white);
}

.btn--dark {
    background-color: var(--ic-navy);
    color: var(--ic-white);
    border-color: var(--ic-navy);
}

.btn--dark:hover {
    background-color: var(--ic-dark);
    border-color: var(--ic-dark);
    color: var(--ic-white);
}

/* État chargement bouton formulaire */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
    opacity: 0.85;
}

.btn--loading svg {
    opacity: 0;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    margin-left: -9px;
    background: none;
    transform: skewX(0) translateX(0);
    transition: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--ic-white);
    border-radius: 50%;
    animation: ic-spin 0.7s linear infinite;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

/* Header — toujours blanc (pages internes) */
/* navbar-default — style Clavis : fond blanc, border-bottom subtile */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 0;
    transition: all 0.4s ease 0s;
    background-color: var(--ic-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: none;
}

/* Header transparent — homepage uniquement */
.site-header.transparent-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

/* Sticky — border léger comme Clavis, pas de shadow */
.site-header.scrolled {
    background-color: var(--ic-white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: none;
    animation: headerAnimate 0.95s ease forwards;
}

@keyframes headerAnimate {
    0% { margin-top: -80px; }
    100% { margin-top: 0; }
}

/* Layout : logo | nav centré | cta */
.site-header .container {
    display: flex;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logos image */
.site-logo img {
    height: 46px;
    width: auto;
    display: block;
    transition: opacity 0.4s ease;
}

/* Par défaut (pages internes) : logo coloré */
.logo--default { display: none; }
.logo--scrolled { display: block; }

/* Homepage non-sticky : logo blanc visible */
.transparent-header .logo--default { display: block; }
.transparent-header .logo--scrolled { display: none; }

/* Homepage sticky : logo coloré */
.transparent-header.scrolled .logo--default { display: none; }
.transparent-header.scrolled .logo--scrolled { display: block; }

/* ── CTA bouton header (style Clavis butn-style01) ─────────── */
.header-cta {
    flex-shrink: 0;
    margin-left: 16px;
}

/* Par défaut (pages internes, header blanc) : fond navy, texte blanc */
.header-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--ic-navy);
    color: var(--ic-white);
    font-family: var(--ic-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid var(--ic-navy);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.header-cta__btn:hover {
    background-color: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
}

/* Sur header transparent (homepage avant scroll) : bordure blanche, texte blanc */
.transparent-header .header-cta__btn {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--ic-white);
}

.transparent-header .header-cta__btn:hover {
    background-color: var(--ic-white);
    border-color: var(--ic-white);
    color: var(--ic-navy);
}

/* Sur header sticky : fond orange */
.transparent-header.scrolled .header-cta__btn {
    background-color: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
}

.transparent-header.scrolled .header-cta__btn:hover {
    background-color: var(--ic-navy);
    border-color: var(--ic-navy);
    color: var(--ic-white);
}

/* ── Sélecteur de langue ──────────────────────────────────── */

.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-family: var(--ic-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ic-navy);
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.transparent-header .lang-switcher__toggle {
    color: var(--ic-white);
}

.site-header.scrolled .lang-switcher__toggle {
    color: var(--ic-navy);
}

.lang-switcher__toggle:hover {
    border-color: rgba(27, 33, 57, 0.15);
    background: rgba(27, 33, 57, 0.04);
}

.transparent-header .lang-switcher__toggle:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.lang-switcher__chevron {
    transition: transform 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--ic-white);
    border: 1px solid rgba(27, 33, 57, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-width: 110px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 200;
}

.lang-switcher.is-open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items Polylang */
.lang-switcher__dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-switcher__dropdown ul li {
    margin: 0;
}

.lang-switcher__dropdown ul li a,
.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: var(--ic-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ic-navy);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.lang-switcher__dropdown ul li a:hover,
.lang-switcher__item:hover {
    background: rgba(27, 33, 57, 0.05);
    color: var(--ic-orange);
}

.lang-switcher__dropdown ul li.current-lang a,
.lang-switcher__item.is-active {
    color: var(--ic-orange);
    font-weight: 800;
}

.lang-switcher__flag {
    display: inline-block;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    vertical-align: middle;
}

/* ── États transparent / sticky ───────────────────────────── */

/* Nav liens : blancs sur header transparent */
.transparent-header .main-navigation ul li a {
    color: var(--ic-white);
}

.transparent-header .main-navigation ul li a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.transparent-header .main-navigation ul li.current-menu-item a,
.transparent-header .main-navigation ul li.current_page_item a {
    color: var(--ic-orange);
}

/* Hamburger : bars toujours blanches (bg-primary orange fixe) */
.menu-toggle .toggler-bar {
    background-color: #fff;
}

/* Nav liens : retour navy après scroll */
.transparent-header.scrolled .main-navigation ul li a {
    color: rgb(30, 62, 85);
}

/* ── Menu principal ────────────────────────────────────────── */
.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    text-align: center;
}

.main-navigation ul li a {
    font-family: var(--ic-font-nav);
    font-size: 16px;
    font-weight: 700;
    color: rgb(30, 62, 85);
    padding: 22px 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    display: block;
    position: relative;
    text-decoration: none;
}

.main-navigation ul li a:hover {
    color: var(--ic-orange);
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
    color: var(--ic-orange);
}

/* Cacher l'ancien menu-cta sur desktop (CTA maintenant dans .header-cta) */
.main-navigation ul li.menu-cta {
    display: none;
}

/* ── Dropdown menu ─────────────────────────────────────────── */
.main-navigation ul li.menu-item-has-children {
    position: relative;
}

/* Chevron indicator */
.main-navigation ul li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 6px;
    transition: transform 0.25s ease;
    vertical-align: middle;
}

.main-navigation ul li.menu-item-has-children:hover > a::after {
    transform: rotate(-135deg) translateY(-2px);
}

/* Sous-menu */
.main-navigation ul .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    transform: translateY(8px);
    min-width: 260px;
    background: var(--ic-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27, 33, 57, 0.12);
    border: 1px solid rgba(27, 33, 57, 0.06);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
    display: block;
}

.main-navigation ul li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Items du sous-menu */
.main-navigation ul .sub-menu li {
    text-align: left;
}

.main-navigation ul .sub-menu li a {
    font-family: var(--ic-font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--ic-navy);
    padding: 10px 20px;
    display: block;
    text-align: left;
    text-transform: none;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-navigation ul .sub-menu li a:hover {
    background: var(--ic-off-white);
    color: var(--ic-orange);
    padding-left: 24px;
}

/* Couleur blanche sur header transparent */
.transparent-header:not(.scrolled) .main-navigation ul li.menu-item-has-children > a::after {
    border-color: var(--ic-white);
}

/* ── Menu mobile — style Clavis navbar-toggler bg-primary ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    background-color: var(--ic-orange);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    z-index: 1001;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--ic-orange-bright, #d05f30);
}

.menu-toggle .toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* État actif (X) */
.menu-toggle.active .toggler-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .toggler-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .toggler-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    background: var(--ic-navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Vidéo de fond */
.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 62, 85, 0.82);
}

/* Contenu au-dessus de la vidéo */
.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__badge {
    display: inline-block;
    color: var(--ic-orange);
    font-family: var(--ic-font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease;
}

.hero__title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--ic-white);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__title .highlight {
    color: var(--ic-orange);
}

/* Sous-titre (description principale) */
.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

/* Tagline sous le titre */
.hero__tagline {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.15s both;
}

/* Bouton CTA unique (comme Clavis "GET STARTED") */
.hero__cta {
    animation: fadeInUp 0.6s ease 0.2s both;
    font-size: 0.875rem;
    padding: 18px 42px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 800;
}

/* ==========================================================================
   Hero Slider (style Clavis) — backup vidéo : hero.php
   ========================================================================== */

.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ic-navy);
}

/* Arrière-plans (images) */
.hero-slider__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

@keyframes ic-kenburns {
    from { transform: scale(1);    }
    to   { transform: scale(1.08); }
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.2s ease;
    transform-origin: center center;
    will-change: transform, opacity;
}

.hero-slider__slide.is-active {
    opacity: 1;
    animation: ic-kenburns 7s ease-out forwards;
}

/* Overlay foncé */
.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 62, 85, 0.82);
    z-index: 1;
}

/* Conteneur principal au-dessus de l'overlay */
.hero-slider__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 160px;
    padding-bottom: 140px;
}

/* Wrapper des contenus (grille empilée) */
.hero-slider__content-wrap {
    display: grid;
    width: 100%;
    text-align: center;
}

.hero-slider__content {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.hero-slider__content.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Tagline orange */
.hero-slider__tagline {
    display: block;
    color: var(--ic-orange);
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 26px;
}

/* Titre principal */
.hero-slider__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    color: var(--ic-white);
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
    max-width: 860px;
}

.hero-slider__title .highlight {
    color: var(--ic-orange);
}

/* Sous-titre */
.hero-slider__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 0 40px;
}

/* Bouton CTA */
.hero-slider__cta {
    font-size: 0.875rem;
    padding: 16px 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
}

/* ── Flèches de navigation ── */
.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--ic-white);
    width: 54px;
    height: 54px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-slider__arrow:hover {
    background: var(--ic-orange);
    border-color: var(--ic-orange);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider__arrow--prev { left: 40px; }
.hero-slider__arrow--next { right: 40px; }

/* ── Indicateurs numérotés ── */
.hero-slider__indicators {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 36px;
    align-items: flex-end;
}

.hero-slider__dot {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-slider__dot-num {
    font-family: var(--ic-font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.hero-slider__dot.is-active .hero-slider__dot-num {
    color: var(--ic-orange);
}

.hero-slider__dot-line {
    width: 64px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hero-slider__dot-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--ic-orange);
    border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-slider__arrow--prev { left: 20px; }
    .hero-slider__arrow--next { right: 20px; }
    .hero-slider__arrow { width: 44px; height: 44px; }
}

@media (max-width: 767px) {
    .hero-slider__arrow { display: none; }
    .hero-slider__indicators { gap: 24px; bottom: 32px; }
    .hero-slider__dot-line { width: 44px; }
    .hero-slider__container { padding-top: 120px; padding-bottom: 110px; }
    .hero-slider__tagline { font-size: 0.7rem; letter-spacing: 0.12em; }
    .hero-slider__subtitle { font-size: 0.9rem; max-width: 100%; }
    .hero-slider__cta { padding: 14px 26px; font-size: 0.875rem; }
}

@media (max-width: 480px) {
    .hero-slider__container { padding-top: 100px; padding-bottom: 90px; }
    .hero-slider__indicators { bottom: 20px; gap: 16px; }
    .hero-slider__dot-num { display: none; }
    .hero-slider__dot-line { width: 32px; }
}

/* ==========================================================================
   Services — 4 cartes pleine largeur (style Clavis fidèle card-style02)
   ========================================================================== */

.ic-svc { width: 100%; overflow: hidden; background: transparent; }

.ic-svc__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 0 12px; /* reproduit le container Bootstrap — première et dernière card ne collent pas au bord */
}

/* ── Carte ── */
.ic-svc__card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 338 / 412;
    padding: 0;
    border-radius: 8px;
}

/* Image de fond — zoom lent au hover (scale 1 → 1.4 sur 4s) */
.ic-svc__bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition-duration: 2s;
    transition-property: transform;
}
.ic-svc__card:hover .ic-svc__bg-img {
    transform: scale(1.4);
    transition-duration: 4s;
}

/* Overlay permanent (opacity-medium bg-secondary de Clavis) */
.ic-svc__overlay-base {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1e3e55;
    opacity: 0.62;
    z-index: 1;
}

/* Overlay hover (card-overlay de Clavis) — opacité 0 → 1 */
.ic-svc__overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 62, 85, 0.82);
    opacity: 0;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}
.ic-svc__card:hover .ic-svc__overlay { opacity: 1; }

/* Corps (card-body) — couvre 100%, déclenche le hover */
.ic-svc__body {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Bloc haut : numéro + titre + icône (card-custom-1) */
.ic-svc__top {
    padding: 2.5rem 2.5rem 0;
}

/* Numéro */
.ic-svc__num {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--ic-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ic-orange);
    position: relative;
    z-index: 1;
    line-height: 1;
}

/* Titre */
.ic-svc__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    margin: 0;
    width: 75%;
    line-height: 1.3;
}
.ic-svc__title a { color: #fff; text-decoration: none; }
.ic-svc__title a:hover { color: var(--ic-orange); }

/* Icône (card-hover-icon) — zoom-out + disparition au hover */
.ic-svc__icon {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 4;
    line-height: 0;
    transform: scale(1);
    opacity: 1;
    transition: all 0.5s ease-in-out;
}
.ic-svc__body:hover .ic-svc__icon {
    opacity: 0;
    transform: scale(0);
}
.ic-svc__icon svg {
    display: block;
    width: 50px; height: 50px;
    stroke: #fff; fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Bloc bas (card-data) — glisse bottom:-25px → 0, opacité 0 → 1 */
.ic-svc__data {
    opacity: 0;
    position: absolute;
    bottom: -25px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    transition: all 0.5s ease-in-out;
}
.ic-svc__body:hover .ic-svc__data {
    opacity: 1;
    bottom: 0;
}

/* Contenu intérieur (card-custom-2) */
.ic-svc__data-inner {
    padding: 2.5rem;
    width: 100%;
}

/* Description */
.ic-svc__desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    min-height: 75px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #fff;
    opacity: 0.65;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.75;
    width: 80%;
}

/* Lien (btn-link-1) — border-bottom, uppercase, sans flèche */
.ic-svc__link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 7px 0 2px;
    margin-top: 20px;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid #fff;
    background: transparent;
    color: #fff;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.ic-svc__link:hover {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 1399px) {
    .ic-svc__top { padding: 2rem 1.5rem 0; }
    .ic-svc__data-inner { padding: 2rem 1.5rem; }
    .ic-svc__icon { left: 24px; bottom: 32px; }
    .ic-svc__link { margin-top: 12px; }
}
@media (max-width: 991px) {
    .ic-svc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .ic-svc__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Notre Approche — ic-approach (premium editorial, images left / list right)
   ========================================================================== */

.ic-approach {
    background: #fff;
    padding-bottom: 0; /* xp-band handles bottom spacing */
}

/* ── En-tête centré ── */
.ic-approach__header {
    text-align: center;
    margin-bottom: 56px;
}

/* ── Grille 3 colonnes : gauche | image | droite ── */
.ic-approach__center-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: start;
    padding-bottom: 80px;
}

.ic-approach__col--left  { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; gap: 20px; }
.ic-approach__images     { grid-column: 2; grid-row: 1; }
.ic-approach__col--right { grid-column: 3; grid-row: 1; display: flex; flex-direction: column; gap: 20px; }
.ic-approach__feature--bottom { grid-column: 2; grid-row: 2; }

/* ── Colonne images ── */
.ic-approach__images {
    position: relative;
}

.ic-approach__img-stack {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
}

.ic-approach__img {
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.ic-approach__img--a {
    height: 480px;
}

.ic-approach__img--b {
    height: 360px;
    margin-top: 80px;
}

/* Badge flottant — blanc, chiffre orange, border-bottom orange */
.ic-approach__badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: #fff;
    padding: 28px 32px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    min-width: 160px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
    border-bottom: 4px solid var(--ic-orange);
}

.ic-approach__badge strong {
    font-family: var(--ic-font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ic-orange);
    letter-spacing: -2px;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.ic-approach__badge span {
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ic-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    max-width: 110px;
}

/* ── Colonne contenu ── */
#pourquoi-nous .section-title,
#a-propos .section-title,
#approche .section-title,
#expertise .section-title {
    font-family: var(--ic-font-heading) !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -2px !important;
    margin-bottom: 12px !important;
    color: #1E3E55 !important;
}

#a-propos .btn--navy,
#approche .btn--navy {
    color: #FFFFFF;
    background-color: #1E3E55;
    border-color: #1E3E55;
    padding: 15px 34px;
    font-size: 14px;
}

#a-propos .btn--navy:hover,
#approche .btn--navy:hover {
    background-color: var(--ic-orange);
    border-color: var(--ic-orange);
}

/* ── Cards navy (piliers) ── */
.ic-approach__feature {
    background: var(--ic-navy);
    border-radius: 4px;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Barre orange gauche animée */
.ic-approach__feature::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--ic-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
}

.ic-approach__feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(12, 26, 52, 0.25);
}

.ic-approach__feature:hover::before {
    transform: scaleY(1);
}

/* Numéro watermark — grand, fond droit de la card */
.ic-approach__feature-num {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ic-font-heading);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    user-select: none;
}

.ic-approach__title {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.6;
    position: relative;
}

.ic-approach__desc {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.7;
    margin: 0;
    position: relative;
}

/* Pilier 5 — centré */
.ic-approach__feature--bottom {
    text-align: center;
}

.ic-approach__feature--bottom .ic-approach__feature-num {
    right: 50%;
    transform: translate(50%, -50%);
}

/* ── Bande Expériences — fond navy, grille 5 colonnes ── */
.ic-approach__xp-band {
    background: var(--ic-navy);
    padding: 64px 0 72px;
    width: 100%;
}

.ic-approach__xp-eyebrow {
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ic-orange);
    margin: 0 0 28px;
    text-align: center;
}

.ic-approach__xp-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    text-align: left;
    max-width: 880px;
    margin: 0 auto 18px;
}

.ic-approach__xp-intro:last-of-type {
    margin-bottom: 0;
}

.ic-approach__xp-intro:first-of-type::first-letter {
    font-weight: 600;
    color: #fff;
}
.ic-approach__xp-domains-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 28px;
}

.ic-approach__xp-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.ic-approach__xp-item {
    display: flex;
    flex-direction: column;
    padding: 20px 24px 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.12);
    transition: border-top-color 0.25s ease;
    cursor: default;
}

.ic-approach__xp-num {
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ic-orange);
    margin-bottom: 10px;
}

.ic-approach__xp-label {
    font-family: var(--ic-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
    transition: color 0.25s ease;
}

.ic-approach__xp-item:hover {
    border-top-color: var(--ic-orange);
}

.ic-approach__xp-item:hover .ic-approach__xp-label {
    color: #fff;
}

/* ── Intro paragraph ── */
.ic-approach__intro {
    max-width: 820px;
    margin: 0 auto 56px;
    text-align: center;
}

.ic-approach__intro p {
    font-size: 1.05rem;
    color: var(--ic-body);
    line-height: 1.75;
}

/* ── Grille 6 piliers (3 × 2) ── */
.ic-approach__pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .ic-approach__center-grid { gap: 18px; }
}

@media (max-width: 991px) {
    .ic-approach__center-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .ic-approach__col--left  { grid-column: 1; grid-row: 1; }
    .ic-approach__images     { grid-column: 1 / -1; grid-row: 2; }
    .ic-approach__col--right { grid-column: 2; grid-row: 1; }
    .ic-approach__feature--bottom { grid-column: 1 / -1; grid-row: 3; }
    .ic-approach__img--a { height: 340px; }
    .ic-approach__img--b { height: 260px; margin-top: 50px; }
    .ic-approach__xp-grid { grid-template-columns: repeat(3, 1fr); }
    .ic-approach__pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .ic-approach__center-grid { grid-template-columns: 1fr; }
    .ic-approach__col--left,
    .ic-approach__images,
    .ic-approach__col--right,
    .ic-approach__feature--bottom { grid-column: 1; grid-row: auto; }
    .ic-approach__xp-grid { grid-template-columns: repeat(2, 1fr); }
    .ic-approach__pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .ic-approach__img-stack { grid-template-columns: 1fr; }
    .ic-approach__img--b { display: none; }
    .ic-approach__img--a { height: 280px; }
    .ic-approach__badge {
        left: 50%;
        top: auto;
        bottom: -60px;
        transform: translateX(-50%);
        padding: 20px 28px;
    }
    .ic-approach__badge strong { font-size: 2.8rem; }
    .ic-approach__images { margin-bottom: 80px; }
    .ic-approach__xp-grid { grid-template-columns: 1fr 1fr; }
    .ic-approach__xp-item { padding: 16px 0; }
}

@media (max-width: 400px) {
    .ic-approach__xp-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Notre Processus — style Clavis process-style01
   ========================================================================== */

.ic-process {
    padding: 90px 0 100px;
    background: #fff;
}

.ic-process__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* En-tête */
.ic-process__header {
    text-align: center;
    margin-bottom: 56px;
}

.ic-process__tag {
    display: block;
    color: var(--ic-orange);
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.ic-process__heading {
    font-family: var(--ic-font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: #1E3E55;
    margin: 0 auto;
}

/* Ligne pointillée de connexion (process-line.png)
   PNG : 1353×181px — la ligne est approximativement au centre vertical du PNG (~90px).
   Cercles centrés à 87px depuis le haut de .ic-process__inner (padding 12px + rayon 75px).
   → Top du PNG à : 87 - 90 = -3px ≈ 0, on laisse top pour coller au bord */
.ic-process__inner {
    position: relative;
    padding-top: 12px;
    background-image: url('assets/images/process/process-line.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

/* Grille 4 colonnes */
.ic-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Bloc individuel (text-center) */
.ic-process__block {
    text-align: center;
}

/* Conteneur image (position:relative pour le badge) */
.ic-process__img {
    position: relative;
    margin-bottom: 20px;
}

/* Photo circulaire (Bootstrap rounded-circle) */
.ic-process__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 16px;
}

/* Badge numéroté (count-size + number) — positionné en haut-gauche du cercle */
.ic-process__count {
    position: absolute;
    left: calc(50% - 75px + 2px); /* aligne avec le bord gauche du cercle centré */
    top: 0;
}

.ic-process__number {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ic-orange);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--ic-font-heading);
    line-height: 1;
    z-index: 1;
}

/* Anneaux concentriques (before = 57px 20%, after = 69px 9%) */
.ic-process__number::before,
.ic-process__number::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--ic-orange);
    z-index: -1;
    transition: background-color 0.3s ease;
}
.ic-process__number::before { width: 57px; height: 57px; opacity: 0.2; }
.ic-process__number::after  { width: 69px; height: 69px; opacity: 0.09; }

/* Hover : anneaux passent en navy + animation pulse */
.ic-process__block:hover .ic-process__number::before,
.ic-process__block:hover .ic-process__number::after {
    background-color: var(--ic-navy);
    animation: ic-process-pulse 1.05s infinite;
}

@keyframes ic-process-pulse {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-50%, -50%) scale(1.12); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Titre */
.ic-process__title {
    font-family: var(--ic-font-heading);
    color: #1E3E55;
    margin: 0 0 16px;
}

/* Description */
.ic-process__desc {
    font-family: var(--ic-font-heading);
    font-size: 16px;
    color: #575A7B;
    line-height: 1.65;
    margin: 0 6.71875px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .ic-process__count { left: calc(50% - 75px - 18px); }
}
@media (max-width: 991px) {
    .ic-process__inner { background-image: none; }
    .ic-process__grid  { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .ic-process__count { left: 23%; }
}
@media (max-width: 575px) {
    .ic-process__grid  { grid-template-columns: 1fr; }
    .ic-process__count { left: 33%; }
}

/* ==========================================================================
   À Propos
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
    border-radius: var(--ic-radius);
    overflow: hidden;
}

.about__image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--ic-dark) 0%, var(--ic-navy) 100%);
    border-radius: var(--ic-radius);
    position: relative;
}

.about__image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(27, 33, 57, 0.6), transparent);
}

.about__image-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 120px;
    background: var(--ic-orange);
    border-radius: 0 3px 0 0;
}

.about__image-accent {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--ic-orange);
    color: var(--ic-white);
    padding: 20px 25px;
    border-radius: var(--ic-radius);
    text-align: center;
    box-shadow: 0 8px 25px rgba(230, 120, 67, 0.3);
}

.about__image-accent strong {
    display: block;
    font-family: var(--ic-font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about__image-accent span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about__content .section-tag,
.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 1.05rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 18px 0 32px;
}

.about__tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ic-orange);
    margin: -16px 0 28px;
}

.about__text--chamber {
    font-size: 1rem;
    color: var(--ic-orange);
    border-left: 3px solid var(--ic-orange);
    padding-left: 14px;
    margin-top: 4px;
}

.about__mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 28px 0 8px;
    padding: 24px;
    background: var(--ic-off-white);
    border-radius: var(--ic-radius);
}

.about__mv-item strong {
    display: block;
    font-family: var(--ic-font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ic-navy);
    margin-bottom: 8px;
}

.about__mv-item p {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ic-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ic-dark);
}

.about__value::before {
    content: '✓';
    width: 28px;
    height: 28px;
    background: rgba(230, 120, 67, 0.12);
    color: var(--ic-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Points clés — section about homepage */
.about__keypoints {
    list-style: none;
    margin: 28px 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about__keypoint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--ic-text);
    line-height: 1.75;
}

.about__keypoint-icon {
    color: var(--ic-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Lien dans le titre (pas de décoration, hover orange) ── */
.about__title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about__title-link:hover {
    color: var(--ic-orange);
}

/* ── Titre About (style Clavis display-4 font-weight-800 lh-1 ls-minus-2px) ── */
#a-propos .about__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    color: var(--ic-navy);
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 28px;
}

/* ── Image réelle (remplace placeholder) ── */
.about__img {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 540 / 562.5;
    height: auto;
    display: block;
    border-radius: var(--ic-radius);
    object-fit: cover;
}

/* ── Description avec border-bottom = séparateur Clavis ── */
.about__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0 0 0;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ic-light-gray);
    text-align: left;
}

/* ── Checklist 2 colonnes (style Clavis fa-square-check) ── */
#a-propos .about__two-lists {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 24px 0 28px;
}

#a-propos .about__checklist-col {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 0;
    min-width: 0;
}

#a-propos .about__checklist-col li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ic-dark);
    margin-bottom: 14px;
    line-height: 1.75;
}

#a-propos .about__checklist-col li:last-child {
    margin-bottom: 0;
}

.about__check-icon {
    color: var(--ic-orange);
    flex-shrink: 0;
}

/* ── Bloc signature (style Clavis wl-custom-author-v1) ── */
.about__signature {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.about__signature-person {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.about__signature-photo {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.about__signature-initials {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    background: var(--ic-navy);
    color: var(--ic-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ic-font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
}

.about__signature-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__signature-name {
    font-family: var(--ic-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin: 0;
    line-height: 1.3;
}

.about__signature-role {
    font-size: 0.82rem;
    color: var(--ic-gray);
    line-height: 1.4;
}

.about__signature-img {
    flex-shrink: 0;
}

.about__signature-img img {
    max-height: 48px;
    width: auto;
    display: block;
    opacity: 0.75;
}

/* ── CTA ── */
.about__cta {
    margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about__signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .about__two-lists {
        flex-direction: column;
        gap: 0;
    }
    .about__checklist-col li {
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   Page À Propos — styles dédiés
   ========================================================================== */

/* Hero de la page */
.about-page-header {
    padding: 160px 0 80px;
    text-align: center;
}

.about-page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-top: 16px;
    margin-bottom: 20px;
}

.about-page-header h1 .highlight {
    color: var(--ic-orange);
    font-style: italic;
    display: block;
}

/* Fil d'ariane */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--ic-orange);
}

/* Section-tag version claire (sur fond navy) */
.section-tag--light {
    background: rgba(230, 120, 67, 0.15);
    color: var(--ic-orange);
    border: 1px solid rgba(230, 120, 67, 0.3);
}

/* Présentation 2 colonnes */
.about-page-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.about-page-intro__image {
    position: relative;
    border-radius: var(--ic-radius);
    overflow: visible;
    position: sticky;
    top: 100px;
}

.about-page__img {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 540 / 562.5;
    height: auto;
    object-fit: cover;
    border-radius: var(--ic-radius);
    display: block;
}


/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 44px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(230, 120, 67, 0.35);
    transform: translateY(-4px);
}

.vm-card__icon {
    color: var(--ic-orange);
    margin-bottom: 24px;
}

.vm-card__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ic-orange);
    margin-bottom: 16px;
}

.vm-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ic-white);
    margin-bottom: 16px;
    line-height: 1.35;
}

.vm-card__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
}

/* Nos Valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

/* La 5ème carte centrée sur la dernière ligne */
.value-card:nth-child(4) {
    grid-column: 1;
}

.value-card:nth-child(5) {
    grid-column: 2;
}

.value-card {
    background: var(--ic-off-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    transition-delay: calc(var(--i, 0) * 0.07s);
}

.value-card:hover {
    border-color: rgba(230, 120, 67, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--ic-orange);
    border-radius: 0 0 4px 0;
    transition: height 0.35s ease;
}

.value-card:hover::before {
    height: 100%;
}

.value-card__num {
    display: block;
    font-family: var(--ic-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ic-orange);
    line-height: 1;
    margin-bottom: 12px;
}

.value-card__bar {
    width: 32px;
    height: 3px;
    background: var(--ic-orange);
    border-radius: 2px;
    margin-bottom: 20px;
    opacity: 0.6;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.value-card:hover .value-card__bar {
    width: 50px;
    opacity: 1;
}

.value-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.value-card__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0;
}

/* Partenaires intro — page Équipe */
.partners-intro { max-width: 760px; }
.partners-intro p { color: var(--ic-text); line-height: 1.75; margin-bottom: 1rem; }
.partners-intro__list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.partners-intro__list li { padding-left: 1.25rem; position: relative; color: var(--ic-text); }
.partners-intro__list li::before { content: '—'; position: absolute; left: 0; color: var(--ic-orange); font-weight: 700; }

/* =====================================================================
   Page Équipe — Section Partenaires & Réseaux (premium)
   ===================================================================== */

.eq-partners__works-with {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ic-navy);
    margin-bottom: 20px;
}

.eq-partners__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.eq-partners__card {
    background: var(--ic-navy);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.3s ease;
}

.eq-partners__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--ic-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.eq-partners__card:hover { background: rgba(12, 26, 52, 0.9); transform: translateY(-4px); }
.eq-partners__card:hover::before { transform: scaleY(1); }

.eq-partners__icon {
    width: 48px; height: 48px;
    background: var(--ic-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.eq-partners__card:hover .eq-partners__icon { transform: scale(1.1); }

/* Icône watermark fond — apparaît au hover */
.eq-partners__icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.eq-partners__card:hover .eq-partners__icon-bg {
    transform: translateX(0);
    opacity: 1;
}

.eq-partners__label {
    font-family: var(--ic-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.eq-partners__card:hover .eq-partners__label { color: var(--ic-orange); }

/* ── Chambre de Commerce — split-panel premium ── */
/* ── Award Medallion card ── */
.eq-partners__chambre {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #fff;
    border: 1px solid rgba(12, 26, 52, 0.09);
    border-radius: 4px;
    box-shadow: 0 12px 48px rgba(12, 26, 52, 0.09);
    padding: 40px 48px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Trait orange en haut */
.eq-partners__chambre::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--ic-orange);
    border-radius: 4px 4px 0 0;
}

/* Motif dots discret en fond */
.eq-partners__chambre::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(12,26,52,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 4px;
    pointer-events: none;
}

.eq-partners__chambre:hover {
    box-shadow: 0 20px 64px rgba(12, 26, 52, 0.15);
    transform: translateY(-4px);
}

/* Médaille circulaire */
.eq-partners__chambre-seal {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    background: var(--ic-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #fff;
    box-shadow: 0 6px 24px rgba(230, 120, 67, 0.45), 0 2px 6px rgba(230, 120, 67, 0.20);
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Anneau intérieur décoratif */
.eq-partners__chambre-seal::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    pointer-events: none;
}

.eq-partners__chambre:hover .eq-partners__chambre-seal {
    transform: rotate(8deg) scale(1.06);
}

.eq-partners__chambre-seal svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.eq-partners__chambre-seal-label {
    font-family: var(--ic-font-heading);
    font-size: 0.44rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

/* Contenu texte */
.eq-partners__chambre-content {
    flex: 1;
    padding-left: 44px;
    position: relative;
    z-index: 1;
}

.eq-partners__chambre-badge {
    display: inline-block;
    font-family: var(--ic-font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ic-orange);
    margin-bottom: 14px;
}

.eq-partners__chambre-org {
    font-family: var(--ic-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ic-navy);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Trait décoratif avant le texte */
.eq-partners__chambre-org::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--ic-orange);
    border-radius: 2px;
    margin-top: 18px;
}

.eq-partners__chambre-text {
    font-size: 1rem;
    color: var(--ic-text);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .eq-partners__chambre {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 32px 28px;
    }
}

/* Stagger animation */
.eq-partners__card.reveal {
    transition:
        opacity  0.55s ease calc(var(--i, 0) * 0.09s),
        transform 0.55s ease calc(var(--i, 0) * 0.09s);
}
.eq-partners__card.reveal.visible {
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

@media (max-width: 991px) {
    .eq-partners__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .eq-partners__grid { grid-template-columns: 1fr; gap: 16px; }
    .eq-partners__chambre { padding: 28px 20px; gap: 20px; }
    .eq-partners__chambre-seal { width: 80px; height: 80px; }
    .eq-partners__chambre-org { font-size: 1.2rem; }
}

/* CTA final */
.about-page-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-page-cta__inner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--ic-white);
    margin-bottom: 16px;
}

.about-page-cta__inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

/* ==========================================================================
   Section Carrières — style Clavis Reviews (bg-02.jpg + overlay navy)
   Valeurs Bootstrap traduits : display-4=3.5rem, font-weight-800, lh-1,
   ls-minus-2px, letter-spacing-4=4px, opacity5=0.5, small=0.875rem
   ========================================================================== */

/* ==========================================================================
   Carrières — bg photo + overlay navy, layout premium 2 colonnes
   ========================================================================== */

#carrieres {
    position: relative;
    background-image: url('assets/images/bg-02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#carrieres::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(27, 33, 57, 0.97) 0%,
        rgba(27, 33, 57, 0.92) 50%,
        rgba(27, 33, 57, 0.82) 100%
    );
    z-index: 0;
}

/* ── Outer : 2 colonnes pleine largeur ── */
.carrieres-outer {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42fr 58fr;
    width: 100%;
    max-width: 1351px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Séparateur vertical entre les deux colonnes */
.carrieres__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 60px 72px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.carrieres__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 72px 72px;
}

/* ── Tag ── */
.carrieres__tag {
    display: inline-block;
    color: var(--ic-orange);
    font-family: var(--ic-font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ── Titre principal ── */
.carrieres__title {
    font-family: var(--ic-font-heading);
    font-size: clamp(2.4rem, 3.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #fff;
    margin: 0 0 24px;
    max-width: 360px;
}

/* ── Accroche gauche ── */
.carrieres__lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
    max-width: 340px;
}

/* ── Intro liste domaines (colonne droite) ── */
.carrieres__domains-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0 0 16px;
}

/* ── Grille de cards (3×2) ── */
.carrieres__cards {
    list-style: none;
    padding: 0;
    margin: 0 0 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.carrieres__card {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ic-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    text-align: center;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: background 0.25s ease, border-top-color 0.25s ease, color 0.25s ease;
    cursor: default;
}

.carrieres__card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-top-color: var(--ic-orange);
    color: #fff;
}

/* ── CTA ── */
.carrieres__cta {
    align-self: flex-start;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .carrieres-outer {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .carrieres__left {
        padding: 70px 0 40px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .carrieres__right {
        padding: 48px 0 70px;
    }
    .carrieres__title { max-width: none; }
    .carrieres__lead  { max-width: none; }
}

@media (max-width: 575px) {
    .carrieres__cards { grid-template-columns: 1fr 1fr; }
    .carrieres__title { font-size: 2.2rem; letter-spacing: -1px; }
}

@media (max-width: 400px) {
    .carrieres__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Témoignages
   ========================================================================== */

/* Slider wrapper */
.testimonials-slider {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

/* Flèches */
.testimonials-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--ic-light-gray);
    background: var(--ic-white);
    color: var(--ic-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.testimonials-arrow:hover {
    background: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
    transform: scale(1.08);
}

/* Track */
.testimonials-track-wrap {
    flex: 1;
    overflow: hidden;
    border-radius: 24px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Slide individuel */
.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    user-select: none;
}

.testimonial-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    user-select: auto;
}

/* ---- Carte navy ---- */
.testimonial-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--ic-navy);
    border-radius: 24px;
    padding: 56px 56px 56px 48px;
    position: relative;
    overflow: hidden;
}

/* Cercle décoratif arrière-plan */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* Photo ou initiales */
.testimonial-card__photo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--ic-orange);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ic-font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--ic-white);
    position: relative;
    z-index: 1;
}

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

/* Corps du contenu */
.testimonial-card__body {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

/* Guillemet décoratif */
.testimonial-card__mark {
    display: block;
    font-size: 4.5rem;
    line-height: 0.8;
    color: var(--ic-orange);
    font-family: Georgia, serif;
    margin-bottom: 20px;
    opacity: 0.75;
}

/* Texte du témoignage */
.testimonial-card__text {
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin: 0 0 24px;
}

/* Étoiles */
.testimonial-card__stars {
    color: var(--ic-orange);
    font-size: 0.9rem;
    letter-spacing: 5px;
    margin-bottom: 18px;
}

/* Auteur */
.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
}

.testimonial-card__name {
    display: block;
    font-family: var(--ic-font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ic-orange);
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ic-light-gray);
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    padding: 0;
}

.testimonials-dot.is-active {
    background: var(--ic-orange);
    transform: scale(1.3);
}

.testimonials-dot:hover {
    background: var(--ic-navy);
}

/* ==========================================================================
   Partenaires
   ========================================================================== */

.partners {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid var(--ic-light-gray);
    border-bottom: 1px solid var(--ic-light-gray);
    overflow: hidden;
}

.partners__header {
    text-align: center;
    margin-bottom: 28px;
}

.partners__label {
    font-family: var(--ic-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ic-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Viewport : limite la zone visible et masque le débordement */
.partners__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}

/* Track : contient 2× la liste des logos pour boucle sans saut */
.partners__track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: partners-scroll-right 35s linear infinite;
}

/* Défilement gauche → droite */
@keyframes partners-scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0);    }
}

/* Pause au survol pour permettre la lecture */
.partners__viewport:hover .partners__track {
    animation-play-state: paused;
}

/* Respect des préférences réduit-le-mouvement */
@media (prefers-reduced-motion: reduce) {
    .partners__track { animation: none; transform: translateX(-50%); }
}

/* Logos en couleurs originales (demande client 15/04/2026) */
.partner-logo {
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    flex-shrink: 0;
    display: block;
}

.partner-logo--placeholder {
    width: 140px;
    height: 64px;
    background: var(--ic-light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ic-font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ic-gray);
    filter: none;
    opacity: 1;
    transition: var(--ic-transition);
}

.partner-logo--placeholder:hover {
    background: var(--ic-orange);
    color: var(--ic-white);
}

/* ==========================================================================
   Section Équipe
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-intro {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.7;
    margin-top: 12px;
}

.team-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.team-intro p {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin-bottom: 12px;
}

/* ==========================================================================
   Team — Card Style 04 (exact Clavis — design/styles.css)
   ========================================================================== */

/* Grid wrapper */
.team-clavis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.9rem;
    margin-top: 2rem;
}

/* card-style04 — copié de design/styles.css */
.card-style04 { position: relative; z-index: 1; padding: 30px 40px; transition: 0.3s; background: #fff; border-radius: 10px; box-shadow: 0 10px 60px 0 rgba(0,0,0,0.05); }
.card-style04 .card-icons { position: absolute; top: 0; left: 0; right: 0; bottom: 0; transition: 0.4s; }
.card-style04 .card-icons .card-icon { position: absolute; z-index: 3; bottom: calc(50% - 20px); left: calc(50% - 20px); margin-bottom: -40%; margin-left: 30%; color: #fff; }
.card-style04 .card-icons .card-icon:first-child { font-size: 12px; transform: rotate(45deg); }
.card-style04 .card-icons .card-icon:hover { background-color: #1e3e55; box-shadow: 11px 10px 38px 0 rgba(0,0,0,0.2); }
.card-style04 .card-icon { width: 36px; height: 36px; margin: 5px; border-radius: 50%; font-size: 14px; line-height: 36px; text-align: center; color: #fff; background: #1e3e55; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.card-style04:hover .card-icon { color: #fff; background: #d8973d; }
.card-style04 .card-inner-img { display: block; position: relative; }
.card-style04 .card-inner-img:before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; transition: 0.3s; }
.card-style04 .card-inner-img:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; transition: 0.3s; opacity: 0; }
.card-style04:hover .card-inner-img:before { opacity: 0; }
.card-style04:hover .card-inner-img:after { opacity: 1; }
.card-style04:hover .card-image .card-icons .card-icon { opacity: 1; }
.card-style04:hover .card-image .card-icons .card-icon:nth-child(1) { transition: all 0.4s, opacity 0.3s 0s, margin 0.4s 0s; }
.card-style04:hover .card-image .card-icons .card-icon:nth-child(2) { transition: all 0.4s, opacity 0.3s 0.1s, margin 0.4s 0.1s; margin-bottom: -15%; margin-left: 50%; }
.card-style04:hover .card-image .card-icons .card-icon:nth-child(3) { transition: all 0.4s, opacity 0.3s 0.2s, margin 0.4s 0.2s; margin-bottom: 16%; margin-left: 50%; }
.card-style04:hover .card-image .card-icons .card-icon:nth-child(4) { transition: all 0.4s, opacity 0.3s 0.3s, margin 0.4s 0.3s; margin-bottom: 42%; margin-left: 30%; }
.card-style04 .card-icons .card-icon:not(:first-child) { opacity: 0; }
.card-style04 .card-icons .card-icon:nth-last-child(1) { transition: all 0.4s, opacity 0.3s 0s, margin 0.4s 0s; }
.card-style04 .card-icons .card-icon:nth-last-child(2) { transition: all 0.4s, opacity 0.3s 0.1s, margin 0.4s 0.1s; }
.card-style04 .card-icons .card-icon:nth-last-child(3) { transition: all 0.4s, opacity 0.3s 0.2s, margin 0.4s 0.2s; }
.card-style04 .card-icons .card-icon:nth-last-child(4) { transition: all 0.4s, opacity 0.3s 0.3s, margin 0.4s 0.3s; }

/* Text */
.card-style04 h3, .card-style04 h4 { font-size: 1.05rem; font-weight: 700; color: #1e3e55; margin-bottom: 0; }
.card-style04 h3 a, .card-style04 h4 a { color: inherit; text-decoration: none; }
.card-style04 h3 a:hover, .card-style04 h4 a:hover { color: #d8973d; }
.card-style04 p { color: #555; font-size: 1rem; line-height: 1.75; }

/* Utilities used by card-style04 */
.pb-1-9 { padding-bottom: 1.9rem; }
.position-relative { position: relative; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.rounded-circle { border-radius: 50% !important; display: block; width: 100%; height: auto; }

/* Initials fallback (quand pas de photo) */
.team-initials-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #1e3e55;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-initials-img__text {
    font-family: var(--ic-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
}

/* Responsive */
@media screen and (max-width: 1199px) {
    .card-style04 { padding: 30px 25px; }
}
@media (max-width: 992px) {
    .team-clavis-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .team-clavis-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog Preview
   ========================================================================== */

/* Grille homepage (3 cards, sans sidebar) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ic-gap);
    margin-bottom: 50px;
}

/* Grille page blog/archive (avec sidebar → 2 colonnes) */
.blog-main .blog-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Card ── */
.blog-card {
    background: var(--ic-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: var(--ic-transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* ── Image ── */
.blog-card__image {
    height: 240px;
    background: linear-gradient(135deg, var(--ic-dark) 0%, var(--ic-navy) 100%);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.blog-card__image a {
    display: block;
    height: 100%;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ic-transition);
}

.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ic-dark) 0%, var(--ic-navy) 100%);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

/* ── Badge date (style Clavis — carré orange bas-droite) ── */
.blog-card__date-badge {
    position: absolute;
    bottom: 0;
    right: 24px;
    background: var(--ic-orange);
    color: var(--ic-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 62px;
    padding: 8px 0 10px;
    text-align: center;
    line-height: 1;
}

.blog-card__date-day {
    font-family: var(--ic-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.blog-card__date-month {
    font-family: var(--ic-font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

/* ── Contenu ── */
.blog-card__content {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Catégorie au-dessus du titre (texte, style Clavis) */
.blog-card__category {
    font-family: var(--ic-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ic-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.45;
    flex: 1;
}

.blog-card__title a {
    color: var(--ic-navy);
}

.blog-card__title a:hover {
    color: var(--ic-orange);
}

/* Meta auteur + commentaires */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--ic-off-white);
    margin-top: auto;
}

.blog-card__author,
.blog-card__comments {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--ic-gray);
}

.blog-card__author svg,
.blog-card__comments svg {
    color: var(--ic-orange);
    flex-shrink: 0;
}

/* Conservé pour la homepage (blog-preview) */
.blog-card__excerpt {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin-bottom: 15px;
}

.blog-card__link {
    font-family: var(--ic-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ic-orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link:hover {
    gap: 12px;
}

.blog-preview__more {
    text-align: center;
}

.blog-preview__empty {
    text-align: center;
    color: var(--ic-gray);
}

/* ==========================================================================
   Section Split — Contact (gauche) + Témoignages (droite)
   ========================================================================== */

.section--split {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    background-image: url('assets/images/video-bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100%;
    overflow-x: hidden;
}

/* ---- Gauche : overlay blanc sur photo ---- */
.split__left {
    background: rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.split__left-inner {
    width: 100%;
    max-width: 580px;
    min-width: 0;
    padding: 100px 60px 100px 40px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.split__left-title {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: var(--ic-navy);
    margin-bottom: 10px;
}

.split__left-desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin-bottom: 24px;
    text-align: justify;
}

.split__contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.split__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--ic-gray);
    overflow: hidden;
}
.split__contact-item span,
.split__contact-item a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.split__contact-item svg {
    color: var(--ic-orange);
    flex-shrink: 0;
}

.split__contact-item a {
    color: var(--ic-gray);
    text-decoration: none;
}

.split__contact-item a:hover {
    color: var(--ic-orange);
}

/* ---- Droite : navy ---- */
/* ---- Droite : overlay navy sur photo ---- */
.split__right {
    background: rgba(27, 33, 57, 0.82);
    display: flex;
    justify-content: flex-start;
    min-width: 0;
}

.split__right-inner {
    width: 100%;
    max-width: 580px;
    min-width: 0;
    padding: 100px 40px 100px 60px;
    overflow: hidden;
}

.split__right-title {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--ic-white);
    line-height: 1.15;
    margin-bottom: 40px;
}

.split__right-title-accent {
    color: var(--ic-orange);
}

.split__right .section-tag {
    color: var(--ic-orange);
}

/* Slider dans la colonne droite */
.split__testi .testimonials-track-wrap {
    overflow: hidden;
}

/* Quote — texte directement sur le fond navy */
.split__testi-quote {
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin: 0 0 32px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--ic-orange);
}

/* Rangée auteur */
.split__testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Photo ou initiales */
.split__testi-photo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--ic-orange);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ic-font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ic-white);
}

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

.split__testi-info {
    flex: 1;
    min-width: 0;
}

.split__testi-name {
    display: block;
    font-family: var(--ic-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ic-white);
    margin-bottom: 2px;
}

.split__testi-role {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Navigation ◀ ▶ alignée à droite */
.split__testi-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 28px;
}

.split__right .testimonials-arrow {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--ic-white);
    width: 42px;
    height: 42px;
    box-shadow: none;
}

.split__right .testimonials-arrow:hover {
    background: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
}

/* Formulaire */
.contact__form .form-group {
    margin-bottom: 18px;
    min-width: 0; /* empêche le grid blowout */
}

.contact__form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact__form label {
    display: block;
    font-family: var(--ic-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ic-dark);
    margin-bottom: 7px;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    min-width: 0; /* empêche l'overflow dans les grilles */
    padding: 14px 16px;
    border: 1px solid var(--ic-light-gray);
    border-radius: var(--ic-radius);
    font-family: var(--ic-font-body);
    font-size: 0.95rem;
    color: var(--ic-dark);
    transition: var(--ic-transition);
    background: var(--ic-white);
    min-height: 52px;
}

.contact__form select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B2139' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--ic-orange);
    box-shadow: 0 0 0 3px rgba(230, 120, 67, 0.1);
}

.contact__form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact__form .btn {
    width: 100%;
    justify-content: center;
}

/* Feedback temps réel — états valid / invalid */
.contact__form .form-group {
    position: relative;
}

.contact__form .form-group::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

/* Icône verte ✓ */
.contact__form .form-group.field--valid::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2322c55e'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    transform: translateY(-50%) scale(1);
}

/* Icône rouge ✗ */
.contact__form .form-group.field--invalid::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ef4444'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Cpath d='M7 7l6 6M13 7l-6 6' stroke='white' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
    transform: translateY(-50%) scale(1);
}

/* Bordures colorées */
.contact__form .form-group.field--valid input,
.contact__form .form-group.field--valid select,
.contact__form .form-group.field--valid textarea {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.contact__form .form-group.field--invalid input,
.contact__form .form-group.field--invalid select,
.contact__form .form-group.field--invalid textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Icône décalée sur textarea (en haut à droite) */
.contact__form .form-group:has(textarea)::after {
    top: 20px;
    transform: translateY(0) scale(0);
}
.contact__form .form-group.field--valid:has(textarea)::after,
.contact__form .form-group.field--invalid:has(textarea)::after {
    transform: translateY(0) scale(1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--ic-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    margin-right: 4px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--ic-transition);
}

.footer-social a:hover {
    background: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--ic-white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--ic-transition);
}

.footer-col ul li a:hover {
    color: var(--ic-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact li svg {
    width: 16px;
    height: 16px;
    color: var(--ic-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact__member {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--ic-orange);
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom__links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* ==========================================================================
   Blog / Archive
   ========================================================================== */

.page-header {
    background: var(--ic-navy) url('assets/images/page-title.jpg') center center / cover no-repeat;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 62, 85, 0.82);
}

.page-header .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.page-header .breadcrumb {
    order: -1;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
}

.page-header .breadcrumb a:hover {
    color: var(--ic-orange);
}

.page-header .breadcrumb span[aria-hidden] {
    color: rgba(255, 255, 255, 0.3);
}

.page-header h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--ic-white);
    margin: 0;
    line-height: 1.2;
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* ── Variante XL — style Clavis (~381px hauteur totale) ── */
.page-header--xl {
    padding: 100px 0 40px;
    min-height: 381px;
    display: flex;
    align-items: center;
}

.page-header--xl .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Titre grande taille uppercase — identique au style Clavis */
.page-header--xl h1 {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1;
    color: var(--ic-white);
    text-align: center;
}

/* Breadcrumb SOUS le titre */
.page-header--xl .breadcrumb {
    order: 1;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    gap: 14px;
}

.page-header--xl .breadcrumb a {
    color: var(--ic-white);
    font-weight: 500;
}

.page-header--xl .breadcrumb a:hover {
    color: var(--ic-orange);
}

.page-header--xl .breadcrumb span[aria-hidden] {
    color: var(--ic-orange);
    font-weight: 700;
}

/* Masquer section-tag et paragraphe dans le header--xl */
.page-header--xl .section-tag,
.page-header--xl > .container > p,
.page-header--xl .highlight {
    display: none;
}

/* ==========================================================================
   Page Équipe — Team Grid (style Clavis)
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ── Carte ── */
.team-card {
    background: var(--ic-white);
    border-radius: 12px;
    padding: 40px 24px 32px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(27, 33, 57, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    transition-delay: calc(var(--i, 0) * 0.08s);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 33, 57, 0.12);
    border-color: rgba(230, 120, 67, 0.25);
}

/* ── Figure : photo + socials superposés ── */
.team-card__figure {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

/* ── Cercle photo ── */
.team-card__circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ic-navy) 0%, #2d3a5e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid transparent;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover .team-card__circle {
    border-color: var(--ic-orange);
    box-shadow: 0 0 0 4px rgba(230, 120, 67, 0.15);
}

.team-card__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__circle img {
    transform: scale(1.06);
}

.team-card__initials {
    font-family: var(--ic-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ic-white);
    letter-spacing: -0.02em;
}

/* ── Socials : + bouton + icônes ── */
/*
 * Zone socials — même taille que le cercle (190×190) pour positionnement arc
 * Cercle : rayon 95px, centre (95,95)
 * Positions calculées : icon-center = (95 + 95*sin θ, 95 - 95*cos θ), icon-top-left = center - 17
 */
.team-card__socials {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* + bouton — 5h (150°) : bas-droite du cercle
 * center ≈ (143, 177) → left:126px; bottom:-4px  */
.team-card__plus {
    position: absolute;
    left: 126px;
    bottom: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ic-navy);
    color: var(--ic-white);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.35s ease;
    pointer-events: all;
    z-index: 3;
}

.team-card:hover .team-card__plus {
    background: var(--ic-orange);
    transform: rotate(45deg);
}

/* Base icônes sociales — cachées, scale 0 en leur position fixe */
.team-card__social {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--ic-white);
    text-decoration: none;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s ease,
                transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 2;
}

/* LinkedIn — 11h (330°) : center ≈ (48, 13) → left:31px; top:-4px */
.team-card__social--linkedin {
    background: #0A66C2;
    left: 31px;
    top: -4px;
}

/* Instagram — 1h (30°) : center ≈ (143, 13) → left:126px; top:-4px */
.team-card__social--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    left: 126px;
    top: -4px;
}

/* Facebook — 3h (90°) : center ≈ (190, 95) → right:-17px; top:78px */
.team-card__social--facebook {
    background: #1877F2;
    right: -17px;
    top: 78px;
}

/* X/Twitter — 7h (210°) : center ≈ (48, 177) → left:31px; bottom:-4px */
.team-card__social--twitter {
    background: #000;
    left: 31px;
    bottom: -4px;
}

/* Apparition au hover — cascade LinkedIn→Instagram→Facebook→X */
.team-card:hover .team-card__social {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.team-card:hover .team-card__social--linkedin  { transition-delay: 0.00s; }
.team-card:hover .team-card__social--instagram { transition-delay: 0.07s; }
.team-card:hover .team-card__social--facebook  { transition-delay: 0.14s; }
.team-card:hover .team-card__social--twitter   { transition-delay: 0.21s; }

/* ── Corps texte ── */
.team-card__body {
    padding-top: 4px;
}

.team-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.team-card__role {
    font-size: 0.875rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Card de contenu — style Clavis ── */
.page-content-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--ic-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 64px 72px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.page-content-card h2 {
    font-size: 1.35rem;
    color: var(--ic-navy);
    margin-top: 44px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ic-orange);
    line-height: 1.3;
}

.page-content-card h2:first-child {
    margin-top: 0;
}

.page-content-card h3 {
    font-size: 1.05rem;
    color: var(--ic-navy);
    margin-top: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-content-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--ic-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.page-content-card p {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin-bottom: 16px;
}

.page-content-card ul,
.page-content-card ol {
    margin: 12px 0 20px 20px;
    list-style: disc;
}

.page-content-card ol {
    list-style: decimal;
}

.page-content-card li {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* ── Page Références ──────────────────────────────────────── */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    margin-bottom: 48px;
}

.ref-card {
    background: var(--ic-white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(27, 33, 57, 0.07);
    border: 1px solid rgba(27, 33, 57, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(27, 33, 57, 0.12);
}

.ref-card__number {
    display: inline-block;
    font-family: var(--ic-font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ic-orange);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ic-orange);
    width: 100%;
    line-height: 1;
}

.ref-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ref-card__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0;
}

/* Note confidentialité */
.ref-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--ic-off-white);
    border-left: 3px solid var(--ic-orange);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-bottom: 48px;
    color: var(--ic-gray);
    font-size: 0.875rem;
    line-height: 1.65;
}

.ref-note svg {
    flex-shrink: 0;
    color: var(--ic-orange);
    margin-top: 2px;
}

.ref-note p { margin: 0; }

.ref-cta {
    text-align: center;
}

/* ── Page services listing ──────────────────────────────────── */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.services-page-card {
    background: var(--ic-white);
    border: 1px solid var(--ic-light-gray);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    gap: 20px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-page-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.services-page-card__num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--ic-light-gray);
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

.services-page-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin: 0 0 10px;
}

.services-page-card__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0 0 16px;
}

.services-page-card__services-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ic-orange);
    margin: 0 0 10px;
}

.services-page-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-page-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 1rem;
    color: var(--ic-gray);
}

.services-page-card__list li svg {
    color: var(--ic-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }
    .services-page-card {
        flex-direction: column;
        gap: 12px;
    }
}

/* ── Page service individuelle ─────────────────────────────── */
.service-page {
    max-width: 860px;
    margin: 0 auto;
}

.service-page__intro {
    margin-bottom: 56px;
}

.service-page__cover {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16/6;
}

.service-page__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page__desc p {
    font-size: 1.05rem;
    color: var(--ic-gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-page__prestations {
    background: var(--ic-off-white);
    border-radius: 16px;
    padding: 40px 48px;
    margin-bottom: 48px;
}

.service-page__prestations-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin-bottom: 24px;
}

.service-page__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-page__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--ic-gray);
    line-height: 1.6;
}

.service-page__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--ic-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.service-page__check svg {
    color: var(--ic-white);
}

.service-page__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Blog layout ───────────────────────────────────────────── */
.blog-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.blog-content--full {
    grid-template-columns: 1fr;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.pagination .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--ic-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ic-dark);
    background: var(--ic-off-white);
    transition: var(--ic-transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--ic-orange);
    color: var(--ic-white);
}

/* ==========================================================================
   Single Post
   ========================================================================== */

.single-post__header {
    background: var(--ic-navy) url('assets/images/page-title.jpg') center center / cover no-repeat;
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
}

.single-post__header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 62, 85, 0.82);
}

.single-post__header .container {
    position: relative;
    z-index: 1;
}

.single-post__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.single-post__meta li:not(:last-child)::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: var(--ic-orange);
    width: 10px;
    height: 2px;
    margin: 0 14px;
}

.single-post__meta a {
    color: var(--ic-orange);
}

.single-post__title {
    color: var(--ic-white);
    max-width: 860px;
    margin: 0 auto 10px;
    font-family: var(--ic-font-heading);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.single-post__thumbnail {
    max-width: 800px;
    margin: 48px auto 0;
    overflow: hidden;
    border-radius: 16px;
}

.single-post__thumb-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.single-post__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.single-post__content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.single-post__content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.single-post__content h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.single-post__content ul,
.single-post__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.single-post__content ul {
    list-style: disc;
}

.single-post__content ol {
    list-style: decimal;
}

.single-post__content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.single-post__content blockquote {
    border-left: 4px solid var(--ic-orange);
    padding: 20px 30px;
    margin: 2rem 0;
    background: var(--ic-off-white);
    border-radius: 0 var(--ic-radius) var(--ic-radius) 0;
    font-style: italic;
    color: var(--ic-purple-gray);
}

.single-post__content img {
    border-radius: var(--ic-radius);
    margin: 2rem 0;
}

.single-post__tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--ic-light-gray);
}

.single-post__tags a {
    display: inline-block;
    background: var(--ic-off-white);
    color: var(--ic-dark);
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin: 4px;
    transition: var(--ic-transition);
}

.single-post__tags a:hover {
    background: var(--ic-orange);
    color: var(--ic-white);
}

/* Post navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.post-navigation a {
    display: block;
    padding: 25px;
    background: var(--ic-off-white);
    border-radius: var(--ic-radius);
    transition: var(--ic-transition);
    color: var(--ic-dark);
}

.post-navigation a:hover {
    background: var(--ic-orange);
    color: var(--ic-white);
}

.post-navigation__label {
    font-size: 0.8rem;
    color: var(--ic-gray);
    margin-bottom: 8px;
}

.post-navigation a:hover .post-navigation__label {
    color: rgba(255, 255, 255, 0.7);
}

.post-navigation__title {
    font-family: var(--ic-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   Single Post — Layout 2 colonnes style Clavis
   ========================================================================== */

.single-post-section {
    padding: 80px 0 100px;
    background: #f6f6f6;
}

/* Grille 8/4 — fidèle Clavis col-lg-8 / col-lg-4 */
.single-post__layout {
    display: grid;
    grid-template-columns: 1fr 370px;
    gap: 40px;
    align-items: start;
}

/* ── Article card — primary-shadow, border-0 ── */
.single-post__card {
    background: var(--ic-white);
    border: none;
    border-radius: 6px;
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.single-post__card-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px 6px 0 0;
}

.single-post__card-body {
    padding: 36px 40px;
}

/* ── Entry meta (style Clavis) ── */
.single-post__entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #575a7b;
}

.single-post__entry-meta li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.single-post__entry-meta li svg {
    color: var(--ic-orange);
    flex-shrink: 0;
}

.single-post__entry-meta a {
    color: #575a7b;
    transition: color 0.2s;
}

.single-post__entry-meta a:hover { color: var(--ic-orange); }

/* ── Contenu article ── */
.page-content p,
.single-post__content p {
    font-size: 1rem;
    line-height: 1.85;
    color: #575a7b;
    margin-bottom: 1.2rem;
}

.page-content p:last-child,
.single-post__content p:last-child { margin-bottom: 0; }

.page-content h2, .single-post__content h2 { margin: 2.2rem 0 0.9rem; }
.page-content h3, .single-post__content h3 { margin: 1.8rem 0 0.7rem; }

.page-content ul, .page-content ol,
.single-post__content ul, .single-post__content ol {
    margin-bottom: 1.4rem;
    padding-left: 1.5rem;
}

.page-content ul, .single-post__content ul  { list-style: disc; }
.page-content ol, .single-post__content ol  { list-style: decimal; }
.page-content li, .single-post__content li  { margin-bottom: 0.4rem; line-height: 1.8; }

.page-content blockquote,
.single-post__content blockquote {
    position: relative;
    background: var(--ic-navy);
    color: var(--ic-white);
    border-radius: 10px;
    padding: 28px 32px;
    margin: 2rem 0;
    font-style: italic;
}

.page-content blockquote p,
.single-post__content blockquote p { color: var(--ic-white); margin-bottom: 0; }

.page-content img, .single-post__content img {
    border-radius: 6px;
    margin: 1.5rem 0;
    max-width: 100%;
}

/* ── Entry footer : Tags + Share ── */
.single-post__entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 40px;
    border-top: 1px solid #efefef;
}

.single-post__tags-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.single-post__tags-label,
.single-post__share-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ic-dark);
}

.single-post__tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--ic-orange);
    color: var(--ic-white);
    border: 1px solid var(--ic-orange);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    transition: background 0.25s, color 0.25s;
}

.single-post__tag:hover {
    background: var(--ic-white);
    color: var(--ic-orange);
}

.single-post__share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-post__share-list {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post__share-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: var(--ic-white);
    color: #575a7b;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.single-post__share-list a:hover {
    background: var(--ic-orange);
    border-color: var(--ic-orange);
    color: var(--ic-white);
}

/* ── Navigation prev/next — CSS copié de design/styles.css (Clavis) ── */
.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
    border-radius: 6px;
}

.prev-page,
.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}

.prev-page::before,
.next-page::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(255,255,255,0);
    box-shadow: 0 0 0 0 rgba(34,35,40,0);
    transform: scale(1.04, 1.12);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}

.prev-page:hover::before,
.next-page:hover::before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34,35,40,0.1);
}

.prev-page .page-info > a,
.next-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s;
    color: inherit;
}

.prev-page a { justify-content: flex-start; text-align: left; }
.next-page a { justify-content: flex-end; text-align: right; }

.image-prev,
.image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    border-radius: 4px;
    overflow: hidden;
}

.image-prev img,
.image-next img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    display: block;
}

.image-prev { margin-right: 20px; }
.image-next { margin-left: 20px; }

.prev-title,
.next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
    margin: 0;
    color: #1e3e55;
}

.next-title { text-align: right; }

.prev-link-page-info > span,
.next-link-page-info > span { display: block; }

.prev-link-page-info .date-details,
.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 20px;
    margin-bottom: -2px;
}

.prev-link-page-info .date-details > span,
.next-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
    color: #6c757d;
}

@media (max-width: 767px) {
    .prev-page, .next-page { width: calc(100% - 20px); max-width: unset; }
    .page-navigation { flex-direction: column; align-items: stretch; }
}

@media (max-width: 575px) {
    .prev-page .page-info > a,
    .next-page .page-info > a { padding: 10px; }
    .prev-title, .next-title { max-width: 168px; }
}

/* ── Sidebar ── */
.single-post__sidebar-col {
    position: sticky;
    top: 100px;
}

.single-post__sidebar-col .sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ── Comments (WP default + Clavis style) ── */
.comments-area {
    background: var(--ic-white);
    border-radius: 6px;
    box-shadow: 0px 3px 10px 0px rgba(41,45,194,0.08);
    padding: 36px 40px;
    margin-bottom: 30px;
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.comment-list > li {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #efefef;
}

.comment-list > li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* ── Comment form — style Clavis ── */
.comment-respond {
    padding-top: 2rem;
}

.comment-reply-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin-bottom: 1.5rem;
}

.comment-reply-title small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 4px;
}

/* Form group */
.form-group {
    margin-bottom: 1rem;
}

/* Form control — inputs & textarea */
.conatct-post-form .form-control {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ic-dark);
    background-color: var(--ic-white);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.conatct-post-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.conatct-post-form .form-control:focus {
    outline: none;
    border-color: var(--ic-orange);
    box-shadow: 0 0 0 0.2rem rgba(216, 151, 61, 0.15);
}

/* 2-column row for name + email */
.sp-comment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Cookie consent */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #575a7b;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--ic-orange);
}

/* Submit button */
.comment-respond .form-submit {
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: var(--ic-white);
    background: var(--ic-orange);
    border-radius: 0.25rem;
    margin-top: 0;
    margin-bottom: 0;
    transition: background 0.4s ease;
}

.comment-respond .form-submit:hover,
.comment-respond .form-submit:focus {
    background: var(--ic-navy);
}

.comment-respond .form-submit input.submit {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    color: var(--ic-white);
    background: none;
    border: none;
    border-radius: 0.25rem;
    position: relative;
    letter-spacing: 0.05em;
}

@media (max-width: 600px) {
    .sp-comment-row {
        grid-template-columns: 1fr;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .single-post__layout {
        grid-template-columns: 1fr;
    }

    .single-post__sidebar-col { position: static; }

    .single-post__card-body,
    .single-post__entry-footer { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 640px) {
    .next-title { text-align: left; }

    .single-post__card-body,
    .single-post__entry-footer { padding-left: 18px; padding-right: 18px; }

    .single-post__entry-footer { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   WordPress Core Classes
   ========================================================================== */

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--ic-gray);
    text-align: center;
    padding: 8px 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--ic-off-white);
    clip: auto !important;
    clip-path: none;
    color: var(--ic-dark);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Admin bar fix */
body.admin-bar .site-header {
    top: 32px;
}

body.admin-bar #ic-reading-bar {
    top: 32px;
}

/* ==========================================================================
   WPForms Override
   ========================================================================== */

.wpforms-container .wpforms-form input[type="text"],
.wpforms-container .wpforms-form input[type="email"],
.wpforms-container .wpforms-form input[type="tel"],
.wpforms-container .wpforms-form textarea,
.wpforms-container .wpforms-form select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border: 1px solid var(--ic-light-gray) !important;
    border-radius: var(--ic-radius) !important;
    padding: 14px 16px !important;
    font-family: var(--ic-font-body) !important;
    font-size: 0.95rem !important;
    min-height: 54px !important;
    box-sizing: border-box !important;
}

.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form textarea:focus,
.wpforms-container .wpforms-form select:focus {
    border-color: var(--ic-orange) !important;
    box-shadow: 0 0 0 3px rgba(230, 120, 67, 0.1) !important;
}

.wpforms-container .wpforms-form .wpforms-submit {
    background-color: var(--ic-orange) !important;
    border-radius: 3px !important;
    font-family: var(--ic-font-heading) !important;
    font-weight: 700 !important;
    padding: 15px 34px !important;
    transition: var(--ic-transition) !important;
}

.wpforms-container .wpforms-form .wpforms-submit:hover {
    background-color: var(--ic-orange-bright) !important;
}

/* ==========================================================================
   Sidebar / Widgets — CSS copié de design/styles.css (Clavis)
   ========================================================================== */

/* Utilitaires Bootstrap scopés sidebar */
.blog-sidebar .d-flex         { display: flex; }
.blog-sidebar .d-block        { display: block; }
.blog-sidebar .d-inline-block { display: inline-block; }
.blog-sidebar .align-items-start { align-items: flex-start; }
.blog-sidebar .flex-shrink-0  { flex-shrink: 0; }
.blog-sidebar .flex-grow-1    { flex-grow: 1; min-width: 0; }
.blog-sidebar .me-2           { margin-right: 0.5rem; }
.blog-sidebar .me-3           { margin-right: 1rem; }
.blog-sidebar .mt-4           { margin-top: 1.5rem; }
.blog-sidebar .mb-0           { margin-bottom: 0; }
.blog-sidebar .mb-1           { margin-bottom: 0.25rem; }
.blog-sidebar .list-unstyled  { list-style: none; padding-left: 0; }
.blog-sidebar .align-top      { vertical-align: top; }
.blog-sidebar .float-end      { float: right; }
.blog-sidebar .rounded-0      { border-radius: 0; }
.blog-sidebar .h-100          { height: 100%; }
.blog-sidebar .border-none    { border: none; }
.blog-sidebar .py-2           { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.blog-sidebar .px-2-2         { padding-left: 0.6rem; padding-right: 0.6rem; }
.blog-sidebar .border-radius-3 { border-radius: 3px; }
.blog-sidebar .display-30     { font-size: 0.8rem; }
.blog-sidebar .font-weight-500 { font-weight: 500; }
.blog-sidebar .bg-primary     { background: #d8973d !important; }
.blog-sidebar .text-primary   { color: #d8973d !important; }
.blog-sidebar .text-white     { color: #fff !important; }
.blog-sidebar .text-muted     { color: rgba(255,255,255,0.8) !important; }
.blog-sidebar .h6             { color: #fff; }
.blog-sidebar .h6 a           { color: #fff; }
.blog-sidebar .h6 a:hover     { color: rgba(255,255,255,0.65); }

/* Widget — copié de design/styles.css : .sidebar .widget */
.blog-sidebar .widget {
    word-break: break-word;
    background-color: #1e3e55;
    color: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.01);
    position: relative;
    padding: 30px 25px;
    margin-bottom: 1.9rem;
    border-radius: 0.375rem;
}

@media screen and (max-width: 575px) { .blog-sidebar .widget { padding: 20px; } }

/* .widget-title — copié de design/styles.css */
.blog-sidebar .widget-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.blog-sidebar .widget ul { margin: 0; padding: 0; list-style: none; }

/* Search */
.blog-sidebar .input-group { display: flex; align-items: stretch; }

.blog-sidebar .form-control.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #212529;
    background: #fff;
    min-height: 46px;
}

.blog-sidebar .form-control.search-input::placeholder { color: #999; }
.blog-sidebar .input-group-append { display: flex; }
.blog-sidebar .bg-primary { cursor: pointer; transition: background 0.3s; }
.blog-sidebar .bg-primary:hover { background: #c86a30 !important; }

/* widget_news — copié de design/styles.css */
.blog-sidebar .widget_news h4 a { color: #fff; }
.blog-sidebar .widget_news h4 a:hover { color: rgba(255,255,255,0.65); }
.blog-sidebar .widget_news span { color: rgba(255,255,255,0.8) !important; }

/* recent-post — copié de design/styles.css : .recent-post>div:first-child a */
.blog-sidebar .recent-post > div:first-child a { display: inline-block; width: 80px; height: auto; }
.blog-sidebar .recent-post img { width: 80px; height: 80px; object-fit: cover; }
.blog-sidebar .sidebar-no-thumb { width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 3px; }

/* cat-item — copié de design/styles.css */
.blog-sidebar .cat-item {
    border-radius: 10px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border-top: 0;
    position: relative;
}
.blog-sidebar .cat-item:last-child { margin-bottom: 0; }
.blog-sidebar .cat-item a {
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: block;
    position: relative;
    z-index: 9;
    padding: 15px 20px 15px 20px;
    word-break: break-word;
    border-radius: 10px;
    overflow: hidden;
}
.blog-sidebar .cat-item a:hover,
.blog-sidebar .cat-item a:active,
.blog-sidebar .cat-item a:focus { color: #1e3e55; background: #fff; }

/* cat-count — copié de design/styles.css */
.blog-sidebar .cat-count { padding-left: 5px; float: right; }
.blog-sidebar .cat-name  { padding-right: 5px; }

/* tags — copié de design/styles.css : .tagcloud .wp-tag-cloud a */
.blog-sidebar .tagcloud .wp-tag-cloud {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.blog-sidebar .tagcloud .wp-tag-cloud li { display: inline-block; }
.blog-sidebar .tag-cloud-link {
    display: inline-block;
    font-size: 0.82rem !important;
    padding: 6px 16px;
    border-radius: 50px;
    border: none;
    color: #fff;
    background: #d8973d;
    transition: all 0.3s;
    text-transform: lowercase;
    font-weight: 500;
}
.blog-sidebar .tag-cloud-link:hover { background: #fff; color: #1e3e55; }

/* social-icon-style5 — copié de design/styles.css */
.blog-sidebar .social-icon-style5 li { display: inline-block; }
.blog-sidebar .social-icon-style5 li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
    color: #d8973d;
    background: #fff;
    height: 38px;
    line-height: 38px;
    width: 38px;
    border-radius: 3px;
    vertical-align: top;
    transition: all 0.3s;
}
.blog-sidebar .social-icon-style5 li a:hover,
.blog-sidebar .social-icon-style5 li a:active,
.blog-sidebar .social-icon-style5 li a:focus { color: #fff; background-color: #d8973d; }
.blog-sidebar .social-icon-style5 li:last-child { margin-right: 0; }

/* ── screen-reader-text ── */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   404
   ========================================================================== */

/* 404 full-page
   ========================================================================== */

.ic-404 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 80px 20px;
}

.ic-404__overlay {
    position: absolute;
    inset: 0;
    background: #1e3e55;
    opacity: 0.9;
    z-index: 1;
}

.ic-404__content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.ic-404__code {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 450px;
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0.027em;
    margin-bottom: 50px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    display: block;
}

.ic-404__body {
    max-width: 720px;
    margin: 0 auto;
}

.ic-404__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 54.4px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.ic-404__desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0 170.703px 30.4px;
}

.ic-404__btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--ic-orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--ic-orange);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.ic-404__btn:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* ==========================================================================
   Animations
   ========================================================================== */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── 01. Stagger : délai en cascade pour les grids ── */
.ic-expertise__item.reveal,
.ic-points__item.reveal,
.ic-approach__feature.reveal,
.carrieres__card.reveal,
.blog-card.reveal,
.value-card.reveal,
.ref-approach-card.reveal,
.ref-card.reveal {
    transition:
        opacity  0.55s ease calc(var(--i, 0) * 0.09s),
        transform 0.55s ease calc(var(--i, 0) * 0.09s);
}

/* Après apparition : retirer le délai pour que les hovers soient instantanés */
.ic-expertise__item.reveal.visible,
.ic-points__item.reveal.visible,
.ic-approach__feature.reveal.visible,
.carrieres__card.reveal.visible,
.blog-card.reveal.visible,
.value-card.reveal.visible,
.ref-approach-card.reveal.visible,
.ref-card.reveal.visible {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── 03. Ligne animée sous le section-tag ── */
.section-tag {
    position: relative;
    padding-bottom: 5px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--ic-orange);
    border-radius: 2px;
    transition: width 0.5s ease 0.25s;
}

.reveal.visible .section-tag::after {
    width: 100%;
}

/* Variante navy : ligne blanche/orange atténuée */
.ic-points .section-tag::after {
    background: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   Responsive - Nav ajustement (1199px)
   ========================================================================== */

@media (max-width: 1199px) {
    .main-navigation ul li a {
        font-size: 0.8125rem;
        padding: 22px 10px;
        letter-spacing: 1px;
    }

    .header-cta__btn {
        padding: 14px 22px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* ==========================================================================
   Responsive - Tablette (1024px)
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --ic-section-padding: 80px 0;
    }

    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-intro {
        position: static;
        padding: 40px 32px;
        border-radius: 16px;
    }

    .services-list {
        padding-left: 0;
        padding-top: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-intro__image {
        position: static;
    }

    /* Aspect-ratio géré globalement, plus besoin d'override mobile */

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-card:nth-child(4),
    .value-card:nth-child(5) {
        grid-column: auto;
    }

    .testimonials-slider {
        gap: 16px;
    }

    .testimonials-arrow {
        width: 44px;
        height: 44px;
    }

    .testimonial-card {
        gap: 32px;
        padding: 40px 40px 40px 36px;
    }

    .testimonial-card__photo {
        width: 120px;
        height: 120px;
        font-size: 1.8rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section--split {
        grid-template-columns: 1fr;
    }

    .split__left {
        justify-content: center;
    }

    .split__left-inner {
        max-width: 100%;
        padding: 80px 40px;
    }

    .split__right {
        justify-content: center;
    }

    .split__right-inner {
        max-width: 100%;
        padding: 80px 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-content {
        grid-template-columns: 1fr;
    }

    .services-list {
        padding-left: 32px;
    }


    .about__image-placeholder {
        height: 400px;
    }

    .about__image-accent {
        right: 12px;
    }

    .partners .container {
        gap: 32px;
    }

    /* Service page */
    .service-page__prestations {
        padding: 32px 36px;
    }

    /* Ref cards */
    .ref-card {
        padding: 28px 24px;
    }
}

/* ==========================================================================
   Responsive - Navigation mobile (991px)
   ========================================================================== */

@media (max-width: 991px) {
    /* Cacher le bouton CTA desktop sur mobile */
    .header-cta {
        display: none;
    }

    /* Ordre mobile : logo | ... | lang-switcher | hamburger (à l'extrême droite) */
    .site-logo       { order: 1; }
    .main-navigation { order: 2; }
    .lang-switcher   { order: 3; margin-left: auto; }
    .menu-toggle     { order: 4; margin-left: 10px; }
    .header-cta      { order: 5; }

    .lang-switcher__toggle {
        padding: 5px 8px;
    }

    /* Dropdown s'ouvre vers la droite pour ne pas déborder */
    .lang-switcher__dropdown {
        right: 0;
        left: auto;
    }

    .menu-toggle {
        display: flex;
    }

    /* Nav devient un dropdown blanc sous le header */
    .main-navigation {
        flex: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--ic-white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        display: none;
        z-index: 999;
        justify-content: flex-start;
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-navigation ul li {
        width: 100%;
        border-top: 1px solid #ebebeb;
        text-align: left;
        display: block;
    }

    /* Réafficher les menu-cta dans le menu mobile */
    .main-navigation ul li.menu-cta {
        display: block;
    }

    .main-navigation ul li a {
        display: block;
        padding: 15px 24px;
        color: var(--ic-navy);
        font-size: 0.9375rem;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 0;
    }

    .main-navigation ul li a:hover,
    .main-navigation ul li.current-menu-item a,
    .main-navigation ul li.current_page_item a {
        color: var(--ic-orange);
        background-color: transparent;
    }

    .main-navigation ul li.menu-cta a {
        color: var(--ic-orange);
        font-weight: 700;
    }

    /* Sub-menus */
    .main-navigation ul ul {
        display: none;
        width: 100%;
        background: var(--ic-off-white);
        box-shadow: none;
    }

    .main-navigation ul ul li a {
        padding: 10px 35px 10px 30px;
        font-size: 0.875rem;
    }

    .main-navigation ul li:hover > ul {
        display: block;
    }

    /* Bars toujours blanches (bg orange du toggler) */
    .menu-toggle .toggler-bar {
        background-color: #fff;
    }

    /* Fix : sur mobile, le menu ouvert a toujours fond blanc → liens navy obligatoires */
    .site-header.transparent-header .main-navigation ul li a {
        color: var(--ic-navy);
    }

    .site-header.transparent-header .main-navigation ul li a:hover,
    .site-header.transparent-header .main-navigation ul li.current-menu-item a,
    .site-header.transparent-header .main-navigation ul li.current_page_item a {
        color: var(--ic-orange);
    }

    /* Drawer full-width sur tablette */
    .contact-drawer__panel {
        width: 100%;
        max-width: 480px;
    }

    /* Sous-menu mobile : plat, pas de dropdown */
    .main-navigation ul .sub-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: var(--ic-off-white);
        padding: 4px 0 4px 16px;
        display: none;
    }

    .main-navigation ul li.menu-item-has-children.open > .sub-menu {
        display: flex;
    }

    .main-navigation ul li.menu-item-has-children > a::after {
        border-color: var(--ic-navy);
    }
}

/* ==========================================================================
   Contact Drawer (slide-from-right)
   ========================================================================== */

.contact-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.contact-drawer:not([hidden]) {
    pointer-events: all;
}

/* Overlay sombre */
.contact-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 33, 57, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-drawer.is-open .contact-drawer__overlay {
    opacity: 1;
}

/* Panel */
.contact-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(480px, 100vw);
    background: var(--ic-white);
    box-shadow: -8px 0 48px rgba(27, 33, 57, 0.18);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-drawer.is-open .contact-drawer__panel {
    transform: translateX(0);
}

/* Header */
.contact-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--ic-light-gray);
    flex-shrink: 0;
}

.contact-drawer__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ic-navy);
    margin: 6px 0 0;
    line-height: 1.2;
}

.contact-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ic-off-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ic-navy);
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 4px;
}

.contact-drawer__close:hover {
    background: var(--ic-orange);
    color: var(--ic-white);
}

/* Body scrollable */
.contact-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px 40px;
    overscroll-behavior: contain;
}

.contact-drawer__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    margin-bottom: 24px;
    line-height: 1.75;
}

/* Formulaire dans le drawer */
.contact-drawer__form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-drawer__form .form-group {
    margin-bottom: 14px;
    min-width: 0;
}

.contact-drawer__form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */

/* ==========================================================================
   Barre de progression de lecture
   ========================================================================== */
#ic-reading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--ic-orange);
    z-index: 10000;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ==========================================================================
   Curseur personnalisé
   ========================================================================== */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, [role="button"], input, select, textarea, label, .btn {
        cursor: none;
    }
}

#ic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, opacity 0.3s ease;
    mix-blend-mode: normal;
    display: none;
}

@media (pointer: fine) {
    #ic-cursor { display: block; }
}

.ic-cursor__ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--ic-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.ic-cursor__dot {
    width: 6px;
    height: 6px;
    background: var(--ic-orange);
    border-radius: 50%;
    transition: transform 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
}

/* État hover (sur éléments cliquables) */
#ic-cursor.is-hover .ic-cursor__ring {
    width: 52px;
    height: 52px;
    background: rgba(230, 120, 67, 0.1);
    border-color: var(--ic-orange);
}
#ic-cursor.is-hover .ic-cursor__dot {
    transform: scale(0);
}

/* État click */
#ic-cursor.is-clicking .ic-cursor__ring {
    transform: scale(0.85);
    background: rgba(230, 120, 67, 0.2);
}

/* ==========================================================================
   Back-to-top — style Clavis exact
   Le bouton = ring (conic-gradient via JS), __inner = cercle navy centré
   ========================================================================== */
/* Scroll to Top — CSS exact design/styles.css (Clavis) */
.scroll-top-percentage {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 40px;
    color: #fff;
    right: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -ms-grid;
    display: grid;
    place-items: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}

.scroll-top-percentage.active {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#scroll-value {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 600;
    background: rgb(30, 62, 85);
    color: #fff;
}

@-webkit-keyframes scrollToTop {
    0%   { -webkit-transform: translate3d(0, 80%, 0); transform: translate3d(0, 80%, 0); visibility: visible; }
    to   { -webkit-transform: translateZ(0); transform: translateZ(0); }
}
@keyframes scrollToTop {
    0%   { -webkit-transform: translate3d(0, 80%, 0); transform: translate3d(0, 80%, 0); visibility: visible; }
    to   { -webkit-transform: translateZ(0); transform: translateZ(0); }
}

@media screen and (max-width: 1199px) {
    .scroll-top-percentage { right: 30px; bottom: 20px; }
}

/* ==========================================================================
   Responsive - Mobile (768px)
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --ic-section-padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }


    .vm-card {
        padding: 32px 28px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__cta {
        padding: 16px 32px;
        font-size: 0.8125rem;
    }

    .services-item__content {
        padding-bottom: 24px;
    }

    /* Lien toujours visible sur mobile (pas de hover) */
    .services-item__link {
        opacity: 1;
        transform: none;
    }

    .services-item {
        margin-right: 0;
        padding-right: 0;
    }


    .testimonials-slider {
        gap: 0;
    }

    .testimonials-arrow {
        display: none;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 28px;
        padding: 40px 24px 36px;
    }

    .testimonial-card__photo {
        width: 100px;
        height: 100px;
        font-size: 1.6rem;
    }

    .testimonial-card__mark {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .testimonial-card__author {
        align-items: center;
    }

    .testimonials-dots {
        margin-top: 24px;
    }

    .blog-grid,
    .blog-main .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .partners .container {
        flex-direction: column;
        text-align: center;
    }

    .split__left-inner,
    .split__right-inner {
        padding: 60px 24px;
    }

    .split__testi-quote {
        font-size: 0.9rem;
    }

    .split__testi-nav {
        justify-content: flex-end;
    }

    .contact__form .form-row,
    .contact-drawer__form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-content-card {
        padding: 40px 28px;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header--xl {
        padding: 90px 0 36px;
        min-height: 300px;
    }

    .page-header--xl h1 {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }

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

    .team-card__circle {
        width: 160px;
        height: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    /* Single article */
    .single-post__header {
        padding: 80px 0 24px;
    }

    .single-post__title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .single-post__content {
        padding: 32px 20px;
    }

    .single-post__thumbnail {
        margin-top: 24px;
        border-radius: 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    body.admin-bar #ic-reading-bar {
        top: 46px;
    }

    /* Services — retirer le padding-left de la liste */
    .services-list {
        padding-left: 0;
    }

    .services-intro {
        padding: 36px 28px;
    }

    /* About — image plus courte, accent sans débordement */
    .about__image-placeholder {
        height: 260px;
    }

    .about__image-accent {
        right: 10px;
        padding: 14px 18px;
    }

    .about__image-accent strong {
        font-size: 1.65rem;
    }

    /* Partners — gap réduit après empilage vertical */
    .partners .container {
        gap: 20px;
    }

    /* Footer social — permettre le retour à la ligne */
    .footer-social {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-bottom__links {
        gap: 8px;
    }

    /* Split section — désactiver background-attachment:fixed (bug iOS) */
    .section--split {
        background-attachment: scroll;
    }

    .split__left-inner {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    /* Team card — icônes arc recalculées pour cercle 160px (R=80) */
    /* + à 5h (150°) : left:103; — Twitter à 7h (210°) : left:23 */
    .team-card__plus {
        left: 103px;
        bottom: -6px;
    }
    .team-card__social--linkedin  { left: 23px;  top: -6px; }
    .team-card__social--instagram { left: 103px; top: -6px; }
    .team-card__social--facebook  { right: -17px; top: 63px; }
    .team-card__social--twitter   { left: 23px; bottom: -6px; }

    /* Team card body */
    .team-card {
        padding: 32px 16px 24px;
    }

    /* Service page */
    .service-page__prestations {
        padding: 28px 24px;
    }
    .service-page__cta {
        flex-direction: column;
        align-items: stretch;
    }
    .service-page__cta .btn {
        text-align: center;
        justify-content: center;
    }

    /* Références */
    .ref-card {
        padding: 28px 20px;
    }

    /* Error 404 */
    .ic-404__code {
        font-size: 28vw;
    }
    .ic-404__title {
        font-size: 38px;
    }

    .contact-drawer__panel {
        width: 100%;
        max-width: 100%;
    }
    .contact-drawer__header,
    .contact-drawer__body {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Hero stats */
    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    .hero__stat {
        min-width: 120px;
    }

    /* Footer brand */
    .footer-brand p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Responsive - Petits mobiles (480px)
   ========================================================================== */

@media (max-width: 480px) {
    :root {
        --ic-section-padding: 52px 0;
    }

    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.35rem; }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-card__circle {
        width: 140px;
        height: 140px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 36px;
    }

    .hero__title {
        font-size: 1.65rem;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 0.92rem;
    }

    .hero__cta {
        padding: 15px 28px;
        font-size: 0.8125rem;
    }

    /* Boutons */
    .btn {
        padding: 14px 24px;
    }

    /* En-têtes de section */
    .section-header {
        margin-bottom: 32px;
    }

    /* Services */
    .services-intro {
        padding: 28px 20px;
    }

    .services-stat__num {
        font-size: 1.8rem;
    }

    /* About */
    .about__image-placeholder {
        height: 200px;
    }

    .about__image-accent {
        right: 8px;
        padding: 12px 14px;
    }

    .about__image-accent strong {
        font-size: 1.45rem;
    }

    .about__image-accent span {
        font-size: 0.72rem;
    }

    .about__values {
        grid-template-columns: 1fr;
    }

    /* Split (contact + témoignages) */
    .split__left-inner,
    .split__right-inner {
        padding: 52px 20px;
    }

    .split__right-title {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    /* Témoignages */
    .testimonial-card {
        padding: 32px 20px 28px;
    }

    /* Footer */
    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-social__label {
        display: none;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom__links {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    /* Bouton retour en haut */
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }

    /* Références */
    .ref-grid {
        grid-template-columns: 1fr;
    }

    /* Team card — icônes arc recalculées pour cercle 140px (R=70) */
    /* + à 5h (150°) : left:88; — Twitter à 7h (210°) : left:18 */
    .team-card__plus {
        left: 88px;
        bottom: -8px;
    }
    .team-card__social--linkedin  { left: 18px; top: -8px; }
    .team-card__social--instagram { left: 88px; top: -8px; }
    .team-card__social--facebook  { right: -17px; top: 53px; }
    .team-card__social--twitter   { left: 18px; bottom: -8px; }

    .team-card {
        padding: 28px 12px 20px;
    }
    .team-card__name {
        font-size: 1rem;
    }

    /* Service page */
    .service-page__prestations {
        padding: 24px 16px;
    }
    .service-page__cover {
        aspect-ratio: 16/7;
    }

    /* Ref card */
    .ref-card {
        padding: 24px 16px;
    }
    .ref-card__title {
        font-size: 0.95rem;
    }
    .ref-note {
        flex-direction: column;
        gap: 8px;
    }

    /* Error 404 */
    .ic-404__code {
        font-size: 30vw;
        margin-bottom: 30px;
    }
    .ic-404__title {
        font-size: 26px;
    }
    .ic-404__desc {
        margin-left: 0;
        margin-right: 0;
    }

    /* Drawer */
    .contact-drawer__header {
        padding: 24px 16px 20px;
    }
    .contact-drawer__body {
        padding: 20px 16px 32px;
    }
    .contact-drawer__title {
        font-size: 1.15rem;
    }

    /* Page header base */
    .page-header {
        padding: 110px 0 40px;
        min-height: auto;
    }

    .page-header--xl {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .page-header--xl h1 {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
        letter-spacing: 0.01em;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
        gap: 4px;
    }

    /* Hero stats */
    .hero__stats {
        gap: 12px;
    }
    .hero__stat-value {
        font-size: 1.6rem;
    }

    /* Single article petit mobile */
    .single-post__header {
        padding: 70px 0 16px;
    }

    .single-post__content {
        padding: 20px 16px;
    }

    .single-post__thumbnail {
        margin-top: 16px;
        border-radius: 8px;
    }

    .single-post__tags {
        flex-wrap: wrap;
        gap: 6px;
    }

    .single-post__tags a {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    /* Blog archive header */
    .blog-content {
        flex-direction: column;
    }

    /* Ref approach grid */
    .ref-approach-grid {
        grid-template-columns: 1fr;
    }

    /* Domains grid */
    .domains-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Page Références — styles dédiés
   ========================================================================== */

.ref-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.ref-approach-card {
    background: var(--ic-white);
    border: 1px solid var(--ic-light-gray);
    border-radius: 16px;
    padding: 36px 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ref-approach-card:hover {
    box-shadow: 0 8px 32px rgba(27, 33, 57, 0.08);
    transform: translateY(-4px);
}

.ref-approach-card__num {
    font-family: var(--ic-font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(230, 120, 67, 0.18);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ref-approach-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.ref-approach-card__desc {
    font-size: 1rem;
    color: var(--ic-text-light);
    line-height: 1.75;
    text-align: justify;
}

/* CTA section références */
.ref-cta-section {
    text-align: center;
}

.ref-cta-inner {
    max-width: 680px;
    margin: 0 auto;
}

.ref-cta-inner h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ic-white);
    margin-bottom: 16px;
}

.ref-cta-inner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* ==========================================================================
   Page À Propos — section partenaires
   ========================================================================== */

.partners-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.partners-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--ic-white);
    border: 1px solid var(--ic-light-gray);
    border-radius: 12px;
    padding: 20px 24px;
    transition: box-shadow 0.2s ease;
}

.partners-list__item:hover {
    box-shadow: 0 4px 16px rgba(27, 33, 57, 0.07);
}

.partners-list__icon {
    color: var(--ic-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.partners-list__item span {
    font-size: 0.92rem;
    color: var(--ic-dark);
    font-weight: 500;
    line-height: 1.5;
}

.about-partners__note {
    margin-top: 36px;
    padding: 24px 32px;
    background: rgba(230, 120, 67, 0.06);
    border-left: 3px solid var(--ic-orange);
    border-radius: 0 12px 12px 0;
    font-size: 0.92rem;
    color: var(--ic-text-light);
    line-height: 1.65;
}

/* ==========================================================================
   Page Équipe — domaines d'expertise
   ========================================================================== */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.expertise-card {
    background: var(--ic-white);
    border: 1px solid var(--ic-light-gray);
    border-radius: 16px;
    padding: 36px 28px 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.expertise-card:hover {
    box-shadow: 0 8px 32px rgba(27, 33, 57, 0.08);
    transform: translateY(-4px);
}

.expertise-card__num {
    display: block;
    font-family: var(--ic-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(230, 120, 67, 0.2);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.expertise-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.expertise-card__desc {
    font-size: 1rem;
    color: var(--ic-text-light);
    line-height: 1.75;
    text-align: justify;
}

/* ==========================================================================
   Expertise — liste éditoriale premium (fond blanc)
   ========================================================================== */

.ic-expertise__list {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
    border-top: 1px solid rgba(30, 62, 85, 0.1);
}

.ic-expertise__item {
    display: grid;
    grid-template-columns: 80px 1fr 32px;
    align-items: center;
    gap: 0 40px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(30, 62, 85, 0.1);
    position: relative;
    transition: padding-left 0.3s ease, background 0.25s ease;
    cursor: default;
}

/* Trait orange gauche au hover */
.ic-expertise__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ic-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s ease;
    border-radius: 0 2px 2px 0;
}

.ic-expertise__item:hover {
    padding-left: 20px;
    background: rgba(216, 151, 61, 0.025);
}

.ic-expertise__item:hover::before {
    transform: scaleY(1);
}

/* Numéro décoratif */
.ic-expertise__num {
    font-family: var(--ic-font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--ic-orange);
    line-height: 1;
    letter-spacing: -3px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    text-align: right;
}

.ic-expertise__item:hover .ic-expertise__num {
    opacity: 1;
}

/* Contenu texte */
.ic-expertise__body {}

.ic-expertise__title {
    font-family: var(--ic-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ic-navy);
    margin: 0 0 6px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.ic-expertise__item:hover .ic-expertise__title {
    color: var(--ic-orange);
}

.ic-expertise__desc {
    font-size: 1rem;
    color: var(--ic-gray);
    line-height: 1.75;
    margin: 0;
}

/* Flèche */
.ic-expertise__arrow {
    color: var(--ic-orange);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.ic-expertise__item:hover .ic-expertise__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .ic-expertise__item {
        grid-template-columns: 56px 1fr 24px;
        gap: 0 20px;
        padding: 24px 0;
    }
    .ic-expertise__num { font-size: 2rem; letter-spacing: -2px; }
    .ic-expertise__title { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .ic-expertise__item {
        grid-template-columns: 44px 1fr;
        gap: 0 16px;
    }
    .ic-expertise__arrow { display: none; }
    .ic-expertise__item:hover { padding-left: 12px; }
}

/* ==========================================================================
   Points Clés — redesign fond navy
   ========================================================================== */

.ic-points {
    background: var(--ic-navy);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.ic-points .section-header {
    position: relative;
    margin-bottom: -2rem;
    z-index: 1;
}

.ic-points .section-tag {
    color: var(--ic-orange);
}

.ic-points .section-title {
    font-family: var(--ic-font-heading);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    color: rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
    user-select: none;
    white-space: nowrap;
}

.ic-points__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
    position: relative;
    z-index: 2;
}

.ic-points__item {
    background: var(--ic-navy);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.ic-points__item:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Icône cercle orange */
.ic-points__icon {
    width: 52px;
    height: 52px;
    background: var(--ic-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ic-points__item:hover .ic-points__icon {
    transform: scale(1.1);
}

.ic-points__title {
    font-family: var(--ic-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.ic-points__item:hover .ic-points__title {
    color: var(--ic-orange);
}

.ic-points__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
    transition: color 0.3s ease;
}

.ic-points__item:hover .ic-points__text {
    color: rgba(255, 255, 255, 0.85);
}

/* Trait orange gauche sur hover */
.ic-points__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--ic-orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.ic-points__item:hover::before {
    transform: scaleY(1);
}

@media (max-width: 768px) {
    .ic-points__grid { grid-template-columns: 1fr; }
    .ic-points__item { padding: 36px 28px; }
    .ic-points__watermark { font-size: 5rem; }
}

/* ==========================================================================
   Newsletter Popup
   ========================================================================== */

.nl-popup {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.nl-popup[hidden] {
    display: none;
}

.nl-popup.is-visible {
    animation: nl-fadein 0.35s ease forwards;
}

.nl-popup.is-hiding {
    animation: nl-fadeout 0.25s ease forwards;
}

@keyframes nl-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes nl-fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.nl-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 16, 36, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.nl-popup__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 860px;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(12, 16, 36, 0.35);
    animation: nl-slidein 0.35s ease forwards;
}

@keyframes nl-slidein {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)     scale(1); }
}

/* Bouton fermer */
.nl-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--ic-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

.nl-popup__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

/* Côté visuel — gauche */
.nl-popup__visual {
    background: var(--ic-navy);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.nl-popup__visual::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(230, 120, 67, 0.12);
}

.nl-popup__visual::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(230, 120, 67, 0.07);
}

.nl-popup__visual-logo {
    margin-bottom: 28px;
}

.nl-popup__visual-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.85;
    max-height: 28px;
    width: auto;
}

.nl-popup__visual-content {
    position: relative;
    z-index: 1;
}

.nl-popup__visual-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ic-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.nl-popup__visual-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.nl-popup__visual-stats {
    display: flex;
    gap: 28px;
}

.nl-popup__visual-stat {
    display: flex;
    flex-direction: column;
}

.nl-popup__visual-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ic-orange);
    line-height: 1;
}

.nl-popup__visual-stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Côté formulaire — droite */
.nl-popup__body {
    background: var(--ic-white);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nl-popup__title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ic-dark);
    margin: 12px 0;
    line-height: 1.25;
}

.nl-popup__desc {
    font-size: 1rem;
    color: var(--ic-text-light);
    line-height: 1.75;
    margin-bottom: 28px;
    text-align: justify;
}

/* Formulaire newsletter */
.nl-form .form-group {
    margin-bottom: 16px;
}

/* Inputs du formulaire newsletter */
.nl-form input[type="email"],
.nl-form input[type="text"] {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #e0e4ee;
    border-radius: var(--ic-radius);
    font-family: var(--ic-font-body);
    font-size: 0.9rem;
    color: var(--ic-dark);
    background: #f8f9fc;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.nl-form input[type="email"]:focus,
.nl-form input[type="text"]:focus {
    border-color: var(--ic-orange);
    box-shadow: 0 0 0 3px rgba(230, 120, 67, 0.1);
    background: var(--ic-white);
}

.nl-form input::placeholder {
    color: #a0a8c0;
}

.nl-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ic-dark);
    margin-bottom: 7px;
    letter-spacing: 0.2px;
}

.nl-form__consent {
    margin-bottom: 20px !important;
}

.nl-form__consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.nl-form__consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ic-orange);
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.nl-form__consent-label span {
    font-size: 0.82rem;
    color: var(--ic-text-light);
    line-height: 1.5;
}

.nl-form__consent-label a {
    color: var(--ic-orange);
    text-decoration: underline;
}

.nl-form__submit {
    width: 100%;
    justify-content: center;
}

.nl-form__note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--ic-text-light);
    text-align: center;
}

/* Message succès */
.nl-success {
    text-align: center;
    padding: 20px 0;
}

.nl-success[hidden] { display: none; }

.nl-success__icon {
    color: #22c55e;
    margin-bottom: 16px;
}

.nl-success h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ic-dark);
    margin-bottom: 10px;
}

.nl-success p {
    font-size: 0.9rem;
    color: var(--ic-text-light);
    line-height: 1.6;
}

/* Message erreur */
.nl-error {
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid #ef4444;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    color: #dc2626;
}

.nl-error[hidden] { display: none; }

/* ==========================================================================
   Bannière RGPD
   ========================================================================== */

.rgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8900;
    background: rgba(15, 20, 40, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    animation: rgpd-slidein 0.4s ease forwards;
}

.rgpd-banner[hidden] {
    display: none;
}

@keyframes rgpd-slidein {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.rgpd-banner.is-hiding {
    animation: rgpd-slideout 0.3s ease forwards;
}

@keyframes rgpd-slideout {
    from { transform: translateY(0); opacity: 1; }
    to   { transform: translateY(100%); opacity: 0; }
}

.rgpd-banner__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.rgpd-banner__info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.rgpd-banner__icon {
    color: var(--ic-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.rgpd-banner__text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ic-white);
    margin-bottom: 4px;
}

.rgpd-banner__text p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

.rgpd-banner__link {
    color: var(--ic-orange);
    text-decoration: underline;
    white-space: nowrap;
}

.rgpd-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.rgpd-banner__btn {
    padding: 10px 24px;
    border-radius: 3px;
    border: none;
    font-family: var(--ic-font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.rgpd-banner__btn--refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rgpd-banner__btn--refuse:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--ic-white);
}

.rgpd-banner__btn--accept {
    background: var(--ic-orange);
    color: var(--ic-white);
}

.rgpd-banner__btn--accept:hover {
    background: var(--ic-navy);
}

/* ==========================================================================
   Responsive — nouvelles pages & composants
   ========================================================================== */

@media (max-width: 991px) {
    .ref-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-list {
        grid-template-columns: 1fr;
    }

    .nl-popup__panel {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .nl-popup__visual {
        display: none;
    }

    .nl-popup__body {
        padding: 40px 32px;
    }

    .rgpd-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 24px;
    }

    .rgpd-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 599px) {
    .ref-approach-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .nl-popup {
        padding: 12px;
        align-items: flex-end;
    }

    .nl-popup__panel {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .nl-popup__body {
        padding: 32px 24px;
    }

    .rgpd-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .rgpd-banner__btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   FAQ — style Clavis faq-style01
   ========================================================================== */

/* ── En-tête sombre ── */
.ic-faq-header {
    position: relative;
    padding: 120px 40px 330px;
    background-color: #1b2139;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
}

.ic-faq-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1E3E55;
    opacity: 0.82;
    z-index: 0;
}

.ic-faq-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

.ic-faq-header__tag {
    display: inline-block;
    font-family: var(--ic-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ic-orange);
    margin-bottom: 20px;
}

.ic-faq-header__heading {
    font-family: var(--ic-font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin: 0;
}

/* ── Section FAQ (overlap) ── */
.ic-faq {
    position: relative;
    z-index: 99;
    margin-top: -245px;
    padding: 0 40px 100px;
    background: transparent;
    overflow: visible;
}

.ic-faq__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 542px;
    gap: 30px;
    align-items: start;
}

/* ── Colonne gauche : accordéon ── */
.ic-faq__content {
    padding: 61px;
    background-color: #f8f8f8;
    border-radius: 0.375rem;
}

.ic-faq__item {
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    margin-bottom: 10px;
    overflow: hidden;
}

.ic-faq__item:last-child {
    margin-bottom: 0;
}

.ic-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 45px 20px 18px;
    font-family: var(--ic-font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #42545e;
    cursor: pointer;
    list-style: none;
    border-radius: 0.375rem;
    position: relative;
    transition: color 0.2s;
}

.ic-faq__question::-webkit-details-marker {
    display: none;
}

.ic-faq__question::after {
    content: "+";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: #212121;
    line-height: 1;
    transition: color 0.2s;
}

.ic-faq__item[open] > .ic-faq__question {
    color: var(--ic-orange);
    border-radius: 0.375rem 0.375rem 0 0;
}

.ic-faq__item[open] > .ic-faq__question::after {
    content: "−";
    color: var(--ic-orange);
}

.ic-faq__answer {
    padding: 0 30px 25px 26px;
    background: #fff;
    border-radius: 0 0 0.375rem 0.375rem;
}

.ic-faq__answer p {
    font-family: var(--ic-font-heading);
    font-size: 1rem;
    color: #575a7b;
    line-height: 1.75;
    margin: 0;
}

/* ── Colonne droite : image + bouton vidéo ── */
.ic-faq__right {
    display: block;
    flex-shrink: 0;
}

.ic-faq__img-wrap {
    position: relative;
    width: 542px;
    height: 410px;
    border-radius: 0.375rem;
    overflow: hidden;
}

.ic-faq__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.ic-faq__video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.ic-faq__video-btn {
    width: 84px;
    height: 84px;
    background: var(--ic-orange);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.ic-faq__video-btn:hover {
    background: #c95e2a;
}

.ic-faq__video-btn::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ic-pulse 1.4s ease-out infinite;
}

.ic-faq__video-btn::after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: ic-pulse 1.4s ease-out infinite 0.4s;
}

@keyframes ic-pulse {
    0%   { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}

/* ── Modal vidéo YouTube ── */
.ic-video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-video-modal[hidden] {
    display: none;
}

.ic-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.ic-video-modal__inner {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 900px;
}

.ic-video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.ic-video-modal__close:hover {
    opacity: 0.7;
}

.ic-video-modal__frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0.375rem;
    background: #000;
}

.ic-video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ic-faq__wrap {
        grid-template-columns: 1fr;
    }

    .ic-faq__right {
        display: none;
    }
}

@media (max-width: 768px) {
    .ic-faq-header {
        padding: 80px 20px 280px;
    }

    .ic-faq-header__heading {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .ic-faq {
        padding: 0 16px 60px;
    }

    .ic-faq__content {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Responsive global — corrections des tailles fixes en px
   Complète les blocs responsive section par section ci-dessus
   ========================================================================== */

/* ── Tablette (≤ 991px) ── */
@media (max-width: 991px) {

    /* Process — padding réduit */
    .ic-process {
        padding: 70px 0 80px;
    }

    /* Process — titre */
    .ic-process__heading {
        font-size: 30px;
        letter-spacing: -1px;
    }

    /* Section-title (À Propos, Pourquoi Nous) — override !important */
    #pourquoi-nous .section-title,
    #a-propos .section-title {
        font-size: 30px !important;
        letter-spacing: -1px !important;
    }

    /* FAQ header — overlap réduit */
    .ic-faq {
        margin-top: -160px;
    }

    /* Contact split — toujours une colonne */
    .section--split {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {

    /* Process */
    .ic-process {
        padding: 50px 0 60px;
    }

    .ic-process__heading {
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .ic-process__header {
        margin-bottom: 36px;
    }

    /* Section titles */
    #pourquoi-nous .section-title,
    #a-propos .section-title {
        font-size: 24px !important;
        letter-spacing: -0.5px !important;
    }

    /* FAQ */
    .ic-faq {
        margin-top: -120px;
    }

    .ic-faq-header {
        padding: 70px 20px 260px;
    }

    /* Services — affichage mobile : hover visible sans mouse */
    .ic-svc__data {
        opacity: 1;
        bottom: 0;
    }

    .ic-svc__icon {
        display: none;
    }

    /* Partners — gap réduit sur mobile (le track continue de défiler) */
    .partners__track {
        gap: 40px;
    }

    .partner-logo {
        max-height: 48px;
        width: auto;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Approach badge */
    .ic-approach__badge {
        padding: 20px 24px;
        min-width: 140px;
    }

    .ic-approach__badge strong {
        font-size: 3rem;
    }
}

/* ── Petit mobile (≤ 480px) ── */
@media (max-width: 480px) {

    /* Services — une colonne, taille fixe */
    .ic-svc__grid {
        grid-template-columns: 1fr;
        padding: 0 8px;
        gap: 4px;
    }

    .ic-svc__card {
        aspect-ratio: auto;
        height: 320px;
    }

    /* Process */
    .ic-process__photo {
        width: 120px;
        height: 120px;
    }

    .ic-process__count {
        left: calc(50% - 60px + 2px);
    }

    /* FAQ header */
    .ic-faq-header {
        padding: 60px 16px 240px;
    }

    .ic-faq-header__heading {
        font-size: 22px;
    }

    .ic-faq {
        margin-top: -100px;
        padding: 0 12px 50px;
    }

    .ic-faq__content {
        padding: 24px 16px;
    }

    .ic-faq__question {
        padding: 16px 40px 16px 14px;
        font-size: 14px;
    }

    /* Contact form */
    .contact__form .form-row {
        grid-template-columns: 1fr;
    }

    /* Header CTA caché sur mobile (déjà à 991px) */
    .header-cta {
        display: none;
    }
}
