:root {
    --primary-color: #1a237e; /* Bleu foncé Volting */
    --secondary-color: #eab308; /* Jaune Volting */
    --accent-color: #f5f5f5; /* Blanc cassé */
    --text-color: #222;
    --light-bg: #f9fafb;
    --white: #fff;
    --black: #000;
}

body, html {
  font-family: 'Segoe UI', Arial, sans-serif !important;
}
* {
  font-family: inherit !important;
}

body, html, main, .container, .presentation-volting-section, body > div, body > section, body > main {
  background: transparent !important;
}

body.high-contrast, body.high-contrast * {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

body.text-zoomed, body.text-zoomed * {
    font-size: 1.35em !important;
    line-height: 1.7 !important;
}

body.high-contrast .accessibility-menu,
body.high-contrast #accessibility-panel {
    background: #000 !important;
    color: #fff !important;
}
body.high-contrast .access-switch {
    background: #111 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
}
body.high-contrast .access-switch .switch-label {
    color: #fff !important;
}
body.high-contrast .access-switch.on, body.high-contrast .access-switch.on:focus, body.high-contrast .access-switch.on:hover {
    background: #222 !important;
    border-color: #eab308 !important;
    box-shadow: 0 0 0 3px #eab308cc !important;
}
body.high-contrast .access-switch.on .switch-track {
    background: #eab308 !important;
    border-color: #eab308 !important;
}
body.high-contrast .access-switch:not(.on) .switch-track {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
}
body.high-contrast .access-switch .switch-thumb {
    background: #fff !important;
}
body.high-contrast .access-reset {
    background: #eab308 !important;
    color: #111 !important;
    border: none !important;
}
body.high-contrast .access-reset:hover {
    background: #fff !important;
    color: #eab308 !important;
    border: 2px solid #eab308 !important;
}
body.high-contrast #accessibility-tip {
    background: #111 !important;
    color: #fff !important;
}

body.high-contrast .hero-bg-video,
body.high-contrast video {
    filter: none !important;
    background: #000 !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    outline: 4px solid #1a237e !important;
    outline-offset: 0px !important;
    box-shadow: 0 0 0 4px #1a237e !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent !important;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(26,35,126,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.language-switch {
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s cubic-bezier(.4,2,.6,1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    border-radius: 4px;
}
.lang-switch:hover {
    transform: translateY(-4px) scale(1.15) rotate(-4deg);
    box-shadow: 0 6px 18px rgba(26,35,126,0.18);
    background: #f7f7f7;
}
.lang-switch.active {
    outline: 2px solid #eab308;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.08);
    background: #000;
}
.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 320px;
    object-fit: cover;
    object-position: center 35% !important;
    z-index: 1;
    pointer-events: none;
    background: transparent !important;
    transition: height 0.3s, width 0.3s;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent !important;
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 72%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    text-align: left;
    max-width: 700px;
    width: 100%;
    margin: 0;
    padding: 0 2.5rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    backdrop-filter: blur(2px);
    opacity: 1 !important;
}
.hero-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
    line-height: 1.2;
    letter-spacing: 0.2px;
    white-space: pre-line;
}
.hero-content h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.hero-content h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.45);
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    transition: background 0.3s, color 0.3s;
}
.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Innovation Section */
.innovation {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.innovation h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 800;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(26,35,126,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid var(--secondary-color);
}

.innovation-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(26,35,126,0.13);
}

.innovation-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.innovation-card h3 {
    color: var(--primary-color);
    font-weight: 700;
}

/* Spectacles Section */
.spectacles {
    padding: 5rem 0;
    background: var(--light-bg);
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(26,35,126,0.08);
    border-left: 6px solid var(--secondary-color);
}

.event-date {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.event-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Recherche Section */
.recherche {
    padding: 5rem 0;
    background-color: var(--accent-color);
}

.research-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.research-text ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.research-image img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--secondary-color);
}

/* Footer */
.footer {
    background: #eab308 !important;
    color: #fff !important;
    border-top-left-radius: 60px !important;
    border-top-right-radius: 60px !important;
    box-shadow: 0 -2px 24px rgba(26,35,126,0.10);
    margin-top: auto;
    padding: 3.5em 0 1.5em 0;
    position: relative;
    z-index: 10;
}
.footer-link, .footer-link:visited {
  color: #2336c4 !important;
  background: none !important;
}
.footer-link:hover, .footer-link:focus {
  background: #2336c4 !important;
  color: #fff !important;
}
.footer-links-col h4 {
  color: #1a237e !important;
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 0.7em;
  letter-spacing: 0.5px;
  text-align: center;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.13);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
}

.back-to-top-svg {
    position: absolute;
    right: 32px;
    bottom: 32px;
    background: #1a237e;
    color: #eab308;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26,35,126,0.18);
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.back-to-top-svg svg {
    width: 40px;
    height: 40px;
    display: block;
}
.back-to-top-svg:focus {
    outline: 3px solid #eab308;
}
@media (max-width: 900px) {
    .back-to-top-svg {
        width: 44px;
        height: 44px;
        right: 8px;
        bottom: 24px;
    }
    .back-to-top-svg svg {
        width: 32px;
        height: 32px;
    }
}

.logo-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
}

.footer-logo, .footer-logo-partner {
    margin: 0;
}

.footer-logo {
    height: 60px;
    filter: drop-shadow(0 2px 4px rgba(26,35,126,0.1));
}

.footer-tagline {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.newsletter-section h3,
.links-section h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    border: 1px solid var(--secondary-color);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--primary-color);
    opacity: 0.9;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.footer-link:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26,35,126,0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-logo-partner {
    height: 44px;
    margin-left: 18px;
    margin-right: 0;
    vertical-align: middle;
    filter: drop-shadow(0 1px 3px rgba(26,35,126,0.10));
}

@media (max-width: 900px) {
    .footer-content.new-footer-structure {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section {
        padding: 1.2rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    .footer-logo-partner {
        height: 32px;
        margin-left: 10px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .research-content {
        grid-template-columns: 1fr;
    }
    .hero-content {
        max-width: 95vw;
        padding: 0 1.2rem;
        top: 82%;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
    .hero-content h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero h2 {
        font-size: 1.1rem;
    }
    .container {
        padding: 0 8px;
    }
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3em;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(26,35,126,0.10);
    border-radius: 8px;
    z-index: 1001;
    margin-top: 0.5em;
}
.dropdown-content a {
    color: #1a237e;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    border-radius: 0;
    background: none;
    transition: background 0.2s, color 0.2s;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background: #eab308;
    color: #fff;
}
.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
    display: block;
}

.volting-header {
    background: #fff;
    border-bottom: 4px solid #eab308;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
    margin-bottom: 0.5rem;
}
.volting-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem 0.5rem 2rem;
}
.header-left em {
    color: #222;
    font-size: 1rem;
}
.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-logo {
    height: 60px;
    margin-bottom: 0.2rem;
}
.header-title-main {
    color: #eab308;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    margin-top: 0.2rem;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.lang-icon img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #eee;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.lang-icon i.fa-globe {
    font-size: 1.3rem;
    color: #222;
    margin-left: 0.2rem;
}
.volting-navbar {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
    background: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-top: 1px solid #f5f5f5;
    position: relative;
}
.volting-navbar a {
    color: #1a237e;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.volting-navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #eab308;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.volting-navbar a:hover {
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
    transform: translateY(-2px);
}
.volting-navbar a:hover::after {
    width: 80%;
}
.volting-navbar a.active {
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
}
.volting-navbar a.active::after {
    width: 80%;
}
@media (max-width: 900px) {
    .volting-header-top {
        flex-direction: column;
        gap: 0.7rem;
        padding: 1rem 0.5rem 0.5rem 0.5rem;
    }
    .volting-navbar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0.8rem;
    }
    .volting-navbar a {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}
@media (max-width: 600px) {
    .volting-navbar {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .volting-navbar a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
}

.citation-banner {
    background: #f9fafb;
    border-bottom: 2px solid #eab308;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    color: #1a237e;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.04);
    margin-bottom: 0.5rem;
}
.citation-banner blockquote {
    margin: 0;
    padding: 0;
    quotes: "\201C" "\201D";
}

.volting-presentation {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
}
.presentation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.presentation-text {
    flex: 2;
    min-width: 260px;
}
.presentation-text h2 {
    color: #1a237e;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.presentation-text p {
    color: #222;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.presentation-btn {
    background: #eab308;
    color: #1a237e;
    font-weight: 700;
    border-radius: 30px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    transition: background 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}
.presentation-btn:hover {
    background: #1a237e;
    color: #fff;
}
.presentation-image {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.presentation-image img {
    max-width: 160px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.10);
    background: #f9fafb;
    padding: 0.7rem;
}
@media (max-width: 900px) {
    .presentation-container {
        flex-direction: column;
        gap: 2rem;
    }
    .volting-presentation {
        padding: 2.5rem 0 2rem 0;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1201;
    margin-right: 0.5rem;
    transition: transform 0.18s, box-shadow 0.18s;
}
.hamburger:hover, .hamburger:focus {
    transform: translateY(-4px) scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 18px rgba(26,35,126,0.13);
    outline: none;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-label {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    user-select: none;
}

.hero-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    pointer-events: auto;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .volting-navbar {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 16px rgba(26,35,126,0.10);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 5rem 2rem 2rem 2rem;
        z-index: 1200;
        transition: right 0.35s cubic-bezier(.4,2,.6,1);
        border-top-left-radius: 32px;
        border-bottom-left-radius: 32px;
        overflow-y: auto;
    }
    .volting-navbar.open {
        right: 0;
    }
    .volting-navbar a {
        font-size: 1.2rem;
        width: 100%;
        padding: 1rem 0.5rem;
        border-radius: 8px;
        text-align: left;
    }
    body.menu-open {
        overflow: hidden;
    }
}

/* Animation hamburger croix */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    pointer-events: none;
}

.hero-menu {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    pointer-events: auto;
}

.language-switcher {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.lang-btn.active {
    background: #fffbe7 !important;
    border: 3px solid #eab308 !important;
    border-radius: 12px !important;
    padding: 0.2em 0.7em !important;
    box-shadow: 0 4px 16px rgba(234,179,8,0.18), 0 2px 8px rgba(26,35,126,0.10) !important;
    transition: box-shadow 0.25s, border 0.25s, background 0.25s, padding 0.25s, filter 0.25s;
}
.lang-btn.active img {
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 1px 4px rgba(26,35,126,0.10));
}

.lang-flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.hero-logo {
    position: relative;
    z-index: 11;
}

.hero-logo img {
    height: 120px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
    transition: transform 0.3s;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .hero-header {
        padding: 1.2rem 1rem;
    }
    .hero-logo img {
        height: 80px;
    }
    .lang-flag {
        width: 28px;
        height: 21px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        position: absolute !important;
        top: 170px !important; /* descendu encore plus bas sous le menu */
        left: 4vw !important;
        transform: none !important;
        width: 85vw !important;
        max-width: 92vw !important;
        padding: 0 !important;
        background: none !important;
        border-radius: 0 !important;
        z-index: 3 !important;
        text-align: left !important;
        color: #fff !important;
        box-shadow: none !important;
        font-size: 0.88em !important;
    }
    .hero-content h2, .hero-content h3 {
        color: #fff !important;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
        font-size: 0.98em !important;
        margin-bottom: 0.18em !important;
        margin-top: 0 !important;
        line-height: 1.18 !important;
        font-weight: 400 !important;
    }
    .hero-content h2 {
        font-size: 1em !important;
        font-weight: 600 !important;
    }
    .hero-content h3 {
        font-size: 0.92em !important;
        font-weight: 400 !important;
    }
}

.hero-fullscreen {
    position: relative;
    width: 100vw;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.08);
    background: #000;
}
.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 320px;
    object-fit: cover;
    object-position: center 35% !important;
    z-index: 1;
    pointer-events: none;
    background: transparent !important;
    transition: height 0.3s, width 0.3s;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100%;
    background: linear-gradient(120deg,rgba(0,0,0,0.45) 60%,rgba(26,35,126,0.25) 100%);
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: absolute;
    top: 72%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    text-align: left;
    max-width: 700px;
    width: 100%;
    margin: 0;
    padding: 0 2.5rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    backdrop-filter: blur(2px);
    opacity: 1 !important;
}
.hero-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
    line-height: 1.2;
    letter-spacing: 0.2px;
    white-space: pre-line;
}
.hero-content h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}
.hero-content h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.45);
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
}
.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-hero:hover {
    background: #fff;
    color: #1a237e;
}
@media (max-width: 900px) {
    .hero-content {
        max-width: 95vw;
        padding: 0 0.7rem;
        margin-top: 0.7rem;
    }
}
@media (max-width: 600px) {
    .hero-content {
        max-width: 99vw;
        padding: 0 0.3rem;
        margin-top: 0.5rem;
    }
}

.side-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.25);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.side-menu.open + .side-menu-overlay,
.side-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 370px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 32px rgba(26,35,126,0.13);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1201;
    padding: 2.5rem 0 2rem 0;
    transition: left 0.35s cubic-bezier(.4,2,.6,1), opacity 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    border: 3px solid #eab308;
    box-shadow: 0 0 18px 2px rgba(234,179,8,0.18), 0 2px 16px rgba(26,35,126,0.10);
    background: #fffbe7 !important;
}
.side-menu.open {
    left: 0;
    opacity: 1;
    box-shadow: 2px 0 32px rgba(26,35,126,0.13);
    pointer-events: auto;
}
.side-menu ul {
    list-style: none;
    padding: 0 2rem;
    margin: 0;
}
.side-menu li {
    margin-bottom: 1.2rem;
}
.side-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.35rem;
    color: #111;
    text-decoration: none;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    padding: 1.1rem 1.2rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
    transition: color 0.25s;
}
.side-menu a:hover, .side-menu a:focus {
    background: #f7f7f7;
    color: #eab308;
    transform: translateY(-4px) scale(1.04) rotate(-2deg);
    box-shadow: 0 6px 18px rgba(26,35,126,0.13);
    outline: none;
}
.side-menu .arrow {
    font-size: 1.3rem;
    color: #888;
    margin-left: 1.2rem;
    transition: color 0.18s;
}
.side-menu a.active .arrow,
.side-menu a:hover .arrow {
    color: #1a237e;
}
.side-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 3px;
    background: #eab308;
    transition: width 0.35s cubic-bezier(.4,2,.6,1);
    border-radius: 2px;
}
.side-menu a:hover::after,
.side-menu a:focus::after,
.side-menu a:active::after,
.side-menu a.active::after {
    width: 100%;
}
.side-menu a:hover,
.side-menu a:focus,
.side-menu a:active,
.side-menu a.active {
    color: #eab308;
    background: #fffbe7;
    transition: color 0.25s, background 0.25s;
}
@media (max-width: 600px) {
    .side-menu {
        left: -100vw;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        padding: 1.2rem 0 1.2rem 0;
        font-size: 1.1rem;
        min-width: 0;
        top: 0;
    }
    .side-menu.open {
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        border-radius: 0;
    }
    .side-menu ul {
        padding: 0 0.5rem;
    }
    .side-menu li {
        margin-bottom: 1.1rem;
    }
}

.maintenance-info {
    background: #fffbe7;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.07);
    margin: 2.5rem auto 2rem auto;
    max-width: 700px;
    padding: 2.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.maintenance-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.maintenance-img {
    width: 360px;
    max-width: 98vw;
    height: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 8px rgba(26,35,126,0.10));
}
.maintenance-text {
    text-align: center;
}
.maintenance-text h2 {
    color: #eab308;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.maintenance-text p {
    color: #222;
    font-size: 1.05rem;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .maintenance-info {
        padding: 1.2rem 0.5rem;
    }
    .maintenance-img {
        width: 220px;
    }
}

.lang-flag-en {
    width: 44px;
    height: 32px;
}
@media (max-width: 600px) {
    .lang-flag-en {
        width: 32px;
        height: 24px;
    }
}

.volting-3blocs {
    display: block;
    max-width: 1200px;
    margin: 2.5rem auto 2rem auto;
    background: none;
}
.volting-bloc {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.07);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 6px solid #eab308;
    transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
    cursor: pointer;
    position: relative;
    margin-bottom: 2.5rem;
}
.volting-bloc:hover {
    box-shadow: 0 8px 32px rgba(26,35,126,0.13);
    transform: translateY(-6px) scale(1.03);
    border-bottom: 6px solid #1a237e;
}
.volting-citation-card {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #eab308;
    color: #1a237e;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    padding: 0.7rem 1.1rem;
    margin-bottom: 1.1rem;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}
.volting-citation-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 18px rgba(26,35,126,0.18);
    background: #ffe066;
}
.volting-citation-card i {
    margin-right: 0.7em;
    font-size: 1.3em;
    vertical-align: middle;
}
.volting-bloc h3 {
    color: #1a237e;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
}
.volting-minicards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
    margin-top: 1.2rem;
    justify-items: center;
}
.volting-minicard {
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 1px 6px rgba(26,35,126,0.06);
    padding: 1.1rem 0.8rem 1.1rem 0.8rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.18s, transform 0.18s;
    cursor: pointer;
    position: relative;
}
.volting-minicard:hover {
    box-shadow: 0 6px 18px rgba(26,35,126,0.13);
    transform: translateY(-4px) scale(1.03);
}
.volting-minicard strong {
    color: #1a237e;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    display: block;
}
.volting-minicard ul {
    list-style: disc inside;
    color: #222;
    font-size: 1rem;
    padding-left: 0.5rem;
    margin-bottom: 0;
}
.volting-minicard ul li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}
.partner-logo {
    height: 60px;
    max-width: 120px;
    width: auto;
    margin: 0.5rem 0.7rem 0.5rem 0;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s;
}
.partner-logo:hover {
    transform: scale(1.08);
}
.partner-illustration {
    margin-top: 0.4em;
    text-align: center;
}
.partner-illustration img {
    width: 200px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(26,35,126,0.13);
    background: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
}
.partner-illustration img:hover {
    transform: translateY(-6px) scale(1.07) rotate(-2deg);
    box-shadow: 0 10px 28px rgba(26,35,126,0.18);
}
.partner-illustration img + img {
    margin-top: 2.2em;
}
@media (max-width: 900px) {
    .volting-3blocs {
        max-width: 99vw;
    }
    .volting-bloc {
        min-height: 220px;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .volting-bloc h3 {
        font-size: 1.1rem;
    }
    .volting-minicards {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .volting-minicard {
        min-height: 120px;
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
    }
}

.arts-bloc .volting-minicards, .innovation-bloc .volting-minicards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.arts-bloc .volting-minicard, .innovation-bloc .volting-minicard {
    margin-left: auto;
    margin-right: auto;
}
.arts-bloc .partner-logo, .innovation-bloc .partner-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.7em;
}
.arts-bloc .partner-illustration, .innovation-bloc .partner-illustration {
    text-align: center;
}

.arts-bloc h3, .innovation-bloc h3 {
    text-align: center;
    width: 100%;
}

.volting-3colonnes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 2.5rem auto 1.5rem auto;
    background: transparent !important;
}
.volting-3colonnes .colonne {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(26,35,126,0.07);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.volting-3colonnes h3 {
    color: #1a237e;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    letter-spacing: 0.5px;
}
.volting-3colonnes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.volting-3colonnes li {
    margin-bottom: 1.1rem;
}
.volting-3colonnes a {
    color: #1a237e;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.volting-3colonnes a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Carrousel de logos partenaires */
.volting-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2.5rem auto;
    overflow-x: auto;
    padding: 1.2rem 0.2rem;
}
.carousel-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    min-width: 600px;
    width: max-content;
    scroll-behavior: smooth;
}
.carousel-logo {
    height: 70px;
    width: auto;
    max-width: 160px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 8px rgba(26,35,126,0.13);
    padding: 0.5rem 1.2rem;
    transition: transform 0.18s, box-shadow 0.18s;
    cursor: pointer;
    display: block;
}
.carousel-logo:hover {
    transform: scale(1.09) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(26,35,126,0.18);
    background: #ffe066;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #1a237e;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(26,35,126,0.13);
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
}
.carousel-arrow.left {
    left: 0.5rem;
}
.carousel-arrow.right {
    right: 0.5rem;
}
.carousel-arrow:hover {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,35,126,0.18);
    opacity: 1;
}
@media (max-width: 900px) {
    .volting-3colonnes {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .volting-carousel {
        max-width: 99vw;
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

@media (max-width: 700px) {
    .presentation-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    .volting-presentation {
        padding: 1.5rem 0 1.2rem 0;
        margin: 1.2rem auto 1.2rem auto;
        border-radius: 18px;
    }
    .presentation-text h2 {
        font-size: 1.25rem;
        margin-bottom: 0.7rem;
    }
    .presentation-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
    .presentation-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .volting-3colonnes {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        max-width: 99vw;
        padding: 0 0.5rem;
    }
    .volting-3colonnes .colonne {
        min-width: 0;
        width: 100%;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        margin: 0 auto;
        border-radius: 14px;
    }
    .volting-3colonnes h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    .volting-3colonnes ul {
        padding: 0;
    }
    .volting-3colonnes li {
        margin-bottom: 0.7rem;
    }
    .volting-citation-card {
        font-size: 0.98rem;
        padding: 0.5rem 0.7rem;
        margin-bottom: 0.7rem;
    }
    .volting-carousel {
        padding: 0.7rem 0.1rem;
        margin-bottom: 1.2rem;
    }
    .carousel-logo {
        height: 44px;
        max-width: 90px;
        padding: 0.3rem 0.5rem;
    }
    .carousel-arrow {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    .maintenance-info {
        padding: 1rem 0.2rem;
        margin: 1.2rem auto 1rem auto;
        border-radius: 14px;
    }
    .maintenance-img {
        width: 140px;
    }
    .maintenance-text h2 {
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }
    .maintenance-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .footer-content.new-footer-structure {
        padding: 0.7rem 0.2rem;
    }
    .logo-section {
        gap: 8px;
    }
    .footer-logo {
        height: 32px;
    }
    .footer-logo-partner {
        height: 22px;
        margin-left: 6px;
    }
    .footer-tagline {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 0.7rem;
    }
}

/* HERO VIDEO RESPONSIVE */
@media (max-width: 900px) {
    .hero-bg-video {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 auto !important;
        display: block !important;
        z-index: 1 !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
}
@media (max-width: 600px) {
    .hero-bg-video {
        position: absolute !important;
        left: 50% !important;
        top: 0 !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        height: 56.25vw !important; /* Ratio 16:9 */
        min-width: 100vw !important;
        max-width: 100vw !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 !important;
        background: #000 !important;
        display: block !important;
        z-index: 1 !important;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero-bg-video {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 auto !important;
        display: block !important;
        z-index: 1 !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }
}

.side-menu a.active,
.side-menu a:hover {
    background: #f2f2f2;
    color: #1a237e;
}

@media (max-width: 600px) {
    .hamburger {
        width: 28px;
        height: 28px;
        margin-right: 0.2rem;
    }
    .hamburger span {
        width: 22px;
        height: 3px;
        margin: 3px 0;
    }
    .side-menu {
        transition: left 0.45s cubic-bezier(.4,1.4,.6,1), opacity 0.32s, box-shadow 0.32s;
    }
    .side-menu.open {
        box-shadow: 0 0 32px rgba(26,35,126,0.18);
    }
}

@keyframes carousel-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.volting-carousel.animated .carousel-track {
  animation: carousel-marquee 30s linear infinite;
}

.back-to-top {
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 3000;
  width: 56px;
  height: 56px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(25,118,210,0.25), 0 0 18px 6px rgba(25,118,210,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  cursor: pointer;
  opacity: 0.98;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.back-to-top.visible {
  display: flex;
  opacity: 1;
}
.back-to-top:hover {
  background: #1251a3;
  box-shadow: 0 8px 32px rgba(25,118,210,0.32), 0 0 24px 10px rgba(25,118,210,0.22);
  opacity: 1;
}
.back-to-top img {
  width: 32px;
  height: 32px;
  filter: invert(1) brightness(2);
}
@media (max-width: 600px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 120px;
    right: 12px;
  }
  .back-to-top img {
    width: 24px;
    height: 24px;
  }
}

.access-reset {
  display: block;
  width: 100%;
  margin-bottom: 1.2em;
  padding: 0.6em 0;
  background: #1a237e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.08em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.access-reset:hover {
  background: #fff;
  color: #1a237e;
  border: 2px solid #1a237e;
}
.access-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.7em;
  padding: 0.5em 1em;
  border-radius: 8px;
  border: 1.5px solid #222;
  background: #f7f7f7;
  color: #222;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}
.access-switch.on {
  background: #eab308;
  color: #fff;
  border-color: #eab308;
}
.access-switch .switch-track {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #e74c3c; /* Rouge par défaut (OFF) */
  border-radius: 12px;
  margin-right: 1em;
  position: relative;
  vertical-align: middle;
  transition: background 0.2s;
}
.access-switch.on .switch-track {
  background: #27ae60 !important;
  border-color: #27ae60 !important;
}
.access-switch:not(.on) .switch-track {
  background: #e74c3c !important;
  border-color: #e74c3c !important;
}
.access-switch .switch-thumb {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.2s, background 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.access-switch.on .switch-thumb {
  left: 18px;
  background: #eab308;
}
.access-switch .switch-label {
  flex: 1;
  text-align: left;
  font-size: 1em;
  font-weight: 600;
}
.access-switch:hover, .access-switch:focus {
  background: #e3eafe;
  box-shadow: 0 0 0 3px #1a237e33;
  border-color: #1a237e;
  transform: scale(1.03);
  outline: none;
}
.access-switch.on, .access-switch.on:hover, .access-switch.on:focus {
  background: #d4f8e5;
  box-shadow: 0 0 0 3px #27ae60cc;
  border-color: #27ae60;
  transform: scale(1.05);
  outline: none;
}

main {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}
.volting-presentation {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #fff !important;
    border-radius: 0 !important;
}
@media (max-width: 900px) {
  .volting-presentation {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .volting-presentation {
    margin-top: 48px !important;
    padding-top: 0 !important;
  }
}
/* Supprimer tout espace entre hero et présentation */
.hero-fullscreen + .volting-presentation {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Supprimer tout espace parasite autour de .presentation-container */
.presentation-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


.cta-desktop {
    background: #fff;
    color: #1a237e;
    font-weight: bold;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-left: 1.5rem;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    transition: background 0.2s, color 0.2s;
}
.cta-desktop:hover {
    background: #eab308;
    color: #fff;
}

.header-logos {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
    padding: 0.3rem 1.2rem 0.3rem 0.7rem;
}
.logo-main {
    height: 56px;
    margin-right: 0.7rem;
}
.logo-partner {
    height: 38px;
    margin-right: 0.3rem;
}

/* Styles pour la fenêtre d'accessibilité mobile améliorée */
#accessibility-panel-mobile {
  position: fixed !important;
  z-index: 5000 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 85px !important;
  left: 0 !important;
  transform: none !important;
  margin-top: 0 !important;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26,35,126,0.13), 0 2px 16px rgba(234,179,8,0.10);
  padding: 0 0 1.2em 0;
  min-width: 290px;
  max-width: 98vw;
  font-family: inherit;
  overflow: hidden;
}
/* Cas spécifique pour equipe.html (menu plus haut) */
body.equipe-page #accessibility-panel-mobile {
  top: 110px !important;
}
#accessibility-panel-mobile strong, #accessibility-panel-mobile .access-title {
  display: block;
  background: #1a237e;
  color: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.1em 1.5em 1em 1.5em;
  font-size: 1.18em;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
#accessibility-panel-mobile .access-actions {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin: 1.1em 0 1.2em 0;
}
#accessibility-panel-mobile .access-action-btn {
  background: #1a237e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  transition: background 0.2s;
}
#accessibility-panel-mobile .access-action-btn:hover, #accessibility-panel-mobile .access-action-btn:focus {
  background: #2331b5;
}
#accessibility-panel-mobile .access-switch-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0 1.2em 1.2em 1.2em;
}
#accessibility-panel-mobile .access-switch-row {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.2em;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  border: 1.5px solid #e0e0e0;
}
#accessibility-panel-mobile .access-switch-row:hover {
  box-shadow: 0 4px 16px rgba(26,35,126,0.13);
  transform: translateY(-2px) scale(1.01);
}
#accessibility-panel-mobile .access-switch-label {
  font-weight: 600;
  font-size: 1.08em;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
#accessibility-panel-mobile .access-switch-icon {
  font-size: 1.2em;
  color: #1a237e;
  margin-right: 0.3em;
}
#accessibility-panel-mobile .access-switch-toggle,
.access-switch-toggle {
  display: flex;
  align-items: center;
  background: #e0e0e0;
  border-radius: 13px;
  width: 48px;
  height: 26px;
  position: relative;
  border: none;
  outline: none;
  padding: 0;
  transition: background 0.2s;
}
#accessibility-panel-mobile .access-switch-toggle .switch-light,
.access-switch-toggle .switch-light {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #ff4d4d;
  box-shadow: 0 0 8px 2px #ff4d4d33, 0 2px 8px rgba(234,76,60,0.10);
  position: absolute;
  left: 3px;
  top: 2px;
  transition: border 0.2s, background 0.2s, box-shadow 0.2s;
  z-index: 2;
}
#accessibility-panel-mobile .access-switch-toggle[aria-pressed="true"] .switch-light,
.access-switch-toggle[aria-pressed="true"] .switch-light {
  border: 2.5px solid #ff4d4d;
  background: #fff;
  box-shadow: 0 0 8px 4px #ff4d4d55, 0 2px 8px rgba(234,76,60,0.10);
}
#accessibility-panel-mobile .access-switch-toggle[aria-pressed="false"] .switch-light,
.access-switch-toggle[aria-pressed="false"] .switch-light {
  border: 2.5px solid #ff4d4d;
  background: #fff;
  box-shadow: 0 0 8px 2px #ff4d4d33, 0 2px 8px rgba(234,76,60,0.10);
}
#accessibility-panel-mobile .access-switch-toggle .switch-thumb,
.access-switch-toggle .switch-thumb {
  display: none;
}
#accessibility-panel-mobile .access-switch-toggle::after,
.access-switch-toggle::after {
  display: none !important;
}
#accessibility-panel-mobile .access-switch-toggle {
  background: #e0e0e0;
}
#accessibility-panel-mobile .access-switch-row,
.access-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

#accessibility-panel-mobile {
  min-width: 270px !important;
  max-width: 420px !important;
  width: 92vw !important;
  padding: 0.7em 0.7em 1em 0.7em !important;
  border-radius: 18px !important;
  font-size: 0.98em !important;
  margin-top: 0.7em !important;
  margin-bottom: 0.7em !important;
  height: auto !important;
  max-height: none !important;
}
#accessibility-panel-mobile strong, #accessibility-panel-mobile .access-title {
  border-radius: 12px 12px 0 0 !important;
  font-size: 0.98em !important;
  padding: 0.4em 0.4em 0.3em 0.4em !important;
}
#accessibility-panel-mobile .access-switch-list {
  margin: 0.1em 0.05em 0.2em 0.05em !important;
  gap: 0.25em !important;
}
#accessibility-panel-mobile .access-switch-row {
  padding: 0.3em 0.3em !important;
  border-radius: 7px !important;
}
#accessibility-panel-mobile .access-switch-label {
  font-size: 0.91em !important;
}
#accessibility-panel-mobile #access-reset-mobile {
  font-size: 0.91em !important;
  border-radius: 7px !important;
  padding: 0.2em 0 !important;
  margin: 0.3em 0 0.05em 0 !important;
}

#access-close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.1em;
  color: #1a237e;
  cursor: pointer;
  z-index: 20;
  line-height: 1;
  font-weight: bold;
  padding: 0;
  margin: 0;
  transition: color 0.18s, background 0.18s;
}
#access-close-btn:hover, #access-close-btn:focus {
  color: #e53935;
  background: #f3f3f3;
  outline: none;
  border-radius: 50%;
}

.access-panel-modern {
  max-width: 400px !important;
  width: 96vw !important;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 24px rgba(26,35,126,0.13) !important;
  padding: 0 !important;
  overflow: hidden !important;
  font-family: inherit !important;
}
.access-panel-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #1a237e !important;
  color: #fff !important;
  padding: 1em 1.2em !important;
  border-radius: 18px 18px 0 0 !important;
}
.access-panel-title {
  font-size: 1.18em !important;
  font-weight: bold !important;
}
.access-close-btn-inline {
  font-size: 2em !important;
  color: #fff !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: color 0.18s, background 0.18s !important;
}
.access-close-btn-inline:hover, .access-close-btn-inline:focus {
  color: #e53935 !important;
  background: #fff !important;
  border-radius: 50% !important;
}
.access-switch-list {
  padding: 1em 1.2em 0.5em 1.2em !important;
}
.access-switch-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #f7f7f7 !important;
  border-radius: 10px !important;
  margin-bottom: 0.7em !important;
  padding: 0.7em 1em !important;
  font-size: 1.08em !important;
  border: 1px solid #e0e0e0 !important;
  transition: background 0.18s !important;
}
.access-switch-row:focus, .access-switch-row:hover {
  background: #e3e8fd !important;
  outline: 2px solid #1a237e !important;
}
.access-reset-modern {
  width: 90% !important;
  margin: 1em auto 0.5em auto !important;
  display: block !important;
  background: #1a237e !important;
  color: #fff !important;
  font-weight: bold !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0.8em 0 !important;
  font-size: 1.1em !important;
  cursor: pointer !important;
  transition: background 0.18s !important;
}
.access-reset-modern:hover, .access-reset-modern:focus {
  background: #e53935 !important;
}
.accessibility-tip-modern {
  display: flex !important;
  align-items: flex-start !important;
  background: #f7f7f7 !important;
  border-radius: 0 0 18px 18px !important;
  padding: 1em 1.2em !important;
  margin-top: 0.5em !important;
  font-size: 0.98em !important;
  color: #222 !important;
}
.access-tip-icon {
  font-size: 1.3em !important;
  margin-right: 0.7em !important;
  color: #1a237e !important;
}

.access-panel-ge {
  max-width: 98vw !important;
  min-width: 320px !important;
  width: 98vw !important;
  max-height: 96vh !important;
  overflow-y: auto !important;
  margin: 2vh auto !important;
  top: 2vh !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 32px rgba(26,35,126,0.13) !important;
  background: #fff !important;
  position: fixed !important;
  z-index: 2000 !important;
}
@media (max-width: 700px) {
  .access-panel-ge {
    max-width: 100vw !important;
    min-width: 100vw !important;
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    border-radius: 0 0 18px 18px !important;
    box-shadow: 0 2px 12px rgba(26,35,126,0.13) !important;
    max-height: 100vh !important;
  }
}

.switch-ge {
  position: relative !important;
  display: inline-block !important;
  width: 48px !important;
  height: 28px !important;
  vertical-align: middle !important;
}
.switch-ge input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
.slider-ge {
  position: absolute !important;
  cursor: pointer !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e0e0e0 !important;
  border-radius: 14px !important;
  transition: background 0.2s !important;
  display: block !important;
}
.slider-ge {
  background: #e53935 !important;
}
.switch-ge input:checked + .slider-ge {
  background: #43b581 !important;
}
.slider-ge:before {
  position: absolute !important;
  content: "" !important;
  height: 22px !important; width: 22px !important;
  left: 3px !important; bottom: 3px !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 4px rgba(26,35,126,0.07) !important;
  transition: transform 0.2s !important;
  display: block !important;
}
.switch-ge input:checked + .slider-ge:before {
  transform: translateX(20px) !important;
}

.access-action-btn-ge#access-reset-mobile {
  background: #1a237e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 22px !important;
  font-weight: 700 !important;
  font-size: 1.22em !important;
  padding: 1.1em 3.2em !important;
  box-shadow: 0 4px 18px rgba(26,35,126,0.13), 0 2px 8px rgba(26,35,126,0.10) !important;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.9em !important;
}
.access-action-btn-ge#access-reset-mobile i {
  font-size: 1.22em !important;
  margin-right: 0.7em !important;
  vertical-align: middle !important;
}
.access-action-btn-ge#access-reset-mobile:hover, .access-action-btn-ge#access-reset-mobile:focus {
  background: #0e174a !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(26,35,126,0.18), 0 4px 16px rgba(26,35,126,0.10) !important;
}


#access-reset-mobile, .access-action-btn-ge#access-reset-mobile {
    border-radius: 48px !important;
    min-width: 320px;
    padding: 1.25em 3.2em !important;
    font-size: 1.18em !important;
    font-weight: 700;
    background: #1a237e !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(26,35,126,0.13), 0 1px 4px rgba(26,35,126,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7em;
    margin: 1em auto 1em auto;
    transition: background 0.25s, color 0.25s, box-shadow 0.18s;
}
#access-reset-mobile:hover, .access-action-btn-ge#access-reset-mobile:hover {
    background: #2330a3 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(26,35,126,0.18);
}

@media (max-width: 900px) {
  body.text-zoomed, body.text-zoomed * {
    font-size: 1.12em !important;
    line-height: 1.5 !important;
  }
}


@media (max-width: 900px) {
  .volting-carousel.animated .carousel-track {
    display: flex;
    animation: marquee-logos 18s linear infinite;
    will-change: transform;
  }
  .volting-carousel.animated .carousel-track:hover,
  .volting-carousel.animated .carousel-track:active {
    animation-play-state: paused;
  }
}
@keyframes marquee-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Bouton retour haut de page === */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 24px;
  z-index: 3000;
  width: 56px;
  height: 56px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(25,118,210,0.25), 0 0 18px 6px rgba(25,118,210,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  cursor: pointer;
  opacity: 0.98;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.back-to-top.visible {
  display: flex;
  opacity: 1;
}
.back-to-top:hover {
  background: #1251a3;
  box-shadow: 0 8px 32px rgba(25,118,210,0.32), 0 0 24px 10px rgba(25,118,210,0.22);
  opacity: 1;
}
.back-to-top img {
  width: 32px;
  height: 32px;
  filter: invert(1) brightness(2);
}
@media (max-width: 600px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 120px;
    right: 12px;
  }
  .back-to-top img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  .back-to-top.visible {
    display: flex !important;
    opacity: 1;
  }
  .back-to-top {
    right: 16px;
    bottom: 120px;
    z-index: 4000;
  }
}
@media (max-width: 600px) {
  .back-to-top.visible {
    display: flex !important;
    opacity: 1;
  }
  .back-to-top {
    right: 12px;
    bottom: 120px;
    z-index: 4000;
  }
}

@media (max-width: 900px) {
  .back-to-top {
    right: 16px !important;
    bottom: 90px !important; /* au-dessus du footer/menu mobile */
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 4px 16px rgba(25,118,210,0.18), 0 0 8px 2px rgba(25,118,210,0.10);
    z-index: 5000 !important; /* plus haut que le footer */
    display: none;
    background: #1976d2;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    padding: 0;
    outline: none;
  }
  .back-to-top img {
    width: 28px !important;
    height: 28px !important;
    display: block;
    filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 2px #1976d2);
    background: #fff;
    border-radius: 50%;
    padding: 2px;
  }
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 100px !important; /* encore plus haut si footer mobile */
    right: 10px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .back-to-top img {
    width: 24px !important;
    height: 24px !important;
  }
}
.back-to-top {
  z-index: 5000 !important;
}

@media (max-width: 900px) {
  .back-to-top {
    right: 16px !important;
    bottom: 90px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 9999 !important;
    display: none; /* sera mis à flex par le JS */
    align-items: center;
    justify-content: center;
  }
  .back-to-top.visible, .back-to-top[style*="display: flex"] {
    display: flex !important;
  }
  .back-to-top img {
    width: 28px !important;
    height: 28px !important;
  }
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 100px !important;
    right: 10px !important;
    width: 44px !important;
    height: 44px !important;
  }
  .back-to-top img {
    width: 24px !important;
    height: 24px !important;
  }
}
.back-to-top {
  z-index: 9999 !important;
}

@media (max-width: 900px) {
  .back-to-top {
    right: 12px !important;
    bottom: 120px !important;
    width: 44px !important;
    height: 44px !important;
    z-index: 9999 !important;
    display: none;
    align-items: center;
    justify-content: center;
  }
  .back-to-top.visible, .back-to-top[style*="display: flex"] {
    display: flex !important;
  }
  .back-to-top img {
    width: 22px !important;
    height: 22px !important;
  }
}
@media (max-width: 600px) {
  .back-to-top {
    bottom: 130px !important;
    right: 6px !important;
    width: 38px !important;
    height: 38px !important;
  }
  .back-to-top img {
    width: 18px !important;
    height: 18px !important;
  }
}
.back-to-top {
  z-index: 9999 !important;
}

@media (max-width: 900px) {
  .back-to-top {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }
}

/* === Grille équipe Volting === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2em 1.2em;
  margin: 2em 0 2.5em 0;
}
.team-member {
  background: #fffbe7;
  border: 2.5px solid #eab308;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(234,179,8,0.10), 0 1px 6px rgba(26,35,126,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2em 0.7em 1.1em 0.7em;
  min-height: 230px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-member:hover {
  box-shadow: 0 6px 24px rgba(234,179,8,0.18), 0 2px 16px rgba(26,35,126,0.13);
  transform: translateY(-4px) scale(1.03);
}
.team-member img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #eab308;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  margin-bottom: 0.7em;
  background: #fff;
}
.avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #eab308;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  font-weight: 700;
  margin-bottom: 0.7em;
  border: 3px solid #eab308;
  box-shadow: 0 2px 8px rgba(26,35,126,0.10);
  letter-spacing: 1px;
}
.team-info {
  text-align: center;
}
.team-info strong {
  display: block;
  font-size: 1.08em;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.team-info span {
  font-size: 0.98em;
  color: #444;
}
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-member {
    min-height: 180px;
    padding: 1em 0.3em 1em 0.3em;
  }
  .team-member img, .avatar-placeholder {
    width: 70px;
    height: 70px;
    font-size: 1.3em;
  }
}

/* === Grille logos partenaires style "brand" === */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto 3em auto;
  padding: 2em 0;
}

.partner-logo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #ffe082 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(234,179,8,0.18), 0 2px 16px rgba(26,35,126,0.10);
  border: 4px solid #fff;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s, border-color 0.25s;
  margin: 0;
  position: relative;
}

.partner-logo-circle img {
  border-radius: 0 !important;
  background: #fff;
  box-shadow: 0 2px 8px rgba(26,35,126,0.07);
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

/* Logos ronds */
.partner-logo-circle img.logo-rond {
  border-radius: 50% !important;
}

/* Logos rectangles (coins légèrement arrondis) */
.partner-logo-circle img.logo-rect {
  border-radius: 12px !important;
}

.partner-logo-circle:hover {
  box-shadow: 0 8px 32px 0 rgba(234,179,8,0.28), 0 4px 24px rgba(26,35,126,0.18);
  transform: scale(1.08);
  background: #ffe082 !important;
  z-index: 2;
  border-color: #eab308;
}

@media (max-width: 900px) {
  .partners-grid {
    gap: 1.5rem 1.5rem;
    max-width: 98vw;
  }
  .partner-logo-circle {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 600px) {
  .partners-grid {
    gap: 1rem 1rem;
  }
  .partner-logo-circle {
    width: 90px;
    height: 90px;
  }
}

/* === Modale partenaire === */
.partner-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,35,126,0.18);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s;
}
.partner-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(26,35,126,0.13), 0 2px 16px rgba(234,179,8,0.10);
  padding: 2.2em 2.5em 2em 2.5em;
  max-width: 350px;
  width: 92vw;
  text-align: center;
  position: relative;
  animation: popIn 0.18s;
}
.partner-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.1em;
  color: #1a237e;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
}
.partner-modal-close:hover {
  color: #eab308;
}
.partner-modal-content h3 {
  color: #1a237e;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 1em;
}
.partner-modal-btn {
  display: inline-block;
  background: #1a237e;
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  padding: 1.1em 2.8em;
  margin-top: 1.1em;
  text-decoration: none;
  font-size: 1.22em;
  box-shadow: 0 2px 8px rgba(26,35,126,0.13);
  transition: background 0.2s, color 0.2s;
}
.partner-modal-btn:hover {
  background: #eab308;
  color: #1a237e;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0.7; } to { transform: scale(1); opacity: 1; }
}
@media (max-width: 900px) {
  .partner-modal-btn {
    font-size: 1.08em;
    padding: 1em 2.2em;
  }
}

/* === Carte interactive partenaires internationaux === */
.international-map-section {
  margin: 2.5em 0 2em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-width: 260px;
  margin: 0 auto 2em auto;
}
.map-bg {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,35,126,0.08);
  display: block;
}
.map-point {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #eab308;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(234,179,8,0.13);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  z-index: 2;
}
.map-point:hover {
  transform: scale(1.18);
  box-shadow: 0 2px 6px rgba(234,179,8,0.18);
}
@media (max-width: 900px) {
  .map-point {
    width: 3px;
    height: 3px;
  }
}
.map-popup {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(26,35,126,0.13), 0 2px 16px rgba(234,179,8,0.10);
  padding: 2em 2.2em 1.5em 2.2em;
  min-width: 260px;
  max-width: 350px;
  z-index: 5000;
  animation: popIn 0.18s;
}
.map-popup-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 2em;
  color: #1a237e;
  cursor: pointer;
  font-weight: 700;
  transition: color 0.2s;
}
.map-popup-close:hover {
  color: #eab308;
}
@media (max-width: 900px) {
  .map-container {
    max-width: 99vw;
  }
  .map-popup {
    min-width: 180px;
    max-width: 95vw;
    padding: 1.2em 0.7em 1.2em 0.7em;
  }
  .map-point {
    width: 18px;
    height: 18px;
  }
}

.btn-international-more {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: #eab308;
  color: #1a237e;
  font-size: 1.05em;
  font-weight: 600;
  border: none;
  border-radius: 2em;
  padding: 0.45em 1.3em;
  margin: 1.2em auto 0 auto;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(234,179,8,0.13);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, color 0.2s;
}
.btn-international-more .arrow-icon {
  font-size: 1.15em;
  margin-left: 0.5em;
  display: inline-block;
  transition: transform 0.18s;
}
.btn-international-more:hover, .btn-international-more:focus {
  background: #c59a06;
  color: #fff;
  box-shadow: 0 4px 16px rgba(234,179,8,0.18);
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}
.btn-international-more:hover .arrow-icon, .btn-international-more:focus .arrow-icon {
  transform: translateX(6px);
}

body.projets-internationaux-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.projets-internationaux-page main {
  flex: 1 0 auto;
  margin-top: 110px;
  margin-bottom: 90px;
}
body.projets-internationaux-page .footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 100;
  background: #eab308;
  color: #fff;
  border-top: none;
  margin-top: 0;
  box-shadow: 0 -2px 16px rgba(26,35,126,0.10);
}
@media (max-width: 900px) {
  body.projets-internationaux-page main {
    margin-top: 80px;
    margin-bottom: 110px;
  }
  body.projets-internationaux-page .footer {
    font-size: 0.97em;
    padding-bottom: 0.5em;
  }
}

body.projets-internationaux-page .international-article-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.2em 0 1.2em;
  width: 100%;
  box-sizing: border-box;
  margin-top: 5em;
}
body.projets-internationaux-page .international-article {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
  background: none;
}
body.projets-internationaux-page .international-article-header {
  margin-bottom: 2.2em;
  text-align: left;
}
body.projets-internationaux-page .international-article-title {
  color: #ef1c0e;
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 0.3em;
  letter-spacing: -1px;
  margin-top: 4em;
}
body.projets-internationaux-page .international-article-intro {
  font-size: 1.18em;
  line-height: 1.7;
  color: #222;
  margin-bottom: 0.5em;
}
body.projets-internationaux-page .international-project-card {
  background: #fffbe7;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.07);
  padding: 2em 1.5em 1.5em 1.5em;
  margin-bottom: 2em;
  margin-top: 0.5em;
}
body.projets-internationaux-page .international-project-title {
  color: #1a237e;
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
body.projets-internationaux-page .international-project-card p {
  font-size: 1.08em;
  color: #222;
  margin-bottom: 0.7em;
}
body.projets-internationaux-page .international-project-card ul {
  margin: 1em 0 0 1.2em;
  font-size: 1em;
  color: #222;
}
@media (max-width: 700px) {
  body.projets-internationaux-page .international-article-main {
    padding: 0 0.3em;
  }
  body.projets-internationaux-page .international-project-card {
    padding: 1.1em 0.5em 1em 0.5em;
  }
  body.projets-internationaux-page .international-article-title {
    font-size: 1.3em;
  }
}
@media (max-width: 900px) {
  body.projets-internationaux-page .international-article-main {
    margin-top: 6em;
  }
}

/* Amélioration visibilité et interactivité logos partenaires */
.partners-grid .partner-logo-circle {
  background: #ffe082 !important;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  box-shadow: 0 2px 10px rgba(26,35,126,0.10);
  cursor: pointer;
}
.partners-grid .partner-logo-circle:hover {
  box-shadow: 0 8px 32px rgba(234,179,8,0.18), 0 2px 16px rgba(26,35,126,0.18);
  transform: translateY(-6px) scale(1.07);
  background: #ffe082 !important;
  z-index: 2;
}

/* Effet interactif sur les images des sections de présentation */
.volting-section img:hover, .volting-section img:focus {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(26,35,126,0.18), 0 4px 24px rgba(234,179,8,0.13);
  transition: transform 0.25s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s;
  outline: 2px solid #eab308;
}
.volting-section img {
  transition: transform 0.22s, box-shadow 0.22s;
}

/* Cartes interactives valeurs : effet au survol */
.valeur-card {
  transition: transform 0.22s, box-shadow 0.22s;
}
.valeur-card:hover, .valeur-card:focus {
  transform: translateY(-8px) scale(1.045);
  box-shadow: 0 16px 48px 0 rgba(26,35,126,0.18), 0 6px 32px rgba(234,179,8,0.18);
  z-index: 2;
}
.valeur-card:hover img, .valeur-card:focus img {
  transform: scale(1.13) rotate(2deg);
  box-shadow: 0 4px 24px rgba(234,179,8,0.18);
}
.valeur-card img {
  transition: transform 0.22s, box-shadow 0.22s;
}

@media (max-width: 900px) {
  .volting-section img:active,
  .volting-section img:focus-visible {
    transform: scale(1.08) rotate(-1deg);
    box-shadow: 0 10px 36px 0 rgba(26,35,126,0.20), 0 6px 28px rgba(234,179,8,0.15);
    transition: transform 0.22s cubic-bezier(.4,1.6,.6,1), box-shadow 0.22s;
    outline: 2px solid #eab308;
  }
}

@media (max-width: 900px) {
  .footer-links-grid {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-links-col {
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-links-col h4 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer-link {
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .contact-header h1,
  body.text-zoomed .contact-header h2,
  body.text-zoomed .contact-header h3,
  body.text-zoomed .form-container h3,
  body.text-zoomed .contact-channels h3 {
    font-size: 1.35em !important;
    line-height: 1.15 !important;
  }
  body.text-zoomed .contact-header p,
  body.text-zoomed .contact-channels p,
  body.text-zoomed .contact-channels li,
  body.text-zoomed .contact-form label,
  body.text-zoomed .contact-form input,
  body.text-zoomed .contact-form textarea,
  body.text-zoomed .btn-submit {
    font-size: 1.08em !important;
    line-height: 1.2 !important;
  }
  body.text-zoomed .contact-form input,
  body.text-zoomed .contact-form textarea {
    padding: 0.7em !important;
  }
  body.text-zoomed .btn-submit {
    padding: 0.9em !important;
  }
  body.text-zoomed .contact-card-global {
    padding: 1.2em 0.3em 1.2em 0.3em !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .contact-card-global {
    margin-top: 8em !important;
    scroll-margin-top: 8em !important;
  }
}

@media (max-width: 900px) {
  .contact-section {
    padding-top: 4.5rem !important;
  }
  body.text-zoomed .contact-card-global {
    margin-top: 0 !important;
    scroll-margin-top: 0 !important;
  }
  body.text-zoomed .contact-header h1,
  body.text-zoomed .form-container h3,
  body.text-zoomed .contact-channels h3 {
    font-size: 1.18em !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .contact-header h1,
  body.text-zoomed .form-container h3 {
    font-size: 1.08em !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
    margin-bottom: 0.7em !important;
  }
  body.text-zoomed .contact-header p {
    font-size: 1em !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
  }
  body.text-zoomed .contact-form label {
    font-size: 1em !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    margin-bottom: 0.3em !important;
  }
  body.text-zoomed .contact-form input,
  body.text-zoomed .contact-form textarea {
    font-size: 1em !important;
    padding: 0.7em 0.8em !important;
    width: 100% !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  body.text-zoomed .contact-card-global {
    padding: 1.2em 0.3em 1.2em 0.3em !important;
    max-width: 99vw !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .form-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.1em !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.text-zoomed .contact-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.7em !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.text-zoomed .contact-form input,
  body.text-zoomed .contact-form textarea {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  body.text-zoomed .btn-submit {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    font-size: 1.08em !important;
    padding: 0.9em 0 !important;
    margin-top: 0.7em !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .contact-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5em !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  body.text-zoomed .form-container,
  body.text-zoomed .contact-channels {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .contact-channels h3 {
    font-size: 1.08em !important;
    line-height: 1.15 !important;
    margin-bottom: 0.7em !important;
  }
  body.text-zoomed .contact-channels p {
    font-size: 1em !important;
    line-height: 1.3 !important;
    margin-bottom: 0.7em !important;
    word-break: break-word !important;
  }
  body.text-zoomed .contact-channels ul {
    padding: 0 !important;
    margin: 0 !important;
  }
  body.text-zoomed .contact-channels li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.7em !important;
    font-size: 1em !important;
    margin-bottom: 0.7em !important;
    word-break: break-word !important;
    flex-wrap: wrap !important;
  }
  body.text-zoomed .contact-channels li i {
    font-size: 1.15em !important;
    min-width: 1.5em !important;
    margin-right: 0.5em !important;
    margin-top: 0.15em !important;
  }
  body.text-zoomed .contact-channels span {
    display: block !important;
    word-break: break-word !important;
    font-size: 1em !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .footer-content.new-footer-structure {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.2em !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 1.2em 0.2em !important;
    box-sizing: border-box !important;
  }
  body.text-zoomed .footer-section.logo-section {
    text-align: center !important;
    margin-bottom: 0.7em !important;
  }
  body.text-zoomed .footer-logo {
    max-width: 90px !important;
    height: auto !important;
    margin: 0 auto 0.5em auto !important;
  }
  body.text-zoomed .footer-tagline {
    font-size: 1em !important;
    word-break: break-word !important;
  }
  body.text-zoomed .footer-links-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.7em !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  body.text-zoomed .footer-links-col {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0.2em 0 !important;
  }
  body.text-zoomed .footer-links-col h4 {
    font-size: 1.08em !important;
    margin-bottom: 0.3em !important;
    word-break: break-word !important;
  }
  body.text-zoomed .footer-link {
    font-size: 1em !important;
    word-break: break-word !important;
    padding: 0.2em 0 !important;
    margin: 0 !important;
    display: block !important;
  }
  body.text-zoomed .footer-logo-partner {
    max-width: 80px !important;
    height: auto !important;
    margin: 0.2em auto !important;
  }
  body.text-zoomed .footer-bottom {
    font-size: 0.98em !important;
    text-align: center !important;
    padding: 0.5em 0.2em !important;
    word-break: break-word !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .back-to-top-svg,
  body.text-zoomed .back-to-top-svg.visible {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    right: 12px !important;
    bottom: 18px !important;
    padding: 0 !important;
    font-size: 1em !important;
    z-index: 4000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #1a237e !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(26,35,126,0.13) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  body.text-zoomed .back-to-top-svg svg {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 900px) {
  body.text-zoomed .back-to-top-svg,
  body.text-zoomed .back-to-top-svg.visible {
    left: 12px !important;
    right: auto !important;
    /* le reste des propriétés reste inchangé */
  }
}

@media (max-width: 900px) {
  /* ... styles existants ... */
  .btn-contact {
    display: block;
    width: 90vw;
    max-width: 340px;
    margin: 24px auto 0 auto;
    background: #eab308;
    color: #fff;
    font-weight: 700;
    font-size: 1.18em;
    border-radius: 12px;
    padding: 1em 0;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(234,179,8,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .btn-contact:hover, .btn-contact:focus {
    background: #1a237e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,35,126,0.13);
  }
}

@media (max-width: 900px) {
  body {
    background: transparent !important;
  }
  .volting-presentation, .presentation-container {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(26,35,126,0.10);
    margin: 24px 8px 0 8px;
    padding: 32px 12px 32px 12px;
    max-width: 98vw;
    width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .volting-presentation h1, .presentation-container h1 {
    color: #1a237e;
    font-size: 1.35em;
    font-weight: 800;
    margin-bottom: 1.2em;
    text-align: center;
    line-height: 1.2;
  }
  .volting-presentation p, .presentation-container p {
    font-size: 1.08em;
    color: #222;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.8em;
  }
  .btn-contact {
    display: block;
    width: 90vw;
    max-width: 340px;
    margin: 0 auto;
    background: #eab308;
    color: #1a237e;
    font-weight: 700;
    font-size: 1.18em;
    border-radius: 22px;
    padding: 1em 0;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(234,179,8,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .btn-contact:hover, .btn-contact:focus {
    background: #1a237e;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,35,126,0.13);
  }
}

/* Je retire ou corrige le fond beige qui recouvre le footer */
body > div[style*='background: #f7f3ea'] {
  background: transparent !important;
}

/* On garde le fond beige UNIQUEMENT pour les pop-ups de la carte */
.map-popup {
  background: #fffbe7 !important;
}

/* Suppression des fonds beiges ailleurs */
.valeurs-volting, .plus-encore-section, .objectif-inclusion, .chiffres-cles-animated, .galerie-carousel-section {
  background: #fff !important;
}

.presentation-volting-section {
  background: transparent !important;
}