/* ═══════════════════════════════════════════════════════
   ALLIANCE EXPERTISE - Stylesheet Principal
   Conseil – Audit – Ingénierie Financière
   ═══════════════════════════════════════════════════════ */

/* ── 1. VARIABLES (Design Tokens) ── */
:root {
    /* Couleurs principales */
    --color-navy: #1B2A4A;
    --color-navy-deep: #142038;
    --color-navy-light: #243656;

    /* Accent doré */
    --color-gold: #D4A833;
    --color-gold-light: #E8C44A;
    --color-gold-dark: #B8922A;

    /* Neutres */
    --color-white: #FFFFFF;
    --color-gray-50: #F8F9FA;
    --color-gray-100: #F1F3F5;
    --color-gray-200: #E5E7EB;
    --color-gray-400: #9CA3AF;
    --color-gray-600: #6B7280;
    --color-gray-800: #374151;

    /* Typographie */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-hero: clamp(2.5rem, 5vw, 4rem);
    --fs-h1: clamp(2rem, 4vw, 3rem);
    --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
    --fs-h3: clamp(1.125rem, 2vw, 1.5rem);
    --fs-body: 1rem;
    --fs-body-lg: 1.125rem;
    --fs-small: 0.875rem;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --lh-tight: 1.2;
    --lh-normal: 1.6;
    --lh-relaxed: 1.8;

    /* Espacement */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --section-padding: clamp(4rem, 8vw, 7rem);

    /* Layout */
    --container-max: 1200px;
    --container-padding: clamp(1rem, 4vw, 2rem);
    --navbar-height: 80px;

    /* Cartes & surfaces */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;
    --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.08);
    --shadow-md: 0 4px 12px rgba(27, 42, 74, 0.10);
    --shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.12);
    --shadow-card: 0 2px 8px rgba(27, 42, 74, 0.06);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-border-light: rgba(200, 169, 81, 0.15);
    --glass-blur: 12px;

    /* Glow */
    --glow-gold: 0 0 30px rgba(212, 168, 51, 0.4);
    --glow-gold-intense: 0 0 50px rgba(212, 168, 51, 0.5);
    --glow-navy: 0 0 30px rgba(27, 42, 74, 0.25);
}

/* ── 2. RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    line-height: var(--lh-normal);
    color: var(--color-gray-800);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Liens désactivés (pages non disponibles) */
.navbar__link--disabled,
.footer__link--disabled,
.service-card__link--disabled,
.btn--disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

/* Selection */
::selection {
    background-color: rgba(200, 169, 81, 0.25);
    color: var(--color-navy);
}

/* Focus visible accessible */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ── 3. TYPOGRAPHIE ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: var(--lh-tight);
    color: var(--color-navy);
    font-weight: var(--fw-bold);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }

p {
    margin-bottom: var(--space-sm);
    line-height: var(--lh-relaxed);
}

.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-navy { color: var(--color-navy); }

/* ── 4. UTILITAIRES ── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

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

.section--light {
    background-color: #EFF1F4;
}


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

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

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

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

.section-label {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
    background: rgba(212, 168, 51, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 51, 0.15);
}

.section-title {
    font-size: var(--fs-h2);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

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

.section-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-gray-600);
    max-width: 700px;
    margin-bottom: var(--space-xl);
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.text-center .section-subtitle {
    margin-inline: auto;
}

/* Carte d'intro de section avec fond glass */
.section-intro-card {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.04), rgba(212, 168, 51, 0.06));
    border: 1px solid rgba(212, 168, 51, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
}

.section-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section-intro-card .section-subtitle {
    margin-inline: auto;
}

/* Bande de chiffres clés */
.stats-band {
    padding: var(--space-lg) 0;
    background: var(--color-navy);
    border-top: 1px solid rgba(212, 168, 51, 0.2);
    border-bottom: 1px solid rgba(212, 168, 51, 0.2);
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stats-band__item {
    padding: var(--space-sm);
}

.stats-band__number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: var(--fw-bold);
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stats-band__label {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-band__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Grilles */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); }

/* ── 5a. NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 1000;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
    background-color: transparent;
}

.navbar--scrolled {
    background-color: rgba(20, 32, 56, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 1px 0 rgba(200, 169, 81, 0.1), 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.navbar__logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.navbar__logo-text {
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.navbar__link {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

.navbar__link:hover,
.navbar__link--active {
    color: var(--color-white);
}

.navbar__link:hover::after,
.navbar__link--active::after {
    width: 100%;
}

/* Dropdown Services */
.navbar__item--dropdown {
    position: relative;
}

.navbar__link--has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.navbar__dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.navbar__item--dropdown:hover .navbar__dropdown-arrow,
.navbar__item--dropdown.is-open .navbar__dropdown-arrow {
    transform: rotate(180deg);
}

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: rgba(20, 32, 56, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(212, 168, 51, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xs) 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
    z-index: 1002;
}

/* Petit triangle en haut */
.navbar__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(20, 32, 56, 0.95);
    border-top: 1px solid rgba(212, 168, 51, 0.15);
    border-left: 1px solid rgba(212, 168, 51, 0.15);
}

/* Zone invisible pour eviter la fermeture entre le lien et le dropdown */
.navbar__item--dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
}

.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__item--dropdown.is-open .navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.65rem 1.25rem;
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.navbar__dropdown-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity var(--transition-fast);
}

.navbar__dropdown-link:hover {
    color: var(--color-white);
    background: rgba(212, 168, 51, 0.1);
}

.navbar__dropdown-link:hover svg {
    opacity: 1;
}

/* Hamburger */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.navbar__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle--active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── 5b. BOUTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-intense);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--glow-gold);
}

/* Shimmer effect on primary button */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
    transform: translateY(-1px);
}

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

.btn-outline-navy:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-navy:active {
    transform: translateY(0);
}

/* ── 5c. CARTES ── */
.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Carte stat (chiffres clés) */
.stat-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.1);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(212, 168, 51, 0.12);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(27, 42, 74, 0.15);
}

.stat-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.stat-card:hover .stat-card__icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
}

.stat-card__icon svg {
    width: 28px;
    height: 28px;
}

.stat-card__number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: var(--space-xs);
}

.stat-card__label {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.stat-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-normal);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Carte service */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.1);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(212, 168, 51, 0.1);
    border-top: 3px solid var(--color-gold);
    position: relative;
    overflow: hidden;
}

/* Light sweep effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 81, 0.04), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover::after {
    left: 150%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(27, 42, 74, 0.15), 0 0 0 1px rgba(212, 168, 51, 0.2);
    border-color: rgba(212, 168, 51, 0.3);
}

/* Featured card - spans 2 columns */
.service-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: var(--space-lg);
    background: linear-gradient(135deg, var(--color-white), rgba(200, 169, 81, 0.03));
}

.service-card--featured .service-card__icon {
    grid-row: 1 / 4;
    align-self: start;
    width: 72px;
    height: 72px;
}

.service-card--featured .service-card__icon svg {
    width: 36px;
    height: 36px;
}

/* Tall card - spans 2 rows */
.service-card--tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-white), rgba(27, 42, 74, 0.02));
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    margin-bottom: var(--space-md);
    color: var(--color-white);
    transition: all var(--transition-smooth);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(212, 168, 51, 0.3);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-size: var(--fs-h3);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
    font-weight: var(--fw-bold);
}

.service-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
}

.service-card__link {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-smooth);
}

.service-card__link:hover {
    gap: 12px;
    color: var(--color-gold-dark);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-smooth);
}

.service-card__link:hover svg {
    transform: translateX(2px);
}

/* Carte différenciateur */
.positioning__cards {
    counter-reset: diff-counter;
}

.diff-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
    border-left: 4px solid var(--color-gold);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    counter-increment: diff-counter;
}

.diff-card::before {
    content: counter(diff-counter, decimal-leading-zero);
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 3rem;
    font-weight: var(--fw-bold);
    color: rgba(27, 42, 74, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--color-gold-light);
}

.diff-card:hover::before {
    color: rgba(200, 169, 81, 0.1);
}

.diff-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: var(--space-sm);
    color: var(--color-gold);
    transition: transform var(--transition-smooth);
}

.diff-card:hover .diff-card__icon {
    transform: scale(1.1);
}

.diff-card__icon svg {
    width: 24px;
    height: 24px;
}

.diff-card__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.diff-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-normal);
}

/* ── 5d. ICONES ── */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon--sm svg { width: 20px; height: 20px; }
.icon--md svg { width: 28px; height: 28px; }
.icon--lg svg { width: 40px; height: 40px; }

/* ── 5e. FOOTER ── */
.footer {
    background-color: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding-top: var(--space-3xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.footer__logo svg {
    width: 36px;
    height: 36px;
}

.footer__logo-text {
    font-size: 1rem;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
}

.footer__tagline {
    font-size: var(--fs-small);
    color: var(--color-gold);
    font-weight: var(--fw-medium);
}

.footer__desc {
    font-size: var(--fs-small);
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.6);
}

.footer__heading {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__link {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    position: relative;
    display: inline-block;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-smooth);
}

.footer__link:hover {
    color: var(--color-gold);
}

.footer__link:hover::after {
    width: 100%;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--fs-small);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.footer__bottom {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(200, 169, 81, 0.3), transparent) 1;
    padding-block: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.4);
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.footer__social:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(200, 169, 81, 0.1);
    box-shadow: 0 0 20px rgba(200, 169, 81, 0.15);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

/* ── 6a. HOMEPAGE ── */

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 168, 51, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(20, 32, 56, 0.5) 0%, transparent 60%),
        linear-gradient(160deg, rgba(14, 26, 48, 0.7) 0%, rgba(27, 42, 74, 0.6) 35%, rgba(31, 49, 85, 0.65) 60%, rgba(20, 32, 56, 0.75) 100%),
        url('../img/hero/hero-accueil.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

/* Halo lumineux doré en haut à droite */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.05) 0%, rgba(200, 169, 81, 0.02) 35%, transparent 65%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

/* Halo bleu subtil en bas à gauche */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100, 140, 200, 0.06) 0%, transparent 60%);
    border-radius: var(--radius-full);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out 2s infinite alternate;
}

@keyframes heroGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.15); opacity: 0.6; }
}

.hero .container {
    padding-left: 5%;
    padding-right: 15%;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__label {
    display: inline-block;
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    background: rgba(212, 168, 51, 0.1);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(212, 168, 51, 0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero__desc {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.88);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.6s forwards;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease 0.8s forwards;
}

/* Decorative chart icon in hero */
.hero__decor {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 176px;
    height: 176px;
    border: 3px solid rgba(212, 168, 51, 0.75);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards, heroGlow 3s ease-in-out infinite 1s;
    background: radial-gradient(circle, rgba(212, 168, 51, 0.15) 0%, rgba(212, 168, 51, 0.03) 60%, transparent 80%);
    box-shadow: 0 0 50px rgba(212, 168, 51, 0.25), 0 0 100px rgba(212, 168, 51, 0.1), inset 0 0 30px rgba(212, 168, 51, 0.1);
}

.hero__decor svg {
    width: 62px;
    height: 62px;
    color: var(--color-gold);
    filter: drop-shadow(0 0 10px rgba(212, 168, 51, 0.6));
}

/* Anneau extérieur */
.hero__decor::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid rgba(212, 168, 51, 0.45);
    border-radius: var(--radius-full);
    animation: heroRingPulse 4s ease-in-out infinite;
}

/* Anneau intermédiaire avec pointillés */
.hero__decor::after {
    content: '';
    position: absolute;
    inset: -40px;
    border: 2px dashed rgba(212, 168, 51, 0.35);
    border-radius: var(--radius-full);
    animation: heroRingSpin 30s linear infinite;
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 0 60px rgba(212, 168, 51, 0.25), 0 0 120px rgba(212, 168, 51, 0.1), inset 0 0 40px rgba(212, 168, 51, 0.1); }
    50% { box-shadow: 0 0 80px rgba(212, 168, 51, 0.4), 0 0 150px rgba(212, 168, 51, 0.15), inset 0 0 50px rgba(212, 168, 51, 0.15); }
}

@keyframes heroRingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.7; }
}

@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Grille de fond améliorée */
.hero__bg-pattern .line {
    position: absolute;
    background: rgba(255, 255, 255, 0.045);
}

.hero__bg-pattern .line--h {
    width: 100%;
    height: 1px;
}

.hero__bg-pattern .line--v {
    width: 1px;
    height: 100%;
}

/* Petits points aux intersections de la grille */
.hero__bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(200, 169, 81, 0.08) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: 40px 40px;
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    transition: opacity var(--transition-base);
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 0.6 !important;
}

/* Forme de souris */
.scroll-indicator__mouse {
    width: 28px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Roue qui descend */
.scroll-indicator__wheel {
    width: 3px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* Chevron en-dessous */
.scroll-indicator__arrows {
    color: rgba(255, 255, 255, 0.8);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator__arrows svg {
    width: 20px;
    height: 20px;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.4;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.8;
    }
}

/* Masquer l'indicateur quand on scroll */
.scroll-indicator--hidden {
    opacity: 0 !important;
    pointer-events: none;
}

/* Section positionnement */
.positioning {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-3xl);
    align-items: start;
}

.positioning__text {
    grid-column: 1 / -1;
    max-width: 720px;
    padding-right: var(--space-lg);
}

.positioning__headline {
    font-size: var(--fs-h2);
    color: var(--color-navy);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-md);
}

.positioning__headline em {
    font-style: italic;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.positioning__desc {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-md);
}

.positioning__cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

/* ── Section Vision ── */
.vision__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-3xl);
    align-items: center;
}

.section-label--dark {
    color: var(--color-gold);
    background: rgba(212, 168, 51, 0.08);
    border-color: rgba(212, 168, 51, 0.2);
}

.vision__headline {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.vision__headline em {
    font-style: italic;
    color: var(--color-gold);
}

.vision__desc {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--lh-relaxed);
    border-left: 3px solid var(--color-gold);
    padding-left: var(--space-md);
    max-width: 560px;
}

/* Décoration cercle vision */
.vision__decor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.vision__decor-circle {
    position: relative;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision__decor-circle::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
}

.vision__decor-circle::after {
    content: '';
    position: absolute;
    inset: -45px;
    border: 1px dashed rgba(212, 168, 51, 0.2);
    border-radius: var(--radius-full);
    animation: heroRingSpin 40s linear infinite;
}

.vision__decor-inner {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision__decor-inner svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.7);
}

.vision__decor-label {
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    background: linear-gradient(-45deg, #0a1425, #1B2A4A, #243656, #1B2A4A);
    background-size: 300% 300%;
    animation: ctaGradient 8s ease infinite;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(212, 168, 51, 0.2);
    border-bottom: 2px solid rgba(212, 168, 51, 0.2);
}

@keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 51, 0.08) 0%, transparent 60%);
    border: 1px solid rgba(212, 168, 51, 0.1);
    border-radius: var(--radius-full);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(200, 169, 81, 0.05);
    border-radius: var(--radius-full);
    pointer-events: none;
    animation: heroRingSpin 40s linear infinite;
}

.cta-banner__title {
    font-size: var(--fs-h1);
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.cta-banner__desc {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Page hero (sous-pages) */
.page-hero {
    position: relative;
    background:
        linear-gradient(160deg, rgba(14, 26, 48, 0.7) 0%, rgba(27, 42, 74, 0.6) 40%, rgba(31, 49, 85, 0.65) 70%, rgba(14, 26, 48, 0.72) 100%),
        url('../img/bg/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: calc(var(--navbar-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    text-align: center;
    overflow: hidden;
}

/* Halo doré en haut à droite */
.page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 51, 0.08) 0%, rgba(212, 168, 51, 0.03) 40%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* Ligne dorée en bas */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(212, 168, 51, 0.4) 30%, rgba(212, 168, 51, 0.6) 50%, rgba(212, 168, 51, 0.4) 70%, transparent 95%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-size: var(--fs-h1);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    animation: fadeSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
}

.page-hero__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 51, 0.5));
    margin: var(--space-sm) auto 0;
    border-radius: 2px;
}

.page-hero__subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-inline: auto;
    animation: fadeSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* ── Section confiance / bandeau clients ── */
.trust-banner {
    background-color: var(--color-white);
    padding-block: var(--space-xl);
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.trust-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.trust-banner__label {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.trust-banner__items {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gray-400);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    transition: all var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.trust-item:hover {
    color: var(--color-navy);
    background-color: rgba(200, 169, 81, 0.06);
}

/* ── Séparateur doré entre sections ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: var(--space-xs);
    background: inherit;
}

.section-divider__line {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.section-divider__line::before,
.section-divider__line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-divider__diamond {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ── Bouton retour en haut ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-navy);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(27, 42, 74, 0.25);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

/* ── Hero améliorations (bg-pattern défini avec le hero) ── */
.hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* ── Trait doré sous les titres de section ── */
.section-title--underline {
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title--underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
    background-size: 200% 100%;
    animation: shimmerLine 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes shimmerLine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-left .section-title--underline::after,
.section-title--underline.text-left::after {
    left: 0;
    transform: none;
}

/* ── 6b. PAGE À PROPOS ── */

/* Mission cards */
.mission-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(212, 168, 51, 0.1);
    transition: all var(--transition-smooth);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: var(--color-white);
    margin-bottom: var(--space-md);
    transition: all var(--transition-smooth);
}

.mission-card:hover .mission-card__icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    transform: scale(1.08);
}

.mission-card__icon svg {
    width: 26px;
    height: 26px;
}

.mission-card__title {
    font-size: var(--fs-body-lg);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.mission-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
}

/* Value cards (glass sur fond navy) */
.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--transition-smooth);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: transform var(--transition-smooth);
}

.value-card:hover .value-card__icon {
    transform: scale(1.15);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
}

.value-card__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.value-card__desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--lh-normal);
}

/* Founder cards */
.founder-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
    border: 1px solid rgba(212, 168, 51, 0.1);
    transition: all var(--transition-smooth);
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.founder-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.founder-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.founder-card__avatar span {
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    letter-spacing: 1px;
}

.founder-card__name {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: 2px;
}

.founder-card__role {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    margin-bottom: var(--space-xs);
}

.founder-card__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    background: rgba(212, 168, 51, 0.12);
    padding: 3px 10px;
    border-radius: 50px;
}

.founder-card__bio {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
}

.founder-card__skills {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.founder-card__skills li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--fs-small);
    color: var(--color-navy);
    font-weight: var(--fw-medium);
}

.founder-card__skills svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.founder-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.founder-card__tag {
    font-size: 0.75rem;
    font-weight: var(--fw-medium);
    color: var(--color-navy);
    background: var(--color-gray-100);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ── 6c. PAGE SERVICES ── */

/* Why cards (numeros en arriere-plan, glass sur navy) */
.why-cards {
    counter-reset: why-counter;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    counter-increment: why-counter;
    transition: all var(--transition-smooth);
}

.why-card::before {
    content: counter(why-counter, decimal-leading-zero);
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 4rem;
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-card:hover::before {
    color: rgba(212, 168, 51, 0.08);
}

.why-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--color-gold);
    transition: transform var(--transition-smooth);
}

.why-card:hover .why-card__icon {
    transform: scale(1.15);
}

.why-card__icon svg {
    width: 28px;
    height: 28px;
}

.why-card__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.why-card__desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--lh-relaxed);
}

/* Pack cards (offres / pricing) */
.pack-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--color-navy);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pack-card--premium {
    border-top-color: var(--color-gold);
    position: relative;
}

.pack-card--premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    color: var(--color-gold-dark);
    background: rgba(212, 168, 51, 0.12);
    padding: 3px 10px;
    border-radius: 50px;
}

.pack-card__title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: 4px;
}

.pack-card__subtitle {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.pack-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.pack-card__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-normal);
}

.pack-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-top: 7px;
}

.pack-card .btn {
    width: 100%;
}

/* ── 6d. PAGE METHODOLOGIE ── */

/* Methodology timeline */
.methodology-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

/* Ligne connectrice horizontale */
.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light), var(--color-gold));
    z-index: 0;
}

.methodology-timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-smooth);
}

.methodology-timeline__step:hover {
    transform: translateY(-4px);
}

.methodology-timeline__number {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-navy);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    box-shadow: 0 4px 15px rgba(212, 168, 51, 0.2);
    transition: all var(--transition-smooth);
}

.methodology-timeline__step:hover .methodology-timeline__number {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.1);
}

.methodology-timeline__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-gold);
}

.methodology-timeline__icon svg {
    width: 24px;
    height: 24px;
}

.methodology-timeline__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.methodology-timeline__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-normal);
}

/* Sector cards */
.sector-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-bottom: 3px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: all var(--transition-smooth);
}

.sector-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.sector-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: transform var(--transition-smooth);
}

.sector-card:hover .sector-card__icon {
    transform: scale(1.15);
}

.sector-card__icon svg {
    width: 28px;
    height: 28px;
}

.sector-card__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.sector-card__desc {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--lh-normal);
}

/* Achievement cards */
.achievement-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-card);
    border-top: 3px solid var(--color-gold);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: var(--color-white);
    margin-bottom: var(--space-md);
    transition: all var(--transition-smooth);
}

.achievement-card:hover .achievement-card__icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    transform: scale(1.08);
}

.achievement-card__icon svg {
    width: 24px;
    height: 24px;
}

.achievement-card__title {
    font-size: var(--fs-body-lg);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.achievement-card__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.achievement-card__result {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-gold-dark);
    background: rgba(212, 168, 51, 0.1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    text-align: center;
}

/* ── 6e. SOUS-PAGES SERVICES ── */

/* Navigation laterale entre services */
.service-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-nav__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    transition: all var(--transition-fast);
}

.service-nav__link svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.service-nav__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: rgba(212, 168, 51, 0.3);
    transform: translateX(4px);
}

.service-nav__link:hover svg {
    opacity: 1;
}

.service-nav__link--active {
    background: rgba(212, 168, 51, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold);
    pointer-events: none;
}

.service-nav__link--active svg {
    opacity: 1;
}

/* PDCA Cycle */
.pdca-cycle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.pdca-step {
    text-align: center;
    position: relative;
    transition: transform var(--transition-smooth);
}

.pdca-step:hover {
    transform: translateY(-4px);
}

.pdca-step__letter {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 15px rgba(212, 168, 51, 0.3);
    transition: all var(--transition-smooth);
}

.pdca-step:hover .pdca-step__letter {
    transform: scale(1.1);
}

.pdca-step__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.pdca-step__desc {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
    line-height: var(--lh-normal);
}

/* Timeline creation entreprise */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
}

.timeline__step {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-smooth);
}

.timeline__step:hover {
    transform: translateY(-4px);
}

.timeline__number {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    box-shadow: 0 4px 15px rgba(212, 168, 51, 0.2);
    transition: all var(--transition-smooth);
}

.timeline__step:hover .timeline__number {
    background: var(--color-gold);
    color: var(--color-white);
}

.timeline__title {
    font-size: var(--fs-body);
    font-weight: var(--fw-bold);
    color: var(--color-navy);
    margin-bottom: 2px;
}

.timeline__subtitle {
    font-size: var(--fs-small);
    color: var(--color-gold-dark);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-sm);
}

.timeline__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline__items li {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
}

/* ── 6f. PAGE CONTACT ── */

/* Grille contact 2 colonnes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Colonne infos */
.contact-info__title {
    font-size: var(--fs-h2);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.contact-info__desc {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-info__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 22px;
    height: 22px;
}

.contact-info__item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info__item strong {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
}

.contact-info__item span {
    font-size: var(--fs-small);
    color: var(--color-gray-600);
}

.contact-info__socials {
    display: flex;
    gap: var(--space-sm);
}

/* Formulaire */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: var(--space-xl);
}

.contact-form__title {
    font-size: var(--fs-h3);
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gold);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.form-required {
    color: #e53e3e;
}

.form-field {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    color: var(--color-gray-800);
    background-color: var(--color-gray-50);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-field:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 51, 0.15);
    background-color: var(--color-white);
}

.form-field::placeholder {
    color: var(--color-gray-400);
}

select.form-field {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-field {
    resize: vertical;
    min-height: 120px;
}

.form-field--error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: 4px;
}

.contact-form__submit {
    width: 100%;
    margin-top: var(--space-sm);
}

.contact-form__submit svg {
    width: 18px;
    height: 18px;
}

/* Message de succes */
.contact-form-success {
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
}

.contact-form-success__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.contact-form-success__icon svg {
    width: 36px;
    height: 36px;
}

.contact-form-success__title {
    font-size: var(--fs-h3);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.contact-form-success__desc {
    font-size: var(--fs-body);
    color: var(--color-gray-600);
    max-width: 400px;
    margin-inline: auto;
}

/* ── 7. ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-in"] {
    opacity: 0;
}

[data-animate="slide-up"] {
    transform: translateY(30px);
}

[data-animate="slide-left"] {
    transform: translateX(-30px);
}

[data-animate="slide-right"] {
    transform: translateX(30px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ── 8. RESPONSIVE ── */

/* Tablette */
@media (max-width: 1024px) {
    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--color-navy-deep);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-base);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .navbar__nav--open {
        right: 0;
    }

    .navbar__list {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .navbar__link {
        font-size: var(--fs-body);
    }

    .navbar__toggle {
        display: flex;
    }

    /* Dropdown mobile : inline dans le menu lateral */
    .navbar__item--dropdown::after {
        display: none;
    }

    .navbar__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-left: 2px solid var(--color-gold);
        border-radius: 0;
        padding: var(--space-xs) 0 var(--space-xs) var(--space-sm);
        box-shadow: none;
        margin-top: var(--space-sm);
        display: none;
    }

    .navbar__dropdown::before {
        display: none;
    }

    .navbar__item--dropdown.is-open .navbar__dropdown {
        display: block;
    }

    .navbar__dropdown-link {
        padding: 0.5rem 0.75rem;
        font-size: var(--fs-small);
    }

    .navbar__link--has-dropdown {
        cursor: pointer;
    }

    .vision__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    .vision__desc {
        margin-inline: auto;
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--color-gold);
        padding-bottom: var(--space-sm);
    }
    .vision__decor-circle {
        width: 200px;
        height: 200px;
    }

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

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card--featured {
        grid-column: span 2;
    }
    .service-card--tall {
        grid-row: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .hero__decor { display: none; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .methodology-timeline::before {
        display: none;
    }

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

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

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

    .timeline::before {
        display: none;
    }

    .positioning {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .positioning__text {
        padding-right: 0;
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .service-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card--tall {
        grid-row: span 1;
    }

    .vision__decor-circle {
        width: 170px;
        height: 170px;
    }
    .vision__decor-circle::after {
        inset: -25px;
    }
    .vision__headline {
        font-size: clamp(1.6rem, 5vw, 2rem);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--navbar-height) + var(--space-xl));
        padding-bottom: var(--space-3xl);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .methodology-timeline {
        grid-template-columns: 1fr;
    }

    .pdca-cycle {
        grid-template-columns: 1fr;
    }

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

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .page-hero {
        padding-top: calc(var(--navbar-height) + var(--space-xl));
        padding-bottom: var(--space-xl);
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .navbar__logo-text {
        font-size: 0.9rem;
    }

    .stat-card__number {
        font-size: 2.5rem;
    }

    .vision__decor-circle {
        width: 140px;
        height: 140px;
    }
    .vision__decor-circle::before {
        inset: -12px;
    }
    .vision__decor-circle::after {
        inset: -20px;
    }
    .vision__decor-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
}

/* === SECTION IMAGES === */

/* Image vision (remplace le décor cercle) */
.vision__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 168, 51, 0.25);
}

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

/* Image positionnement */
.positioning__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(27, 42, 74, 0.15);
    grid-column: 1 / -1;
    border: 2px solid rgba(27, 42, 74, 0.1);
}

.positioning__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA avec image de fond */
.cta-banner--image {
    background:
        linear-gradient(160deg, rgba(14, 26, 48, 0.92) 0%, rgba(27, 42, 74, 0.88) 40%, rgba(31, 49, 85, 0.90) 70%, rgba(14, 26, 48, 0.94) 100%),
        url('../img/bg/cta-background.png');
    background-size: cover;
    background-position: center;
    animation: none;
}

/* Responsive images */
@media (max-width: 1024px) {
    .vision__image {
        max-width: 400px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .vision__image {
        max-width: 320px;
    }
}

/* === PAGE HERO - IMAGE PAR PAGE === */
/* Hero spécial Cabinet — overlay léger, image bien visible */
.page-hero--cabinet {
    background:
        linear-gradient(160deg, rgba(14, 26, 48, 0.55) 0%, rgba(27, 42, 74, 0.45) 35%, rgba(31, 49, 85, 0.48) 60%, rgba(20, 32, 56, 0.58) 100%),
        url('../img/hero/hero-cabinet.png');
    background-size: cover;
    background-position: center top;
}

.page-hero--cabinet .page-hero__title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.page-hero--cabinet .page-hero__title em {
    font-style: italic;
    color: var(--color-gold);
}

.page-hero--cabinet .page-hero__subtitle {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.page-hero--services {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-services.png');
}
.page-hero--methodologie {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-methodologie.png');
}
.page-hero--contact {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-contact.png');
}
.page-hero--comptabilite {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-comptabilite.png');
}
.page-hero--fiscalite {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-fiscalite.png');
}
.page-hero--juridique-rh {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-juridique-rh.png');
}
.page-hero--grc {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-grc.png');
}
.page-hero--strategie {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-strategie.png');
}
.page-hero--creation {
    background-image:
        linear-gradient(160deg, rgba(14, 26, 48, 0.65) 0%, rgba(27, 42, 74, 0.55) 40%, rgba(31, 49, 85, 0.58) 70%, rgba(14, 26, 48, 0.68) 100%),
        url('../img/hero/hero-creation.png');
}
