/* ============================================================
   HM-DJANTA SÉCURITÉ — Feuille de style principale
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET
   ============================================================ */
:root {
    /* Palette inspirée du logo */
    --color-burgundy:        #6B1F2C;
    --color-burgundy-light:  #8B2635;
    --color-burgundy-deep:   #4A1820;
    --color-forest:          #1B4332;
    --color-forest-light:    #2D5F47;
    --color-forest-deep:     #0F2E22;
    --color-gold:            #C9A45B;

    /* Surfaces */
    --color-bg:              #FAFAF7;
    --color-bg-soft:         #F2F1EB;
    --color-bg-cream:        #EFEDE4;
    --color-surface:         #FFFFFF;
    --color-ink:             #14140F;
    --color-ink-soft:        #3D3D38;
    --color-muted:           #6E6E68;
    --color-border:          rgba(20, 20, 15, 0.08);
    --color-border-strong:   rgba(20, 20, 15, 0.16);

    /* Typographie */
    --font-display: "Bricolage Grotesque", "Space Grotesk", system-ui, sans-serif;
    --font-mono:    "Space Grotesk", ui-monospace, "SF Mono", monospace;
    --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    /* Mesures */
    --container: 1240px;
    --radius-sm: 8px;
    --radius:    16px;
    --radius-lg: 28px;

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.2s;
    --t:      0.4s;
    --t-slow: 0.7s;

    /* Hauteur nav */
    --nav-h: 78px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
address { font-style: normal; }

::selection { background: var(--color-burgundy); color: #fff; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, 0.78);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--color-border);
    box-shadow: 0 8px 32px -16px rgba(20, 20, 15, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.logo-link { display: block; }
.logo { height: 48px; width: auto; transition: transform var(--t) var(--ease); }
.logo-link:hover .logo { transform: scale(1.03); }

.nav-desktop { display: block; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    display: inline-block;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--color-ink-soft);
    border-radius: 999px;
    position: relative;
    transition: color var(--t-fast) var(--ease), background-color var(--t) var(--ease);
}

.nav-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: var(--color-burgundy);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
    z-index: -1;
}

.nav-link:hover { color: var(--color-burgundy); }

.nav-link.is-active {
    color: #fff;
}
.nav-link.is-active::after {
    opacity: 1;
    transform: scale(1);
}

.nav-cta {
    background: var(--color-forest);
    color: #fff;
    padding: 10px 20px;
}
.nav-cta::after { background: var(--color-forest-light); }
.nav-cta.is-active { color: #fff; }
.nav-cta.is-active::after { background: var(--color-forest-light); opacity: 1; transform: scale(1); }
.nav-cta:hover { color: #fff; }
.nav-cta:hover::after { background: var(--color-forest-light); opacity: 1; transform: scale(1); }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    transition: background var(--t-fast) var(--ease);
}

.menu-toggle:hover { background: rgba(20, 20, 15, 0.05); }

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-ink);
    border-radius: 2px;
    transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 15, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.nav-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-mobile {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(360px, 86vw);
    background: #fff;
    z-index: 101;
    transform: translateX(100%);
    transition: transform var(--t) var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px -20px rgba(20, 20, 15, 0.25);
}
.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border-bottom: 1px solid var(--color-border);
}
.logo-mobile { height: 38px; width: auto; }
.nav-mobile-close {
    width: 40px; height: 40px;
    font-size: 28px;
    color: var(--color-ink);
    border-radius: 10px;
    transition: background var(--t-fast) var(--ease);
}
.nav-mobile-close:hover { background: var(--color-bg-soft); }

.nav-mobile-list {
    flex: 1;
    padding: 16px 16px;
    overflow-y: auto;
}

.nav-mobile-link {
    display: block;
    padding: 16px 18px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-ink);
    border-radius: 14px;
    transition: background var(--t) var(--ease), color var(--t-fast) var(--ease), padding-left var(--t) var(--ease);
}

.nav-mobile-link:hover {
    background: var(--color-bg-soft);
    color: var(--color-burgundy);
    padding-left: 24px;
}

.nav-mobile-link.is-active {
    background: var(--color-burgundy);
    color: #fff;
}

.nav-mobile-footer {
    padding: 22px 28px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.nav-mobile-contact {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-ink-soft);
    transition: color var(--t-fast) var(--ease);
}
.nav-mobile-contact:hover { color: var(--color-burgundy); }

/* ============================================================
   3. TYPOGRAPHIE COMMUNE
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.08;
    color: var(--color-ink);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: 22px;
    padding: 6px 14px;
    background: rgba(107, 31, 44, 0.08);
    border-radius: 999px;
}
.eyebrow-light {
    color: var(--color-gold);
    background: rgba(201, 164, 91, 0.14);
}

.section { padding: 120px 0; position: relative; }
.section-light { background: var(--color-bg); }
.section-cream { background: var(--color-bg-cream); }
.section-dark  { background: var(--color-forest-deep); color: #E8E6DF; }
.section-accent{
    background: linear-gradient(180deg, var(--color-burgundy-deep) 0%, var(--color-forest-deep) 100%);
    color: #EFE9DA;
}

.section-head {
    max-width: 880px;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5.4vw, 72px);
    font-weight: 600;
    letter-spacing: -0.03em;
}
.section-title-light { color: #fff; }

.section-intro {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-ink-soft);
    max-width: 680px;
}
.section-intro-light { color: rgba(255, 255, 255, 0.78); }

.prose p { font-size: 16.5px; line-height: 1.75; color: var(--color-ink-soft); margin-bottom: 18px; }
.prose .lead { font-size: 19px; line-height: 1.6; color: var(--color-ink); }
.prose-h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--color-ink);
}

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
    position: relative;
    padding-left: 36px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-ink-soft);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--color-forest);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px var(--color-forest);
}
.check-list li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 13px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}
.check-list strong { color: var(--color-ink); font-weight: 600; }

/* ============================================================
   4. BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.005em;
    cursor: pointer;
    transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    position: relative;
}

.btn-primary {
    background: var(--color-burgundy);
    color: #fff;
    box-shadow: 0 14px 36px -16px rgba(107, 31, 44, 0.55);
}
.btn-primary:hover {
    background: var(--color-burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(107, 31, 44, 0.7);
}
.btn-primary:disabled {
    background: var(--color-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: var(--color-ink);
    border: 1.5px solid var(--color-border-strong);
}
.btn-ghost:hover {
    background: var(--color-ink);
    color: #fff;
    border-color: var(--color-ink);
    transform: translateY(-2px);
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0F2E22 0%, #1B4332 50%, #0F2E22 100%);
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}
.hero-glow-1 {
    width: 520px; height: 520px;
    background: var(--color-burgundy);
    top: -120px; right: -80px;
}
.hero-glow-2 {
    width: 460px; height: 460px;
    background: var(--color-gold);
    bottom: -160px; left: -60px;
    opacity: 0.15;
}

.hero-content { position: relative; z-index: 2; }

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 36px;
}
.hero-tagline-dot {
    width: 8px; height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(201, 164, 91, 0.25);
    animation: pulse 2.2s var(--ease) infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8.5vw, 124px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.045em;
    margin-bottom: 36px;
    color: #fff;
}

.hero-title-accent {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.55;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 80px;
}

.hero-cta .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}
.hero-cta .btn-ghost:hover {
    background: #fff;
    color: var(--color-ink);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-gold);
    margin-bottom: 6px;
}
.hero-stat-label {
    font-family: var(--font-mono);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    display: block;
    z-index: 2;
}
.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #fff;
    border-radius: 3px;
    animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
    0% { opacity: 0; transform: translate(-50%, -4px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ============================================================
   6. À PROPOS — feature mosaic + why-cards + value strip
   ============================================================ */

/* Feature mosaic (image + texte) */
.apropos-feature {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.apropos-feature-text .eyebrow { margin-bottom: 22px; }
.apropos-feature-text .section-title { font-size: clamp(32px, 4vw, 56px); margin-bottom: 30px; }
.apropos-lead {
    font-size: 19px;
    line-height: 1.55;
    color: var(--color-ink);
    font-weight: 500;
    margin-bottom: 18px;
}
.apropos-body {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--color-ink-soft);
}

.apropos-feature-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--color-forest-deep);
}
.apropos-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s var(--ease);
}
.apropos-feature-image:hover img { transform: scale(1.04); }

.apropos-image-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(20, 20, 15, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.apropos-image-tag-dot {
    width: 7px; height: 7px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(201, 164, 91, 0.25);
}

.apropos-stats-overlay {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.apropos-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid var(--color-border);
    padding: 0 18px;
}
.apropos-stat:first-child { padding-left: 0; }
.apropos-stat:last-child { border-right: none; padding-right: 0; }

.apropos-stat-num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-burgundy);
    letter-spacing: -0.03em;
}
.apropos-stat-num small {
    font-size: 18px;
    vertical-align: super;
    margin-left: 1px;
    font-weight: 600;
}
.apropos-stat-lbl {
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-muted);
    line-height: 1.3;
}

/* Why us */
.why-block { margin-bottom: 90px; }
.why-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 600;
    margin-bottom: 44px;
    color: var(--color-ink);
}
.why-title-dot { color: var(--color-burgundy); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    padding: 36px 30px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 24px 48px -24px rgba(20, 20, 15, 0.18);
}
.why-card-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-deep));
    color: #fff;
    border-radius: 14px;
    margin-bottom: 22px;
}
.why-card-icon svg { width: 24px; height: 24px; }
.why-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-ink);
}
.why-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-muted);
}

/* Value strip — horizontal */
.values-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    padding: 32px 36px;
    background: var(--color-forest-deep);
    color: #fff;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.values-strip::before {
    content: "";
    position: absolute;
    right: -100px;
    top: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(201,164,91,0.18) 0%, transparent 70%);
    filter: blur(10px);
}

.values-strip-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.values-strip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.values-strip-items li {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.values-strip-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gold);
    background: rgba(201, 164, 91, 0.15);
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

/* ============================================================
   7. EXPERTISE — big numbers + 3 image pillars + clusters + tiles
   ============================================================ */
.section-dark .eyebrow-light { color: var(--color-gold); }
.section-dark .section-intro-light { color: rgba(232, 230, 223, 0.75); }

/* Header avec big numbers */
.expertise-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: end;
    margin-bottom: 80px;
}
.expertise-head .section-title { margin-bottom: 0; }
.expertise-numbers {
    display: flex;
    gap: 32px;
}
.exp-num-card {
    text-align: right;
}
.exp-num-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
    letter-spacing: -0.04em;
}
.exp-num-value small {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
    font-weight: 600;
}
.exp-num-label {
    display: block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(232, 230, 223, 0.7);
    line-height: 1.3;
}

/* 3 piliers avec image */
.pillars {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 90px;
}

.pillar {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.pillar:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 164, 91, 0.4);
    transform: translateY(-4px);
}
.pillar-flipped { grid-template-columns: 1.3fr 1fr; }
.pillar-flipped .pillar-image { order: 2; }
.pillar-flipped .pillar-content { order: 1; }

.pillar-image {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: var(--color-forest-deep);
}
.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
    filter: saturate(0.85);
    transition: transform 1s var(--ease), opacity var(--t) var(--ease);
}
.pillar-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 46, 34, 0.55) 0%, rgba(74, 24, 32, 0.45) 100%);
}
.pillar:hover .pillar-image img {
    transform: scale(1.04);
    opacity: 0.9;
}
.pillar-letter {
    position: absolute;
    top: 26px; left: 26px;
    z-index: 2;
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-forest-deep);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pillar-content {
    padding: 42px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pillar-title {
    font-size: clamp(26px, 2.6vw, 34px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.pillar-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(232, 230, 223, 0.78);
    margin-bottom: 26px;
    max-width: 540px;
}
.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Tags — réutilisés */
.tag {
    display: inline-block;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gold);
    background: rgba(201, 164, 91, 0.1);
    border: 1px solid rgba(201, 164, 91, 0.22);
    border-radius: 6px;
    transition: background var(--t-fast) var(--ease);
}
.tag:hover { background: rgba(201, 164, 91, 0.22); }

/* Clusters de cadres */
.framework-clusters-block {
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    margin-bottom: 60px;
}
.cluster-block-title {
    font-size: clamp(22px, 2.4vw, 30px);
    color: #fff;
    margin-bottom: 36px;
    font-weight: 600;
}
.framework-clusters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.framework-cluster {
    padding: 24px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius);
    border-left: 3px solid var(--color-gold);
}
.cluster-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 14px;
}
.cluster-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chip {
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    border-radius: 6px;
    transition: background var(--t-fast) var(--ease);
}
.chip:hover { background: rgba(201, 164, 91, 0.2); }

/* Secteurs — tuiles d'icônes */
.sectors-v2-title {
    font-size: clamp(22px, 2.4vw, 30px);
    color: #fff;
    margin-bottom: 28px;
    font-weight: 600;
}
.sectors-v2-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.sector-tile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: rgba(232, 230, 223, 0.85);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease), transform var(--t) var(--ease);
}
.sector-tile svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    transition: color var(--t) var(--ease), transform var(--t) var(--ease);
}
.sector-tile:hover {
    background: rgba(201, 164, 91, 0.12);
    border-color: rgba(201, 164, 91, 0.4);
    color: #fff;
    transform: translateY(-3px);
}
.sector-tile:hover svg { transform: scale(1.1); }

/* ============================================================
   8. SERVICES — tabs + bento grid + feature image card
   ============================================================ */

/* Tabs nav */
.services-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    padding: 8px;
    background: var(--color-bg-cream);
    border-radius: 999px;
    width: fit-content;
    border: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.svc-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 14px;
    border-radius: 999px;
    color: var(--color-ink-soft);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--t) var(--ease), color var(--t-fast) var(--ease);
    border: 0;
}
.svc-tab:hover { color: var(--color-burgundy); }
.svc-tab.is-active {
    background: var(--color-burgundy);
    color: #fff;
    box-shadow: 0 8px 24px -10px rgba(107, 31, 44, 0.5);
}
.svc-tab.is-active:hover { color: #fff; }
.svc-tab-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: inherit;
    flex-shrink: 0;
}
.svc-tab:not(.is-active) .svc-tab-letter {
    background: rgba(107, 31, 44, 0.1);
    color: var(--color-burgundy);
}

/* Tab panels */
.svc-panel {
    display: none;
    animation: tabIn 0.5s var(--ease);
}
.svc-panel.is-active {
    display: block;
}

@keyframes tabIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

/* Bento grid */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.bento-card {
    position: relative;
    padding: 28px 26px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -24px rgba(20, 20, 15, 0.18);
    border-color: transparent;
}

.bento-icon {
    position: absolute;
    top: 24px; left: 26px;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 31, 44, 0.08);
    color: var(--color-burgundy);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
}
.bento-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 8px;
}
.bento-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--color-muted);
}

/* Bento feature — image background */
.bento-feature {
    grid-column: span 2;
    grid-row: span 2;
    background-size: cover;
    background-position: center;
    color: #fff;
    border: 0;
    padding: 0;
    position: relative;
    min-height: 460px;
}
.bento-feature::before {
    content: none;
}
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 46, 34, 0.25) 0%, rgba(15, 46, 34, 0.85) 60%, rgba(15, 46, 34, 0.95) 100%);
}
.bento-feature-content {
    position: relative;
    z-index: 2;
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.bento-tag {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-gold);
    border: 1px solid rgba(201, 164, 91, 0.4);
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bento-feature-content h3 {
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.bento-feature-content p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}
.bento-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -30px rgba(15, 46, 34, 0.5);
}

/* ============================================================
   9. PROCESSUS — header image + phases
   ============================================================ */
.process-head {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}
.process-head-text .eyebrow { margin-bottom: 22px; }
.process-head-text .section-title { margin-bottom: 22px; }
.process-head-text .section-intro { margin-top: 0; }

.process-head-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--color-forest-deep);
}
.process-head-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.process-head-image:hover img { transform: scale(1.04); }

/* Phases */
.process-phases {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.phase-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    padding: 32px 0;
    border-top: 1px solid var(--color-border-strong);
    position: relative;
}

.phase-marker {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    align-self: start;
}
.phase-num {
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-burgundy);
    font-weight: 500;
}
.phase-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.phase-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Quand il n'y a que 2 ou 1 étape */
.phase-row[data-phase="2"] .phase-steps { grid-template-columns: repeat(2, 1fr); }
.phase-row[data-phase="3"] .phase-steps { grid-template-columns: repeat(2, 1fr); }
.phase-row[data-phase="4"] .phase-steps { grid-template-columns: 1fr; max-width: 460px; }

.step {
    padding: 26px 24px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
    position: relative;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(20, 20, 15, 0.15);
}
.step-no {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.step h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 8px;
}
.step p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-muted);
    margin-bottom: 14px;
}
.step-out {
    display: block;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--color-forest);
    font-weight: 500;
    letter-spacing: 0.02em;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}

/* (Anciens styles .timeline supprimés — remplacés par .process-phases ci-dessus) */

/* ============================================================
   10. LOI 25
   ============================================================ */
.section-accent .eyebrow-light { color: var(--color-gold); }

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

.loi25-card {
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.loi25-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 164, 91, 0.5);
    transform: translateY(-6px);
}

.loi25-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--color-gold);
    color: var(--color-forest-deep);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.loi25-card h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}
.loi25-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(239, 233, 218, 0.75);
}

/* ============================================================
   11. CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 34px;
    background: var(--color-forest-deep);
    color: #fff;
    border-radius: var(--radius-lg);
}

.contact-info-label {
    font-family: var(--font-mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(201, 164, 91, 0.9);
    margin-bottom: 8px;
}

.contact-info-value {
    font-size: 16.5px;
    color: #fff;
    line-height: 1.55;
    font-weight: 500;
}
a.contact-info-value { transition: color var(--t-fast) var(--ease); }
a.contact-info-value:hover { color: var(--color-gold); }

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.contact-socials a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #fff;
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.contact-socials a:hover {
    background: var(--color-gold);
    color: var(--color-forest-deep);
    transform: translateY(-3px);
}

.contact-form {
    background: #fff;
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-ink-soft);
    margin-bottom: 8px;
}
.form-field label span { color: var(--color-burgundy); }

.form-field input,
.form-field select,
.form-field textarea {
    font-family: var(--font-body);
    font-size: 15.5px;
    padding: 14px 16px;
    background: var(--color-bg-soft);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--color-ink);
    transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
    width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-burgundy);
    background: #fff;
}

.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.btn .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    display: none;
    animation: spin 0.8s linear infinite;
}
.btn.is-loading .btn-label { opacity: 0.6; }
.btn.is-loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-note {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
}

.form-feedback {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    font-size: 14.5px;
    line-height: 1.5;
    display: none;
}
.form-feedback.is-visible { display: block; }
.form-feedback.is-success {
    background: rgba(45, 95, 71, 0.1);
    color: var(--color-forest);
    border: 1px solid rgba(45, 95, 71, 0.25);
}
.form-feedback.is-error {
    background: rgba(107, 31, 44, 0.08);
    color: var(--color-burgundy);
    border: 1px solid rgba(107, 31, 44, 0.25);
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.72);
    padding-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-tagline {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    max-width: 320px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer-col h5 {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a, .footer-col li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
    transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--color-gold); }

.footer-bottom {
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}
.credit a {
    color: var(--color-gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-fast) var(--ease);
}
.credit a:hover { border-bottom-color: var(--color-gold); }

/* ============================================================
   13. REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

/* ============================================================
   14. RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
    .bento { grid-template-columns: repeat(3, 1fr); }
    .bento-feature { grid-column: span 3; grid-row: span 1; min-height: 360px; }
    .sectors-v2-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .loi25-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar { grid-template-columns: 1fr; }
    .pillar-flipped { grid-template-columns: 1fr; }
    .pillar-flipped .pillar-image { order: 1; }
    .pillar-flipped .pillar-content { order: 2; }
    .pillar-image { min-height: 260px; }

    .framework-clusters { grid-template-columns: 1fr; }

    .expertise-head {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .expertise-numbers { gap: 24px; }
    .exp-num-card { text-align: left; }

    .process-head { grid-template-columns: 1fr; gap: 36px; }

    .phase-row { grid-template-columns: 1fr; gap: 24px; }
    .phase-marker { position: static; }
}

@media (max-width: 960px) {
    .nav-desktop { display: none; }
    .menu-toggle { display: flex; }

    .section { padding: 90px 0; }
    .section-head { margin-bottom: 56px; }

    .apropos-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    .apropos-feature-image { aspect-ratio: 4 / 3; }

    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-info { position: static; }

    .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .bento-feature { grid-column: span 2; min-height: 320px; }

    .sectors-v2-grid { grid-template-columns: repeat(3, 1fr); }

    .phase-steps,
    .phase-row[data-phase="2"] .phase-steps,
    .phase-row[data-phase="3"] .phase-steps { grid-template-columns: repeat(2, 1fr); }
    .phase-row[data-phase="4"] .phase-steps { max-width: none; }

    .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
    :root { --nav-h: 70px; }

    .container { padding: 0 20px; }

    .logo { height: 40px; }
    .footer-logo { height: 48px; }

    .hero {
        min-height: auto;
        padding: calc(var(--nav-h) + 40px) 0 60px;
    }
    .hero-stats { gap: 32px; }

    /* À propos */
    .why-grid { grid-template-columns: 1fr; }
    .values-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 24px;
    }
    .values-strip-label {
        border-right: none;
        padding-right: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .values-strip-items { gap: 16px; }
    .values-strip-items li { font-size: 15px; }

    .apropos-stats-overlay {
        padding: 18px 16px;
    }
    .apropos-stat { padding: 0 10px; }
    .apropos-stat-num { font-size: 28px; }
    .apropos-stat-lbl { font-size: 10px; }

    /* Expertise */
    .expertise-numbers {
        flex-direction: column;
        gap: 20px;
    }
    .framework-clusters-block { padding: 28px 22px; }

    /* Services */
    .services-tabs {
        width: 100%;
        flex-direction: column;
        border-radius: var(--radius);
    }
    .svc-tab { width: 100%; padding: 12px 18px; border-radius: var(--radius-sm); }
    .bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
    .bento-card { min-height: 160px; padding: 26px 22px; }
    .bento-icon { position: static; margin-bottom: 16px; }
    .bento-feature { grid-column: span 1; min-height: 320px; }
    .bento-feature-content { padding: 32px 26px; }

    /* Loi25 */
    .loi25-grid { grid-template-columns: 1fr; }

    /* Processus */
    .phase-steps,
    .phase-row[data-phase="2"] .phase-steps,
    .phase-row[data-phase="3"] .phase-steps { grid-template-columns: 1fr; }

    /* Secteurs */
    .sectors-v2-grid { grid-template-columns: repeat(2, 1fr); }

    /* Formulaire */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-row .form-field { margin-bottom: 18px; }
    .contact-form { padding: 32px 24px; }

    .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom-inner { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .footer-cols { grid-template-columns: 1fr; }
    .sectors-v2-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    html { scroll-behavior: auto; }
}
