*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ════════════════════════════════
   VARIABLES
════════════════════════════════ */
:root {
    --blue: #416FAF;
    --blue-dark: #1a2d4f;
    --bg: #f8fafd;
    --text: #0f1a2e;
    --text-muted: rgba(15, 26, 46, 0.55);
    --card-bg: #ffffff;
    --border: rgba(65, 111, 175, 0.12);
}

body.dark-mode {
    --bg: #0d0f14;
    --text: #f0f4fa;
    --text-muted: rgba(240, 244, 250, 0.45);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background 0.4s ease, color 0.4s ease;
}

/* ════════════════════════════════
   ACCESSIBILITÉ
════════════════════════════════ */
#btn-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(65, 111, 175, 0.35);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
    z-index: 900;
    pointer-events: none;
}

#btn-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#btn-top:hover {
    background: #3460a0;
}

#btn-top svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

#btn-access {
    position: fixed;
    bottom: 36px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(65, 111, 175, 0.15);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    z-index: 900;
}

#btn-access:hover {
    border-color: var(--blue);
    transform: scale(1.05);
}

#btn-access svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
}

#access-panel {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 240px;
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 12px 40px rgba(65, 111, 175, 0.15);
    z-index: 901;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(12px);
}

#access-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.panel-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(65, 111, 175, 0.6);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.access-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    text-align: left;
    width: 100%;
}

.access-btn:hover {
    background: rgba(65, 111, 175, 0.08);
    border-color: rgba(65, 111, 175, 0.3);
}

.access-btn.active {
    background: rgba(65, 111, 175, 0.12);
    border-color: var(--blue);
    color: var(--blue);
}

.access-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.reading-indicator {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    padding: 8px 14px;
    background: rgba(65, 111, 175, 0.08);
    border-radius: 8px;
}

.reading-indicator.show {
    display: flex;
}

.reading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ════════════════════════════════
   MENU
════════════════════════════════ */
#site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1160px;
}

.header-inner {
    background: #0f1a2e;
    backdrop-filter: blur(18px);
    border-radius: 15px;
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-logo {
    flex-shrink: 0;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

nav>a,
.dropdown-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav>a:hover,
.dropdown-toggle:hover {
    color: white;
    border-color: var(--blue);
}

nav>a.active {
    color: white;
    border-color: var(--blue);
}

.dropdown-toggle svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    z-index: 100;
}

.dropdown-menu-inner {
    background: #0f1a2ec0;
    border-radius: 13px;
    padding: 8px;
    min-width: 290px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 7px;
    transition: background 0.12s, color 0.12s;
}

.dropdown-menu a:hover {
    background: rgba(65, 111, 175, 0.35);
    color: white;
}

.btn-cta {
    flex-shrink: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: white;
    background: var(--blue);
    border: 1px solid rgba(100, 150, 220, 0.6);
    padding: 8px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: 0 0 10px rgba(65, 111, 175, 0.45), 0 0 0 1px rgba(100, 150, 220, 0.15);
}

.btn-cta:hover {
    background: #3460a0;
    box-shadow: 0 0 16px rgba(65, 111, 175, 0.65);
}

/* ════════════════════════════════
   BANNIERE
════════════════════════════════ */
.page-banner {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 70% at 100% 0%, rgba(12, 28, 70, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 55% 55% at 0% 100%, rgba(8, 20, 58, 0.18) 0%, transparent 55%),
        var(--bg);
    z-index: 0;
    transition: background 0.4s ease;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 48px 60px;
    text-align: center;
}

.banner-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.6s ease forwards 0.1s;
}

.banner-label::before,
.banner-label::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s ease forwards 0.25s;
}

.banner-title span {
    color: var(--blue);
}

.banner-sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease forwards 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ════════════════════════════════
   EN-TÊTE DE SECTION (commun)
════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1;
}

.section-title span {
    color: var(--blue);
}

/* ════════════════════════════════
   PRÉSENTATION
════════════════════════════════ */
.presentation-section {
    padding: 100px 48px;
    max-width: 1160px;
    margin: 0 auto;
}

.presentation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.presentation-image {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.presentation-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #dde6f5 0%, #c8d8ee 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(65, 111, 175, 0.4);
    border: 2px dashed rgba(65, 111, 175, 0.2);
    position: relative;
    overflow: visible;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    display: block;
}

.image-placeholder svg {
    width: 44px;
    height: 44px;
}

.image-placeholder>span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-right: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    border-radius: 0 0 12px 0;
    opacity: 0.3;
}

.image-badge {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: white;
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 8px 32px rgba(65, 111, 175, 0.15);
    border: 1px solid rgba(65, 111, 175, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
}

.badge-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #0f1a2e;
    line-height: 1;
}

.badge-number span {
    color: var(--blue);
}

.badge-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(15, 26, 46, 0.4);
}

.presentation-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.presentation-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.presentation-text .section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    flex-shrink: 0;
}

.presentation-text .section-label::after {
    display: none;
}

.section-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-muted);
}

.points-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.point-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(65, 111, 175, 0.1);
    border: 1.5px solid rgba(65, 111, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.point-icon svg {
    width: 11px;
    height: 11px;
    stroke: var(--blue);
}

/* ════════════════════════════════
   ÉQUIPE
════════════════════════════════ */
.equipe-section {
    padding: 100px 48px;
    max-width: 1160px;
    margin: 0 auto;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.member-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    opacity: 0;
    transform: translateY(28px);
}

.member-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(65, 111, 175, 0.12);
    border-color: rgba(65, 111, 175, 0.2);
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--blue), rgba(65, 111, 175, 0.3));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.25s;
}

.member-card:hover::before {
    opacity: 1;
}

.member-initials {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(65, 111, 175, 0.08);
    border: 1.5px solid rgba(65, 111, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--blue);
    letter-spacing: 1px;
    transition: background 0.25s;
}

.member-card:hover .member-initials {
    background: rgba(65, 111, 175, 0.15);
}

.member-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--text);
    line-height: 1.1;
}

.member-role {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--blue);
    line-height: 1.5;
}

.member-spec {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.member-card:nth-child(1) {
    transition-delay: 0.05s;
}

.member-card:nth-child(2) {
    transition-delay: 0.15s;
}

.member-card:nth-child(3) {
    transition-delay: 0.25s;
}

.member-card:nth-child(4) {
    transition-delay: 0.35s;
}

/* ════════════════════════════════
   ÉQUIPEMENTS CARROUSEL
════════════════════════════════ */
.equipements-section {
    padding: 100px 48px;
    max-width: 1160px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrap {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.carousel-wrap.visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-track-outer {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.equip-card {
    flex: 0 0 calc((100% - 40px) / 3);
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.equip-card:hover {
    box-shadow: 0 12px 36px rgba(65, 111, 175, 0.12);
    border-color: rgba(65, 111, 175, 0.2);
}

.equip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--blue), rgba(65, 111, 175, 0.3));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.25s;
}

.equip-card:hover::before {
    opacity: 1;
}

.equip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(65, 111, 175, 0.08);
    border: 1.5px solid rgba(65, 111, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equip-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--blue);
}

.equip-qty {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: var(--blue);
    line-height: 1;
    letter-spacing: 1px;
}

.equip-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.equip-detail {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(65, 111, 175, 0.25);
    background: var(--card-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    box-shadow: 0 2px 10px rgba(65, 111, 175, 0.08);
}

.carousel-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: white;
    transform: scale(1.05);
}

.carousel-btn svg {
    width: 18px;
    height: 18px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(65, 111, 175, 0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
    background: #0f1a2e;
    color: white;
    padding: 64px 48px 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-desc {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.4);
    max-width: 280px;
    margin-top: 16px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.2s;
    border-radius: 1px;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════════════
   BURGER MOBILE
════════════════════════════════ */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(13, 15, 20, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-top: 8px;
    padding: 10px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a,
.mobile-accordion-toggle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.15s, color 0.12s;
    background: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav a:hover,
.mobile-accordion-toggle:hover {
    border-color: var(--blue);
    color: white;
}

.mobile-accordion-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.mobile-accordion-toggle.open svg {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 14px;
}

.mobile-submenu.open {
    display: flex;
}

.mobile-submenu a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    border: none !important;
}

.mobile-cta {
    margin-top: 6px;
    background: var(--blue) !important;
    color: white !important;
    border: 1px solid var(--blue) !important;
    text-align: center;
    font-weight: 600 !important;
    justify-content: center !important;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 860px) {

    nav,
    .btn-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    footer {
        padding: 56px 24px 0;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .equip-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .equipements-section {
        padding: 60px 24px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 110px 24px 50px;
    }
}

@media (max-width: 900px) {
    .presentation-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .presentation-image {
        order: -1;
    }

    .image-badge {
        left: 16px;
        bottom: 16px;
    }

    .presentation-section {
        padding: 60px 24px;
    }
}

@media (max-width: 960px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .equipe-section {
        padding: 60px 24px;
    }

    .equip-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 500px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 16px;
    }
}