/* ============================================
   M:ARMITES - Solutions informatiques mijotées
   Main Stylesheet
   ============================================ */

/* --- Font Faces --- */
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata';
    src: url('../fonts/Metadata-Extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata Condensed';
    src: url('../fonts/Metadata-RegularCondensed.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata Condensed';
    src: url('../fonts/Metadata-BoldCondensed.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Metadata Condensed';
    src: url('../fonts/Metadata-ExtraboldCondensed.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* --- CSS Custom Properties --- */
:root {
    --cyan: #32d7d7;
    --red: #780116;
    --orange: #f26419;
    --yellow: #f6ae2d;
    --dark-blue: #0f1455;
    --white: #ffffff;
    --light-gray: #f5f5f7;
    --medium-gray: #e0e0e0;
    --text-gray: #6b7280;
    --text-dark: #1a1a2e;

    --font-main: 'Metadata', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-condensed: 'Metadata Condensed', 'Metadata', sans-serif;

    --container-width: 1200px;
    --section-padding: 100px 0;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-condensed);
    font-weight: 700;
    line-height: 1.1;
}

/* --- Utility --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-cyan { color: var(--cyan); }
.text-dark-blue { color: var(--dark-blue); }
.text-white { color: var(--white); }
.text-orange { color: var(--orange); }

.bg-dark-blue { background-color: var(--dark-blue); }
.bg-cyan { background-color: var(--cyan); }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light-gray); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-cyan {
    background-color: var(--cyan);
    color: var(--dark-blue);
}
.btn-cyan:hover {
    background-color: #28c4c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(50, 215, 215, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--cyan);
    color: var(--cyan);
}
.btn-outline:hover {
    background-color: var(--cyan);
    color: var(--dark-blue);
}

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

.btn-dark {
    background-color: var(--dark-blue);
    color: var(--white);
}
.btn-dark:hover {
    background-color: #1a1f6e;
    transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--dark-blue);
    padding: 0 24px;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-menu a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cyan);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--cyan);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--dark-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-family: var(--font-condensed);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-content h1 .accent {
    color: var(--cyan);
}

.hero-content .baseline {
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.hero-content .underscore {
    color: var(--cyan);
    font-weight: 700;
}

.hero-emblem {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-emblem img {
    width: 80%;
    max-width: 400px;
    opacity: 0.15;
}

/* --- Intro Section --- */
.intro {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
}

.intro strong {
    font-weight: 700;
}

/* --- Expertises (3 piliers) --- */
.expertises {
    padding: 100px 0;
    background-color: var(--white);
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.expertise-card {
    padding: 0;
}

.expertise-card h3 {
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cyan);
    line-height: 1.1;
    margin-bottom: 4px;
}

.expertise-card .separator {
    width: 40px;
    height: 3px;
    background-color: var(--cyan);
    margin: 16px 0 24px;
}

.expertise-card ul {
    list-style: none;
}

.expertise-card ul li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 16px;
}

.expertise-card ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
}

.expertise-card a {
    display: inline-block;
    margin-top: 24px;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 2px;
}

.expertise-card a:hover {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* --- Stats Section --- */
.stats {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.stat-item .stat-number {
    font-family: var(--font-condensed);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}

.stat-item .stat-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-top: 4px;
}

/* --- Brigade Section --- */
.brigade-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.brigade-image {
    aspect-ratio: 4/3;
    background-color: var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.brigade-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1f6e 100%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    font-weight: 500;
}

.brigade-content {
    padding: 40px;
    background-color: var(--dark-blue);
    border-radius: 8px;
    color: var(--white);
}

.brigade-content h2 {
    font-family: var(--font-condensed);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.brigade-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.brigade-content .btn {
    margin-top: 16px;
}

/* --- Philosophie Section --- */
.philosophie {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.philosophie .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophie-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.philosophie-text .btn {
    margin-top: 16px;
}

.philosophie-quote {
    padding: 48px;
    position: relative;
}

.philosophie-quote h2 {
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 24px;
    font-style: italic;
}

.philosophie-quote .highlight {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cyan);
    font-style: italic;
    line-height: 1.3;
}

/* --- Citation Section --- */
.citation {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.citation blockquote {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.citation blockquote::before {
    content: '\201C';
    font-family: var(--font-condensed);
    font-size: 6rem;
    color: var(--cyan);
    position: absolute;
    top: -30px;
    left: 0;
    line-height: 1;
}

.citation blockquote p {
    font-family: var(--font-condensed);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: var(--dark-blue);
    line-height: 1.4;
    font-style: italic;
}

.citation .author {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* --- Blog Section --- */
.blog-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.blog-section .section-header {
    margin-bottom: 48px;
}

.blog-section .section-header h2 {
    font-family: var(--font-condensed);
    font-size: 2.5rem;
    color: var(--dark-blue);
}

.blog-section .section-header h2 .accent {
    color: var(--cyan);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.blog-card-image {
    aspect-ratio: 16/9;
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}

.blog-card-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    padding: 16px 20px 0;
    flex-wrap: wrap;
}

.blog-card-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 3px;
    background-color: var(--light-gray);
    color: var(--text-gray);
}

.blog-card-tags span.tag-cybersecurite { background-color: #fde8e8; color: var(--red); }
.blog-card-tags span.tag-ia { background-color: #e8f4fd; color: #0369a1; }
.blog-card-tags span.tag-materiel { background-color: #fef3e2; color: var(--orange); }
.blog-card-tags span.tag-logiciel { background-color: #e8fdf5; color: #047857; }
.blog-card-tags span.tag-budget { background-color: #fef9e7; color: #92400e; }
.blog-card-tags span.tag-prestataire { background-color: #ede9fe; color: #6d28d9; }
.blog-card-tags span.tag-office365 { background-color: #e8f4fd; color: #0369a1; }
.blog-card-tags span.tag-transition { background-color: #f0fdf4; color: #166534; }

.blog-card-body {
    padding: 16px 20px 24px;
}

.blog-card-body h3 {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-card-body .date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.blog-card-body .read-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
}

.blog-card-body .read-more:hover {
    color: var(--dark-blue);
}

.blog-more {
    text-align: center;
    margin-top: 48px;
}

/* --- CTA / Footer --- */
.cta-footer {
    padding: 80px 0;
    background-color: var(--dark-blue);
}

.cta-footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-family: var(--font-condensed);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--cyan);
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-content a.email {
    display: inline-block;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.cta-content a.email:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.footer-info {
    text-align: right;
}

.footer-info .footer-logo {
    margin-bottom: 16px;
}

.footer-info .footer-logo img {
    height: 40px;
    margin-left: auto;
}

.footer-info .footer-baseline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-info .footer-address {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-bottom {
    background-color: #0a0f3d;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Page Header (inner pages) --- */
.page-header {
    background-color: var(--dark-blue);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-condensed);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Expertises Page --- */
.pilier-section {
    padding: 100px 0;
}

.pilier-section:nth-child(even) {
    background-color: var(--light-gray);
}

.pilier-header {
    margin-bottom: 60px;
}

.pilier-header h2 {
    font-family: var(--font-condensed);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.pilier-header .separator {
    width: 60px;
    height: 4px;
    background-color: var(--cyan);
    margin: 16px 0 24px;
}

.pilier-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--cyan);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pilier-section:nth-child(even) .service-card {
    background-color: var(--white);
}

.service-card h4 {
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Enjeux Page --- */
.enjeux-section {
    padding: 100px 0;
}

.enjeux-section:nth-child(even) {
    background-color: var(--light-gray);
}

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

.enjeu-grid.reverse {
    direction: rtl;
}

.enjeu-grid.reverse > * {
    direction: ltr;
}

.enjeu-content h2 {
    font-family: var(--font-condensed);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.enjeu-content .target-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.enjeu-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.enjeu-content ul {
    margin-bottom: 24px;
}

.enjeu-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.enjeu-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
}

.enjeu-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1f6e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

/* --- Brigade Page --- */
.brigade-page-section {
    padding: 100px 0;
}

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

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

.team-card .avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1f6e 100%);
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.team-card h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.values-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

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

.value-card {
    text-align: center;
    padding: 32px 24px;
}

.value-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.value-card h4 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* --- Blog Page --- */
.blog-page {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.blog-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-filters button {
    padding: 8px 20px;
    border-radius: 20px;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-gray);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filters button:hover,
.blog-filters button.active {
    border-color: var(--cyan);
    color: var(--dark-blue);
    background-color: rgba(50, 215, 215, 0.1);
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* --- Article Page --- */
.article-page {
    padding: 80px 0;
    background-color: var(--white);
}

.article-container {
    max-width: 760px;
    margin: 0 auto;
}

.article-meta {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--medium-gray);
}

.article-meta .date {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.article-meta .author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.article-body h2 {
    font-family: var(--font-condensed);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 40px 0 16px;
}

.article-body h3 {
    font-family: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 32px 0 12px;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body ul li,
.article-body ol li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
    list-style: disc;
}

.article-body ol li {
    list-style: decimal;
}

.article-body strong {
    font-weight: 700;
    color: var(--dark-blue);
}

.article-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--medium-gray);
}

/* --- Contact Page --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    transition: var(--transition);
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(50, 215, 215, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    padding: 40px;
    background-color: var(--dark-blue);
    border-radius: 8px;
    color: var(--white);
}

.contact-info h3 {
    font-family: var(--font-condensed);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

.contact-info-item {
    margin-bottom: 24px;
}

.contact-info-item .label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin-bottom: 6px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-map {
    margin-top: 32px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a0f3d 0%, var(--dark-blue) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .expertises-grid,
    .services-grid,
    .blog-grid,
    .blog-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--dark-blue);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu.open {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-emblem {
        display: none;
    }

    .expertises-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .brigade-grid,
    .philosophie .container,
    .enjeu-grid,
    .enjeu-grid.reverse,
    .contact-grid,
    .cta-footer .container {
        grid-template-columns: 1fr;
    }

    .enjeu-grid.reverse {
        direction: ltr;
    }

    .footer-info {
        text-align: left;
    }

    .footer-info .footer-logo img {
        margin-left: 0;
    }

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

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

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

    .page-header {
        padding: 120px 0 60px;
    }
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- New components: Expertises page --- */

.pilier-baseline {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 16px;
    font-style: italic;
}

.actions-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.actions-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

.actions-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.engagement-box {
    margin-top: 48px;
    padding: 32px;
    background: var(--light-gray);
    border-left: 4px solid var(--cyan);
    border-radius: 4px;
}

.engagement-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 16px;
    font-style: italic;
}

.engagement-statement {
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* --- New components: Enjeux page --- */

.enjeu-accroche {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.enjeu-role {
    margin-top: 24px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- New components: Brigade page --- */

.value-tagline {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 8px;
    font-style: italic;
}
